Merge branch 'master' into mqtt_encryption

This commit is contained in:
Garth Vander Houwen 2022-10-31 10:49:51 -07:00 committed by GitHub
commit 756df305ca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -25,9 +25,9 @@ to keep the Bluetooth link alive for eight hours (any usage of the Bluetooth pro
```shell title="Expected Output" ```shell title="Expected Output"
# You should see a result similar to this: # You should see a result similar to this:
mydir$ meshtastic --set wait_bluetooth_secs 28800 mydir$ meshtastic --set bluetooth.wait_bluetooth_secs 28800
Connected to radio... Connected to radio...
Setting preference wait_bluetooth_secs to 28800 Setting bluetooth.wait_bluetooth_secs to 28800
Writing modified preferences to device... Writing modified preferences to device...
``` ```
@ -40,13 +40,7 @@ meshtastic --setlat 25.2 --setlon -16.8 --setalt 120
Or to configure an ESP32 based board to join a Wifi network as a station: Or to configure an ESP32 based board to join a Wifi network as a station:
```shell ```shell
meshtastic --set wifi_ap_mode false --set wifi_ssid mywifissid --set wifi_password mywifipsw meshtastic --set network.wifi_ssid mywifissid --set network.wifi_psk mywifipsw
```
Or to configure an ESP32 to run as a Wifi access point:
```shell
meshtastic --set wifi_ap_mode true --set wifi_ssid mywifissid --set wifi_password mywifipsw
``` ```
:::note :::note