mirror of
https://github.com/meshtastic/meshtastic.git
synced 2024-12-26 06:04:22 -08:00
radio device module config config module
This commit is contained in:
parent
5fc4050ca0
commit
e8fc0995f6
|
@ -70,7 +70,7 @@ This option is used to configure the interval (in seconds) that should be used t
|
||||||
|
|
||||||
Default is `900` seconds (15 minutes).
|
Default is `900` seconds (15 minutes).
|
||||||
|
|
||||||
## Device Config Client Availability
|
## Telemetry Config Client Availability
|
||||||
|
|
||||||
<Tabs
|
<Tabs
|
||||||
groupId="settings"
|
groupId="settings"
|
||||||
|
|
|
@ -115,7 +115,7 @@ meshtastic --set bluetooth.fixed_pin 111111
|
||||||
All Bluetooth module config options are available for the Web UI.
|
All Bluetooth module config options are available for the Web UI.
|
||||||
|
|
||||||
1. Open the Meshtastic Web UI.
|
1. Open the Meshtastic Web UI.
|
||||||
2. Navigate to: **Device Config > Bluetooth**
|
2. Navigate to: **Radio Config > Bluetooth**
|
||||||
|
|
||||||
:::
|
:::
|
||||||
|
|
||||||
|
|
|
@ -39,13 +39,13 @@ Meshtastic nodes will rebroadcast all packets if they share [LoRa modem settings
|
||||||
|
|
||||||
Meshtastic uses the word "channels" to define two different configuration properties: [Messaging Channels](/docs/configuration/radio/channels) & [LoRa Modem Channels](/docs/configuration/radio/lora#channel-number)
|
Meshtastic uses the word "channels" to define two different configuration properties: [Messaging Channels](/docs/configuration/radio/channels) & [LoRa Modem Channels](/docs/configuration/radio/lora#channel-number)
|
||||||
|
|
||||||
### Device Config: Channels
|
### Radio Config: Channels
|
||||||
|
|
||||||
These configure "message groups" and include your PRIMARY and SECONDARY channels. All SECONDARY channels use the same LoRa modem config as your PRIMARY channel (including LoRa channel number).
|
These configure "message groups" and include your PRIMARY and SECONDARY channels. All SECONDARY channels use the same LoRa modem config as your PRIMARY channel (including LoRa channel number).
|
||||||
|
|
||||||
There are 8 total chat channels. Channel 0 is your PRIMARY channel, with channels 1-7 available for private group messaging and/or special channels such as [`admin`](/docs/configuration/remote-admin).
|
There are 8 total chat channels. Channel 0 is your PRIMARY channel, with channels 1-7 available for private group messaging and/or special channels such as [`admin`](/docs/configuration/remote-admin).
|
||||||
|
|
||||||
### Device Config: LoRa: Channel Number
|
### Radio Config: LoRa: Channel Number
|
||||||
|
|
||||||
This configures the frequency the radio is set to. Check out the [frequency calculator](/docs/overview/radio-settings#channel-frequency-calculator) to view the relationship between "channel number" and radio frequency.
|
This configures the frequency the radio is set to. Check out the [frequency calculator](/docs/overview/radio-settings#channel-frequency-calculator) to view the relationship between "channel number" and radio frequency.
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@ Below is a valid JSON envelope for information sent by MQTT to a device for broa
|
||||||
Node-RED is a free cross-platform programming tool for wiring together hardware, APIs, and online services developed originally by IBM for IOT. It is widely used for home automation by many non-professional programmers and runs well on Pi's. Node-RED has many plug-in modules written by the community. I will use this platform as a practical example on how to interface with the MQTT features of Meshtastic. Everything can be done from GUI's without using command line.
|
Node-RED is a free cross-platform programming tool for wiring together hardware, APIs, and online services developed originally by IBM for IOT. It is widely used for home automation by many non-professional programmers and runs well on Pi's. Node-RED has many plug-in modules written by the community. I will use this platform as a practical example on how to interface with the MQTT features of Meshtastic. Everything can be done from GUI's without using command line.
|
||||||
|
|
||||||
Step one: use http://client.meshtastic.org/ , the python CLI, or an Apple or Android app to connect to your device and adjust these settings.
|
Step one: use http://client.meshtastic.org/ , the python CLI, or an Apple or Android app to connect to your device and adjust these settings.
|
||||||
Enable and enter network SSID/PSK. Settings--> Device Config--> Network; Save.
|
Enable and enter network SSID/PSK. Settings--> Radio Config--> Network; Save.
|
||||||
Set MQTT server address. Settings--> Module Config--> MQTT config; Verify Encryption Enabled is OFF. Turn JSON Output Enabled ON. Save.
|
Set MQTT server address. Settings--> Module Config--> MQTT config; Verify Encryption Enabled is OFF. Turn JSON Output Enabled ON. Save.
|
||||||
Go to Channel Editor and set Uplink and Downlink enabled to True. Save.
|
Go to Channel Editor and set Uplink and Downlink enabled to True. Save.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue