From 47a835efcbd333e73e651598a7668e200a3f0be5 Mon Sep 17 00:00:00 2001 From: pdxlocations Date: Sun, 11 Jun 2023 21:05:55 -0700 Subject: [PATCH 1/2] Added Store & Forward to table. Added slug to s&f --- docs/configuration/module-config/index.mdx | 3 ++- docs/configuration/module-config/store-and-forward-module.mdx | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/configuration/module-config/index.mdx b/docs/configuration/module-config/index.mdx index 24bc612e..5930c4bb 100644 --- a/docs/configuration/module-config/index.mdx +++ b/docs/configuration/module-config/index.mdx @@ -10,11 +10,12 @@ Modules are included in the firmware and allow users to extend the functionality | Name | Description | | :------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | -| [Audio](/docs/settings/moduleconfig/audio) | enable Support for Codec2 Voice Comms on certain devices | +| [Audio](/docs/settings/moduleconfig/audio) | Enable Support for Codec2 Voice Comms on certain devices. | | [Canned Message](/docs/settings/moduleconfig/canned-message) | Set a number of predefined messages to send out directly from the device with the use of an input device like a rotary encoder. | | [External Notification](/docs/settings/moduleconfig/external-notification) | Incoming messages are able to alert you using circuits you attach to the device (LEDs, Buzzers, etc) | | [MQTT](/docs/settings/moduleconfig/mqtt) | Forward packets along to an MQTT server. This allows users on the local mesh to communicate with users on another mesh over the internet. | | [Range Test](/docs/settings/moduleconfig/range-test) | Send messages with GPS location at an interval to test the distance your devices can communicate. Requires (at least) one device set up as a sender and one as a receiver. The receiver(s) will log all incoming messages to a CSV. | | [Serial Module](/docs/settings/moduleconfig/serial) | Send messages across the mesh by sending strings over a serial port. | +| [Store & Forward](/docs/settings/moduleconfig/store-and-forward-module) | Stores messages on a device for delivery ofter disconnected clients rejoin the mesh. | | [Telemetry](/docs/settings/moduleconfig/telemetry) | Attach sensors to the device and transmit readings on a regular interval to the mesh. | | [Traceroute](/docs/settings/moduleconfig/traceroute) | Track which nodes are used to hop a message to a certain destination. | diff --git a/docs/configuration/module-config/store-and-forward-module.mdx b/docs/configuration/module-config/store-and-forward-module.mdx index 03cd1547..9666a42d 100644 --- a/docs/configuration/module-config/store-and-forward-module.mdx +++ b/docs/configuration/module-config/store-and-forward-module.mdx @@ -1,6 +1,7 @@ --- id: store-and-forward-module title: Store & Forward Module Settings +slug: /settings/moduleconfig/store-and-forward-module sidebar_label: Store & Forward --- From 8840506be1607468fa7190153c69e2de2659e8b4 Mon Sep 17 00:00:00 2001 From: pdxlocations Date: Sun, 11 Jun 2023 21:13:52 -0700 Subject: [PATCH 2/2] fix typo --- docs/configuration/module-config/index.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/configuration/module-config/index.mdx b/docs/configuration/module-config/index.mdx index 5930c4bb..e2967e5e 100644 --- a/docs/configuration/module-config/index.mdx +++ b/docs/configuration/module-config/index.mdx @@ -12,10 +12,10 @@ Modules are included in the firmware and allow users to extend the functionality | :------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | | [Audio](/docs/settings/moduleconfig/audio) | Enable Support for Codec2 Voice Comms on certain devices. | | [Canned Message](/docs/settings/moduleconfig/canned-message) | Set a number of predefined messages to send out directly from the device with the use of an input device like a rotary encoder. | -| [External Notification](/docs/settings/moduleconfig/external-notification) | Incoming messages are able to alert you using circuits you attach to the device (LEDs, Buzzers, etc) | +| [External Notification](/docs/settings/moduleconfig/external-notification) | Incoming messages are able to alert you using circuits you attach to the device (LEDs, Buzzers, etc). | | [MQTT](/docs/settings/moduleconfig/mqtt) | Forward packets along to an MQTT server. This allows users on the local mesh to communicate with users on another mesh over the internet. | | [Range Test](/docs/settings/moduleconfig/range-test) | Send messages with GPS location at an interval to test the distance your devices can communicate. Requires (at least) one device set up as a sender and one as a receiver. The receiver(s) will log all incoming messages to a CSV. | | [Serial Module](/docs/settings/moduleconfig/serial) | Send messages across the mesh by sending strings over a serial port. | -| [Store & Forward](/docs/settings/moduleconfig/store-and-forward-module) | Stores messages on a device for delivery ofter disconnected clients rejoin the mesh. | +| [Store & Forward](/docs/settings/moduleconfig/store-and-forward-module) | Stores messages on a device for delivery after disconnected clients rejoin the mesh. | | [Telemetry](/docs/settings/moduleconfig/telemetry) | Attach sensors to the device and transmit readings on a regular interval to the mesh. | | [Traceroute](/docs/settings/moduleconfig/traceroute) | Track which nodes are used to hop a message to a certain destination. |