mirror of
https://github.com/meshtastic/meshtastic.git
synced 2025-03-05 21:00:08 -08:00
commit
61e15dee4b
|
@ -3,6 +3,7 @@ id: mqtt
|
||||||
title: MQTT Settings
|
title: MQTT Settings
|
||||||
sidebar_label: MQTT
|
sidebar_label: MQTT
|
||||||
---
|
---
|
||||||
|
|
||||||
import Tabs from '@theme/Tabs';
|
import Tabs from '@theme/Tabs';
|
||||||
import TabItem from '@theme/TabItem';
|
import TabItem from '@theme/TabItem';
|
||||||
|
|
||||||
|
@ -21,7 +22,7 @@ If your device is connected to WiFi you can enable it to forward messages along
|
||||||
## Settings
|
## Settings
|
||||||
|
|
||||||
| Setting | Acceptable Values | Default |
|
| Setting | Acceptable Values | Default |
|
||||||
| :-----: | :---------------: | :-----: |
|
| :-----------------: | :---------------: | :-----: |
|
||||||
| mqtt_disabled | `true`, `false` | `false` |
|
| mqtt_disabled | `true`, `false` | `false` |
|
||||||
| mqtt_server | `string` | `""` |
|
| mqtt_server | `string` | `""` |
|
||||||
| is_uplink_enabled | `true`, `false` | `false` |
|
| is_uplink_enabled | `true`, `false` | `false` |
|
||||||
|
@ -58,8 +59,21 @@ This is a channel specific setting. If your channel has this set to `true` and y
|
||||||
]}>
|
]}>
|
||||||
<TabItem value="cli">
|
<TabItem value="cli">
|
||||||
|
|
||||||
TODO
|
```bash title="Set server"
|
||||||
|
meshtastic --set mqtt_server 192.168.123.234
|
||||||
|
```
|
||||||
|
|
||||||
|
```bash title="Enable MQTT server to mesh"
|
||||||
|
meshtastic --set is_downlink_enabled True
|
||||||
|
```
|
||||||
|
|
||||||
|
```bash title="View raw encoded messages using mosquitto"
|
||||||
|
mosquitto_sub -h 192.168.123.234 -v -t msh/#
|
||||||
|
```
|
||||||
|
|
||||||
|
:::note
|
||||||
|
FIXME some documentation says msh/# , some says mesh/# . As of 1.2.39 the messages are on msh/#
|
||||||
|
:::
|
||||||
</TabItem>
|
</TabItem>
|
||||||
<TabItem value="android">
|
<TabItem value="android">
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue