add some power cli examples

This commit is contained in:
Mike Kinney 2021-12-12 16:49:13 -08:00
parent 10f9be0193
commit 7ed15cb649

View file

@ -99,7 +99,11 @@ For instance the default interval of 4 will send the node owner information for
### wait_bluetooth_secs ### wait_bluetooth_secs
Power management state machine option. See the [power page](../other/power) for details. 0 for default of 1 minute Wait number of seconds for Bluetooth - Power management state machine option. See the [power page](../other/power) for details. 0 for default of 1 minute
### is_always_powered
If the device is plugged into the wall (not from battery), you may consider using this setting to always keep the device from sleeping. This is a useful setting if you are on esp32 and using the wifi options.
## Examples ## Examples
@ -114,6 +118,15 @@ Power management state machine option. See the [power page](../other/power) for
```bash ```bash
meshtastic --set mesh_sds_timeout_secs 0 meshtastic --set mesh_sds_timeout_secs 0
```
Note: Probably only want to set the wait_bluetooth_secs this high during testing:
```bash
meshtastic --set wait_bluetooth_secs 28800
```
```bash
meshtastic --set is_always_powered true
``` ```
</TabItem> </TabItem>