From d814d80f51ffc08b26fab941a097ef9fcb32a86b Mon Sep 17 00:00:00 2001 From: pdxlocations Date: Fri, 7 Jul 2023 22:02:56 -0700 Subject: [PATCH 01/13] proto-what? --- docs/configuration/module-config/mqtt.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/configuration/module-config/mqtt.mdx b/docs/configuration/module-config/mqtt.mdx index f56e89f2..e01bc5e6 100644 --- a/docs/configuration/module-config/mqtt.mdx +++ b/docs/configuration/module-config/mqtt.mdx @@ -8,7 +8,7 @@ sidebar_label: MQTT import Tabs from "@theme/Tabs"; import TabItem from "@theme/TabItem"; -If your device is connected to Internet via wifi or ethernet, you can enable it to forward packets along to an MQTT server. This allows users on the local mesh to communicate with users on the internet. One or more channels must be enabled as uplink and/or downlink for protobufs to be transmitted from and/or to the mesh (See [channels](/docs/settings/config/channels#downlink-enabled)). Without these settings the node will still connect to MQTT server and send status messages. +If your device is connected to Internet via wifi or ethernet, you can enable it to forward packets along to an MQTT server. This allows users on the local mesh to communicate with users on the internet. One or more channels must also be enabled as uplink and/or downlink for packets to be transmitted from and/or to your mesh (See [channels](/docs/settings/config/channels#downlink-enabled)). Without these settings enabled, the node will still connect to the MQTT server but only send status messages. The MQTT module config options are: Enabled, Server Address, Username, Password, Encryption Enabled and JSON Enabled. MQTT Module config uses an admin message sending a `ConfigModule.MQTT` protobuf. From 0b451297180f5926e01c78d3996f2b0dd4590d63 Mon Sep 17 00:00:00 2001 From: pdxlocations Date: Fri, 7 Jul 2023 22:19:08 -0700 Subject: [PATCH 02/13] add tls and root --- docs/configuration/module-config/mqtt.mdx | 28 +++++++++++++++-------- 1 file changed, 19 insertions(+), 9 deletions(-) diff --git a/docs/configuration/module-config/mqtt.mdx b/docs/configuration/module-config/mqtt.mdx index e01bc5e6..ed9bfbb5 100644 --- a/docs/configuration/module-config/mqtt.mdx +++ b/docs/configuration/module-config/mqtt.mdx @@ -10,7 +10,7 @@ import TabItem from "@theme/TabItem"; If your device is connected to Internet via wifi or ethernet, you can enable it to forward packets along to an MQTT server. This allows users on the local mesh to communicate with users on the internet. One or more channels must also be enabled as uplink and/or downlink for packets to be transmitted from and/or to your mesh (See [channels](/docs/settings/config/channels#downlink-enabled)). Without these settings enabled, the node will still connect to the MQTT server but only send status messages. -The MQTT module config options are: Enabled, Server Address, Username, Password, Encryption Enabled and JSON Enabled. MQTT Module config uses an admin message sending a `ConfigModule.MQTT` protobuf. +The MQTT module config options are: Enabled, Server Address, Username, Password, Encryption Enabled, JSON Enabled, TLS Enabled, and Root Topic. MQTT Module config uses an admin message sending a `ConfigModule.MQTT` protobuf. ## Settings @@ -40,6 +40,14 @@ Whether to send encrypted or decrypted packets to MQTT. This parameter is only h Enable the sending / consumption of JSON packets on MQTT. These packets are not encrypted, but offer an easy way to integrate with systems that can read JSON. +### TLS Enabled + +If true, we attempt to establish a secure connection using TLS + +### Root Topic + +The root topic to use for MQTT messages. This is useful if you want to use a single MQTT server for multiple meshtastic networks and separate them via ACLs. Default is "msh". + ## MQTT Module Config Client Availability Date: Fri, 7 Jul 2023 22:29:05 -0700 Subject: [PATCH 03/13] typos, tweaks, add Apple availability --- docs/configuration/module-config/mqtt.mdx | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/docs/configuration/module-config/mqtt.mdx b/docs/configuration/module-config/mqtt.mdx index ed9bfbb5..56b62a91 100644 --- a/docs/configuration/module-config/mqtt.mdx +++ b/docs/configuration/module-config/mqtt.mdx @@ -22,7 +22,7 @@ Enables the MQTT module. ### Server Address -The server to use for MQTT. If not set, the default server public will be used. +The server to use for MQTT. If not set, the default public server will be used. ### Username @@ -30,11 +30,11 @@ MQTT Server username to use (most useful for a custom MQTT server). If using a c ### Password -MQTT password to use (most useful for a custom MQTT server). If using a custom server, this will be honored even if empty. If using the default server, this will only be honored if set, otherwise the device will use the default password +MQTT password to use (most useful for a custom MQTT server). If using a custom server, this will be honored even if empty. If using the default server, this will only be honored if set, otherwise the device will use the default password. ### Encryption Enabled -Whether to send encrypted or decrypted packets to MQTT. This parameter is only honored if you also set server (the default official mqtt.meshtastic.org server can handle encrypted packets) Decrypted packets may be useful for external systems that want to consume meshtastic packets. +Whether to send encrypted or unencrypted packets to MQTT. This parameter is only honored if you also set server (the default official mqtt.meshtastic.org server can handle encrypted packets). Unencrypted packets may be useful for external systems that want to consume meshtastic packets. ### JSON Enabled @@ -42,7 +42,7 @@ Enable the sending / consumption of JSON packets on MQTT. These packets are not ### TLS Enabled -If true, we attempt to establish a secure connection using TLS +If true, we attempt to establish a secure connection using TLS. ### Root Topic @@ -74,7 +74,9 @@ MQTT Config options are available for Android. :::info -MQTT module config is not available for Apple. + +MQTT Config options are available on iOS, iPadOS and macOS at Settings > Modules > MQTT. + ::: From 4f201df2f503e1ed95b60c31ab3da32fadb81cdd Mon Sep 17 00:00:00 2001 From: pdxlocations Date: Fri, 7 Jul 2023 22:31:26 -0700 Subject: [PATCH 04/13] remove default root topic --- docs/configuration/module-config/mqtt.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/configuration/module-config/mqtt.mdx b/docs/configuration/module-config/mqtt.mdx index 56b62a91..b4f70b72 100644 --- a/docs/configuration/module-config/mqtt.mdx +++ b/docs/configuration/module-config/mqtt.mdx @@ -46,7 +46,7 @@ If true, we attempt to establish a secure connection using TLS. ### Root Topic -The root topic to use for MQTT messages. This is useful if you want to use a single MQTT server for multiple meshtastic networks and separate them via ACLs. Default is "msh". +The root topic to use for MQTT messages. This is useful if you want to use a single MQTT server for multiple meshtastic networks and separate them via ACLs. ## MQTT Module Config Client Availability @@ -97,7 +97,7 @@ All MQTT module config options are available in the python CLI. Example commands | mqtt.encryption_enabled | `true`, `false` | `false` | | mqtt.json_enabled | `true`, `false` | `false` | | mqtt.tls_enabled | `true`, `false` | `false` | -| mqtt.root | `string` | `msh` | +| mqtt.root | `string` | | :::tip From 0f84ed97902a87e002dd3821d49c0d2236691ba7 Mon Sep 17 00:00:00 2001 From: pdxlocations Date: Fri, 7 Jul 2023 22:57:12 -0700 Subject: [PATCH 05/13] web UI available --- docs/configuration/module-config/range-test.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/configuration/module-config/range-test.mdx b/docs/configuration/module-config/range-test.mdx index be08c540..a709fe26 100644 --- a/docs/configuration/module-config/range-test.mdx +++ b/docs/configuration/module-config/range-test.mdx @@ -103,7 +103,7 @@ meshtastic --set range_test.sender 0 :::info -No range test module config options are available in the Web UI. +All range test module config options are available in the Web UI. ::: From e1b0bca8da6c6cc65c16ae8617db2e988f5cdd72 Mon Sep 17 00:00:00 2001 From: pdxlocations Date: Fri, 7 Jul 2023 23:05:41 -0700 Subject: [PATCH 06/13] power off clarification --- docs/configuration/module-config/range-test.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/configuration/module-config/range-test.mdx b/docs/configuration/module-config/range-test.mdx index a709fe26..dfa409ea 100644 --- a/docs/configuration/module-config/range-test.mdx +++ b/docs/configuration/module-config/range-test.mdx @@ -114,7 +114,7 @@ All range test module config options are available in the Web UI. While a minimum of two radios is required, more can be used. You can have any number of receivers and senders that your mesh is able to handle. You can test having a single sender with multiple receivers or a single receiver with multiple senders. Let us know on the [forum thread](https://meshtastic.discourse.group/t/new-plugin-rangetestplugin/2591) the results of your configuration. -Be sure to turn off either the module configured as a sender or the device where the module setup as sender when not in use. This will use a lot of time on air and will spam your channel. +Be sure to turn off the module when not in use. This will use a lot of time on air and will spam your channel. Also be mindful of your space usage on the file system. It has protections from filling up the space but it's best to delete old range test results. From a393296e2d73ae4aac0beabdb60a5e23bda85e91 Mon Sep 17 00:00:00 2001 From: Garth Vander Houwen Date: Sun, 9 Jul 2023 16:44:03 -0700 Subject: [PATCH 07/13] Update trademark-grants.mdx Add grant section for 3DSafe on Etsy --- docs/legal/trademark-grants.mdx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/legal/trademark-grants.mdx b/docs/legal/trademark-grants.mdx index e583d106..1fefc64b 100644 --- a/docs/legal/trademark-grants.mdx +++ b/docs/legal/trademark-grants.mdx @@ -18,3 +18,6 @@ sidebar_label: Trademark Grants - Details: Ben Lipsey is a Meshtastic Contributor and Promotional Materials Distributor. Promotional materials carry the "Meshtastic" and "M" logos. Materials also carry the Meshtastic.org URL. The use of the Meshtastic Logo and Trademarks does not imply Ben Lipsey is sponsored or endorsed by Meshtastic. Ben Lipsey also agrees to maintain compliance with the Meshtastic Legal requirements. This grant is revokable at any time for any reason. - Grant: Mark Birss - Details: Mark Birss is a Meshtastic contributor/developer of DIY devices that carry the "Meshtastic" , Meshtastic.org URL and "M" logos. The use of the Meshtastic Logo and Trademarks does not imply Mark Birss is sponsored or endorsed by Meshtastic. Mark Birss also agrees to maintain compliance with the Meshtastic Legal requirements. This grant is revokable at any time for any reason. +www.etsy.com/shop/3Dsafe +- Grant [Paul Carney](https://www.etsy.com/shop/3Dsafe) + -Details: Paul primarily designs enclosures and assembles complete Meshtastic Radios for sale using modules from TTGO, Heltec and RAK. He runs an online shop for Meshtastic powered devices which carry the "Meshtastic" and M logos. The use of the Meshtastic Logo and Trademarks does not imply Paul is sponsored or endorsed by Meshtastic. Paul also agrees to maintain compliance with the Meshtastic Legal requirements. This grant is revokable at any time for any reason. From a99632556d0a57e1fac055c1d24958a7757c6f34 Mon Sep 17 00:00:00 2001 From: Garth Vander Houwen Date: Sun, 9 Jul 2023 16:55:56 -0700 Subject: [PATCH 08/13] Update trademark-grants.mdx --- docs/legal/trademark-grants.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/legal/trademark-grants.mdx b/docs/legal/trademark-grants.mdx index 1fefc64b..4affc825 100644 --- a/docs/legal/trademark-grants.mdx +++ b/docs/legal/trademark-grants.mdx @@ -20,4 +20,4 @@ sidebar_label: Trademark Grants - Details: Mark Birss is a Meshtastic contributor/developer of DIY devices that carry the "Meshtastic" , Meshtastic.org URL and "M" logos. The use of the Meshtastic Logo and Trademarks does not imply Mark Birss is sponsored or endorsed by Meshtastic. Mark Birss also agrees to maintain compliance with the Meshtastic Legal requirements. This grant is revokable at any time for any reason. www.etsy.com/shop/3Dsafe - Grant [Paul Carney](https://www.etsy.com/shop/3Dsafe) - -Details: Paul primarily designs enclosures and assembles complete Meshtastic Radios for sale using modules from TTGO, Heltec and RAK. He runs an online shop for Meshtastic powered devices which carry the "Meshtastic" and M logos. The use of the Meshtastic Logo and Trademarks does not imply Paul is sponsored or endorsed by Meshtastic. Paul also agrees to maintain compliance with the Meshtastic Legal requirements. This grant is revokable at any time for any reason. + - Details: Paul primarily designs enclosures and assembles complete Meshtastic Radios for sale using modules from TTGO, Heltec and RAK. He runs an online shop for Meshtastic powered devices which carry the "Meshtastic" and M logos. The use of the Meshtastic Logo and Trademarks does not imply Paul is sponsored or endorsed by Meshtastic. Paul also agrees to maintain compliance with the Meshtastic Legal requirements. This grant is revokable at any time for any reason. From a990e0d7cc6f4b1e1c0a1b09230203a2402cc0ec Mon Sep 17 00:00:00 2001 From: Garth Vander Houwen Date: Sun, 9 Jul 2023 16:58:19 -0700 Subject: [PATCH 09/13] Update trademark-grants.mdx Sorry seem to have completely forgotten how to update the docs properly --- docs/legal/trademark-grants.mdx | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/legal/trademark-grants.mdx b/docs/legal/trademark-grants.mdx index 4affc825..56ca20ab 100644 --- a/docs/legal/trademark-grants.mdx +++ b/docs/legal/trademark-grants.mdx @@ -18,6 +18,5 @@ sidebar_label: Trademark Grants - Details: Ben Lipsey is a Meshtastic Contributor and Promotional Materials Distributor. Promotional materials carry the "Meshtastic" and "M" logos. Materials also carry the Meshtastic.org URL. The use of the Meshtastic Logo and Trademarks does not imply Ben Lipsey is sponsored or endorsed by Meshtastic. Ben Lipsey also agrees to maintain compliance with the Meshtastic Legal requirements. This grant is revokable at any time for any reason. - Grant: Mark Birss - Details: Mark Birss is a Meshtastic contributor/developer of DIY devices that carry the "Meshtastic" , Meshtastic.org URL and "M" logos. The use of the Meshtastic Logo and Trademarks does not imply Mark Birss is sponsored or endorsed by Meshtastic. Mark Birss also agrees to maintain compliance with the Meshtastic Legal requirements. This grant is revokable at any time for any reason. -www.etsy.com/shop/3Dsafe - Grant [Paul Carney](https://www.etsy.com/shop/3Dsafe) - Details: Paul primarily designs enclosures and assembles complete Meshtastic Radios for sale using modules from TTGO, Heltec and RAK. He runs an online shop for Meshtastic powered devices which carry the "Meshtastic" and M logos. The use of the Meshtastic Logo and Trademarks does not imply Paul is sponsored or endorsed by Meshtastic. Paul also agrees to maintain compliance with the Meshtastic Legal requirements. This grant is revokable at any time for any reason. From 2d3ea729e100208d66684d87f73d2e402037f04d Mon Sep 17 00:00:00 2001 From: Garth Vander Houwen Date: Sun, 9 Jul 2023 19:34:49 -0700 Subject: [PATCH 10/13] Update trademark-grants.mdx --- docs/legal/trademark-grants.mdx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/legal/trademark-grants.mdx b/docs/legal/trademark-grants.mdx index 56ca20ab..15d9014b 100644 --- a/docs/legal/trademark-grants.mdx +++ b/docs/legal/trademark-grants.mdx @@ -20,3 +20,5 @@ sidebar_label: Trademark Grants - Details: Mark Birss is a Meshtastic contributor/developer of DIY devices that carry the "Meshtastic" , Meshtastic.org URL and "M" logos. The use of the Meshtastic Logo and Trademarks does not imply Mark Birss is sponsored or endorsed by Meshtastic. Mark Birss also agrees to maintain compliance with the Meshtastic Legal requirements. This grant is revokable at any time for any reason. - Grant [Paul Carney](https://www.etsy.com/shop/3Dsafe) - Details: Paul primarily designs enclosures and assembles complete Meshtastic Radios for sale using modules from TTGO, Heltec and RAK. He runs an online shop for Meshtastic powered devices which carry the "Meshtastic" and M logos. The use of the Meshtastic Logo and Trademarks does not imply Paul is sponsored or endorsed by Meshtastic. Paul also agrees to maintain compliance with the Meshtastic Legal requirements. This grant is revokable at any time for any reason. +- Grant: [Keith Monaghan](http://voltaicenclosures.com/) + - Details: Keith is a contributer of computer aided design (CAD)/3D designs primarily for device enclosures and accessories, and runs an online shop for Meshtastic powered devices which carry the "Meshtastic" and "M" logos. The use of the Meshtastic Logo and Trademarks does not imply Keith is sponsored or endorsed by Meshtastic. Keith also agrees to maintain compliance with the Meshtastic Legal requirements. This grant is revokable at any time for any reason. From 3a031380f0e7c5844355e1d3dbd13b0267aa20ba Mon Sep 17 00:00:00 2001 From: pdxlocations Date: Sun, 9 Jul 2023 22:23:41 -0700 Subject: [PATCH 11/13] lots of changes --- .../module-config/range-test.mdx | 70 +++++++++---------- 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/docs/configuration/module-config/range-test.mdx b/docs/configuration/module-config/range-test.mdx index dfa409ea..05b45833 100644 --- a/docs/configuration/module-config/range-test.mdx +++ b/docs/configuration/module-config/range-test.mdx @@ -8,7 +8,16 @@ sidebar_label: Range Test import Tabs from "@theme/Tabs"; import TabItem from "@theme/TabItem"; -This module allows you to test the range of your Meshtastic nodes. It requires at least two nodes, a sender and a receiver. The receiving node then saves the messages along with the GPS coordinates at which they were received into a .csv file. This .csv file can then be integrated into [Google Earth](https://earth.google.com), [Google Maps - My Maps](https://mymaps.google.com), or any other program capable of processing .csv files. This can enable you to visualize your mesh. +This module allows you to test the range of your Meshtastic nodes. It requires at least two nodes, a sender and a receiver. The receiving node saves the messages along with the GPS coordinates at which they were received into a .csv file. This .csv file can then be integrated into [Google Earth](https://earth.google.com), [Google Maps - My Maps](https://mymaps.google.com), or any other program capable of processing .csv files. This can enable you to visualize your mesh. + +While a minimum of two radios is required, more can be used. You can have any number of receivers and senders that your mesh is able to handle. You can test having a single sender with multiple receivers or a single receiver with multiple senders. Let us know on the [forum thread](https://meshtastic.discourse.group/t/new-plugin-rangetestplugin/2591) the results of your configuration. + +:::info + +Be sure to turn off the module or disable sending when not in use. This will use a lot of time on air, slow down your mesh, and spam your channel. + +::: + The range test module config options are: Enabled, Save, and Sender. Range Test Module config uses an admin message sending a `ConfigModule.RangeTest` protobuf. @@ -18,13 +27,29 @@ The range test module config options are: Enabled, Save, and Sender. Range Test Enables the range test module. -### Save CSV File `ESP32 Only Setting` +### Save CSV File -If enabled, we will save a log of all received messages to a file named rangetest.csv which you can access from the web server Extensions > File Browser > rangetest.csv. The file will be created after receiving messages. The device will abort writing if there is less than 50k of space on the filesystem to prevent filling up the storage. +:::info + +Saving files is only available on ESP32-based devises + +::: + +If enabled, a log of all received messages will be saved to a file named rangetest.csv This file can be accessed by first connecting your node to wifi and then navigating to meshtastic.local/rangetest.csv. This file will only be created after receiving messages. To prevent filling up the storage, the device will abort writing if there is less than 50kb of space on the filesystem. ### Sender Interval -How long to wait between sending test packets. 0 is default which disables sending messages. +How long to wait between sending sequential test packets. 0 is default which disables sending messages. + +### Recommended Sender Settings + +| Radio Setting | `range_test.sender` | +| :-----------: | :-----------------: | +| Long Slow | 60 | +| Long Alt | 30 | +| Medium | 15 | +| Short Fast | 15 | + ## Range Test Module Config Client Availability @@ -48,6 +73,8 @@ Range Test Config options are available for Android. ::: +Android also had the option to download a rangetest.csv file which is stored on your phone. This file does not require the Range Test module to be active and will log all incoming Nodeinfo, Position, Telemetry and Messages. + @@ -55,6 +82,8 @@ Range Test Config options are available for Android. All range test module config options are available on iOS, iPadOS and macOS at Settings > Modules > Range Test. ::: +Apple apps also have the option to download logged position data which is stored on your iPhone/iPad/Mac. Access this by clicking on the Nodes tab, selecting a node, then select Position Log and click Save. This data file does not require the Range Test module to be active. + @@ -110,35 +139,6 @@ All range test module config options are available in the Web UI. -## Examples - -While a minimum of two radios is required, more can be used. You can have any number of receivers and senders that your mesh is able to handle. You can test having a single sender with multiple receivers or a single receiver with multiple senders. Let us know on the [forum thread](https://meshtastic.discourse.group/t/new-plugin-rangetestplugin/2591) the results of your configuration. - -Be sure to turn off the module when not in use. This will use a lot of time on air and will spam your channel. - -Also be mindful of your space usage on the file system. It has protections from filling up the space but it's best to delete old range test results. - -:::note -Leaving this module on can slow down your mesh. Currently, the messages are sent using the same `TEXT_MESSAGE_APP` [port that all other messages](https://buf.build/meshtastic/protobufs/docs/main:meshtastic#meshtastic.PortNum) are sent on. -::: - -### Accessing your CSV - -Connect to your device over WiFi, either using the [software access point](/docs/settings/config/network#software-access-point) or [WiFi Client](/docs/settings/config/network#wifi-client). Then navigate to `meshtastic.local` (or your IP address). Your file will be available for download under `Extensions > File Browser > rangetest.csv` once it has been created by receiving messages. - -```plaintext title="Example URLs" -http://meshtastic.local -http://198.168.0.15 -``` - -### Recommended Sender Settings - -| Radio Setting | `range_test.sender` | -| :-----------: | :-----------------: | -| Long Slow | 60 | -| Long Alt | 30 | -| Medium | 15 | -| Short Fast | 15 | ## Application Examples @@ -171,7 +171,7 @@ You can style the ranges differently based on the values, so you can have the pi Q: Where is rangetest.csv saved? -- Turn on the WiFi on your device as either a WiFi client or a WiFi AP. Once you can connect to your device, navigate to `Extensions > File Browser` and you will see `rangetest.csv` once messages have been saved and the file has been created. +- Turn on the WiFi on your device and connect to your network. Once you can connect to your device, navigate to `meshtastic.local/rangetest.csv` (or your_device_ip/rangetest.csv) and the file will be downloaded automatically. Q: Do I need to have WiFi turned on for the file to be saved? @@ -191,7 +191,7 @@ Q: What will happen if I run out of space on my device? Q: What do I do with the rangetest.csv file when I'm done? -- Go to /static and delete the file. +- Currently the only way to erase the file is to perform a factory reset. Q: Can I use this as a sender while on battery power? From b13cd533b72f49c384959a9cc116115ef837a1e5 Mon Sep 17 00:00:00 2001 From: pdxlocations Date: Sun, 9 Jul 2023 22:30:45 -0700 Subject: [PATCH 12/13] removed duplicate wording --- docs/configuration/module-config/range-test.mdx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/configuration/module-config/range-test.mdx b/docs/configuration/module-config/range-test.mdx index 05b45833..0177b933 100644 --- a/docs/configuration/module-config/range-test.mdx +++ b/docs/configuration/module-config/range-test.mdx @@ -35,7 +35,11 @@ Saving files is only available on ESP32-based devises ::: -If enabled, a log of all received messages will be saved to a file named rangetest.csv This file can be accessed by first connecting your node to wifi and then navigating to meshtastic.local/rangetest.csv. This file will only be created after receiving messages. To prevent filling up the storage, the device will abort writing if there is less than 50kb of space on the filesystem. +If enabled, a log of all received messages will be saved to a file named rangetest.csv. + +To access this file, first turn on the WiFi on your device and connect to your network. Once you can connect to your device, navigate to `meshtastic.local/rangetest.csv` (or your_device_ip/rangetest.csv) and the file will be downloaded automatically. This file will only be created after receiving initial messages. + +To prevent filling up the storage, the device will abort writing if there is less than 50kb of space on the filesystem. ### Sender Interval @@ -169,10 +173,6 @@ You can style the ranges differently based on the values, so you can have the pi ## FAQ -Q: Where is rangetest.csv saved? - -- Turn on the WiFi on your device and connect to your network. Once you can connect to your device, navigate to `meshtastic.local/rangetest.csv` (or your_device_ip/rangetest.csv) and the file will be downloaded automatically. - Q: Do I need to have WiFi turned on for the file to be saved? - Nope, it'll just work. From 7132132dc8ebeaca1105040f9353cba1de904277 Mon Sep 17 00:00:00 2001 From: pdxlocations Date: Mon, 10 Jul 2023 13:27:03 -0700 Subject: [PATCH 13/13] add summary missing config options --- docs/configuration/module-config/serial.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/configuration/module-config/serial.mdx b/docs/configuration/module-config/serial.mdx index 33961ba9..52ea28c1 100644 --- a/docs/configuration/module-config/serial.mdx +++ b/docs/configuration/module-config/serial.mdx @@ -8,7 +8,7 @@ sidebar_label: Serial import Tabs from "@theme/Tabs"; import TabItem from "@theme/TabItem"; -The serial module config options are: Enabled, Echo, Mode, Receive GPIO, Transmit GPIO and Sender. Serial Module config uses an admin message sending a `ConfigModule.Serial` protobuf. +The serial module config options are: Enabled, Echo, Mode, Receive GPIO, Transmit GPIO, Baud Rate, Timeout, and Override Console Serial Port. Serial Module config uses an admin message sending a `ConfigModule.Serial` protobuf. This is a simple interface to send messages over the mesh network by sending strings over a serial port. Anything you send the node will be turned into a message sent out over the mesh, and anything received from the mesh will be sent to the serial port. Note that this module does not (yet) allow arbitrary protobuf commands to be sent over the serial connection.