added mqtt_username

This commit is contained in:
Foster Irwin 2022-01-26 15:39:53 -07:00
parent eaf2453459
commit a8d243060e

View file

@ -28,6 +28,7 @@ Be sure to checkout this [MQTT](https://meshtastic.org/docs/software/other/mqtt)
| mqtt_disabled | `true`, `false` | `false` |
| mqtt_server | `string` | `""` |
| mqtt_password | `string` | `""` |
| mqtt_username | `string` | `""` |
| is_uplink_enabled | `true`, `false` | `false` |
| is_downlink_enabled | `true`, `false` | `false` |
@ -43,6 +44,10 @@ The server to use for our MQTT global message gateway feature. If not set, the d
MQTT password to use (most useful for a custom MQTT server). If using a custom server, this will be honoured even if empty. If using the default server, this will only be honoured if set, otherwise the device will use the default password (TODO - find default password).
### mqtt_username
MQTT username to use (most useful for a custom MQTT server). If using a custom server, this will be honoured even if empty. If using the default server, this will only be honoured if set, otherwise the device will use the default username (TODO - find default username).
### is_uplink_enabled
This is a channel specific setting. If your channel has this set to `true` and you are connected to WiFi, the device will forward along messages to whatever MQTT server is specified in `mqtt_server`.