From eeafa61cfed7f0d629d4f698e88c7e90cef60d8a Mon Sep 17 00:00:00 2001 From: James Rich <2199651+jamesarich@users.noreply.github.com> Date: Sat, 20 Jul 2024 10:56:56 -0500 Subject: [PATCH 1/6] Update Android usage.mdx Describes the new functionality proposed in https://github.com/meshtastic/Meshtastic-Android/pull/1144. --- docs/software/android/usage.mdx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/software/android/usage.mdx b/docs/software/android/usage.mdx index f6e6940c..1e9acea8 100644 --- a/docs/software/android/usage.mdx +++ b/docs/software/android/usage.mdx @@ -140,8 +140,10 @@ By default there is no long-term store-and-forward of messages, so messages not The network list shows all the users (devices) that have connected to the same Channel. For each entry, it shows the last time they were active, their location and distance (when available), and their last known power status. In the example above, Monkey is the local user, Rabbit was last heard from 10 minutes ago and is 50m away, and Panda was last heard 11 minutes ago and 5m away. -- Tap on a node from the list to start Direct Messaging, request a position update, request a [traceroute](/docs/configuration/module/traceroute) or add it to your [Ignore Incoming Array](/docs/configuration/radio/lora#ignore-incoming-array). -- If you have an [Admin Channel](/docs/configuration/remote-admin) enabled on your devices, tapping on the node will also display an option to remotely configure the node. +- Tap on a node in the list to show more details about the node. A Show Details toggle is in the filter menu. +- Tap on a node's colored chip to start Direct Messaging, request a position update, request a [traceroute](/docs/configuration/module/traceroute) or add it to your [Ignore Incoming Array](/docs/configuration/radio/lora#ignore-incoming-array). +- Tap on a node's location coordinates to open in your maps application, long press to copy the coordinates to your clipboard. +- If you have an [Admin Channel](/docs/configuration/remote-admin) enabled on your devices, tapping on the node's colored chip will also display an option to remotely configure the node. ### View the map From 14fa557ffa9726f1cff617d954a36cb4b3cd6a22 Mon Sep 17 00:00:00 2001 From: Jm Casler Date: Mon, 29 Jul 2024 16:11:32 -0700 Subject: [PATCH 2/6] Update code_of_conduct.mdx Added bullet on denial of service and updated on data collection. --- docs/legal/code_of_conduct.mdx | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/docs/legal/code_of_conduct.mdx b/docs/legal/code_of_conduct.mdx index aa79bbfb..fea82192 100644 --- a/docs/legal/code_of_conduct.mdx +++ b/docs/legal/code_of_conduct.mdx @@ -35,13 +35,16 @@ community include: Examples of unacceptable behavior include: * The use of sexualized language or imagery, and sexual attention or advances of - any kind + any kind. * Trolling, insulting or derogatory comments, and personal or political attacks -* Public or private harassment -* Publishing others' private information, such as a physical or email address, - without their explicit permission +* Public or private harassment. +* Publishing or collecting others' private information, such as a physical or email address, + without their explicit permission. +* Using the services in a way that could cause a denial of service, whether intentional or + unintentional. This includes overloading the network or servers and disrupting service + availability. * Other conduct which could reasonably be considered inappropriate in a - professional setting + professional setting. ## Enforcement Responsibilities From 05ddad3b50a5fe1db91bf9fc025b1ebcd95b32ba Mon Sep 17 00:00:00 2001 From: Tavis Date: Sat, 3 Aug 2024 16:44:54 -1000 Subject: [PATCH 3/6] add info for ws85 serial mode --- docs/configuration/module/serial.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/configuration/module/serial.mdx b/docs/configuration/module/serial.mdx index 3e45da71..b721d373 100644 --- a/docs/configuration/module/serial.mdx +++ b/docs/configuration/module/serial.mdx @@ -38,7 +38,7 @@ Available Values: - `TEXTMSG` will allow you to send a string over the serial port to the device, which will be broadcasted as a text message to the default channel. Any text message received from the mesh will be sent to the serial port as follows: `: `. - `NMEA` will output a NMEA 0183 Data stream containing the internal GPS or fixed position and other node locations as Waypoints (WPL). - `CALTOPO` will output NMEA 0183 Waypoints (WPL) every 10 seconds for all valid node locations, to be consumed by [CalTopo / SARTopo](/docs/software/integrations/caltopo.mdx). - +- `WS85` will parse and compute wind speed data received over serial from the Ecowitt WS85. Transmits valuess via telemetry packet every 5 minutes. Modification of the WS85 weather sensor is required (https://hackaday.io/project/196990-meshtastic-ultrasonic-anemometer-wx-station). If option is not available in app then enable with cli command "meshtastic --set serial.mode 6" ### Receive GPIO Pin Set the GPIO pin to the RXD pin you have set up. From e13e8d9fe47a3b0cc5c533b2d87acd5b867b8f34 Mon Sep 17 00:00:00 2001 From: Anton Roslund Date: Mon, 5 Aug 2024 23:54:51 +0200 Subject: [PATCH 4/6] Remove extra parentheses in scaled broadcast interval algoritm (#1356) --- docs/about/overview/mesh-alg.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/about/overview/mesh-alg.mdx b/docs/about/overview/mesh-alg.mdx index da4eee8f..0393964a 100644 --- a/docs/about/overview/mesh-alg.mdx +++ b/docs/about/overview/mesh-alg.mdx @@ -110,6 +110,6 @@ As meshes grow larger and traffic becomes more contentious, the firmware will in Starting with version 2.4.0, the firmware will scale back Telemetry, Position, and other ancillary port traffic for meshes larger than 40 nodes (nodes seen in the past 2 hours) using the following algorithm: -`ScaledInterval = Interval * (1.0 + ((NumberOfOnlineNodes - 40) * 0.075)))` +`ScaledInterval = Interval * (1.0 + ((NumberOfOnlineNodes - 40) * 0.075))` For example an active mesh of 62 nodes would scale back `telemetry.device_update_interval` to 79.5 minutes instead of the 30 minute default. From c6b561cd81e63c62200e86bf614c6e2cf38da479 Mon Sep 17 00:00:00 2001 From: Jeff Geerling Date: Mon, 5 Aug 2024 23:30:34 -0500 Subject: [PATCH 5/6] Add MeshSTL - St. Louis. --- docs/community/local-groups.mdx | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/community/local-groups.mdx b/docs/community/local-groups.mdx index ceedd3ed..b5562c15 100644 --- a/docs/community/local-groups.mdx +++ b/docs/community/local-groups.mdx @@ -136,6 +136,7 @@ us on [Discord](https://discord.com/invite/ktMAKGBnBs) to add your group. ### Missouri - [Kansas City Meshtastic Group](https://www.facebook.com/share/XZ9jnhxy1YT4wWqC/) +- [MeshSTL - St. Louis](https://discord.gg/QYxUdKZpBd) ### New Mexico - [Albuquerque Mesh](https://www.abqm.net) From f5618c17f5549e4ffde87356db76c3bf144844ba Mon Sep 17 00:00:00 2001 From: tacoded <79030392+tacoded@users.noreply.github.com> Date: Tue, 6 Aug 2024 21:19:31 -0400 Subject: [PATCH 6/6] Update local-groups.mdx Add Cincy Mesh --- docs/community/local-groups.mdx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/community/local-groups.mdx b/docs/community/local-groups.mdx index b5562c15..8ba007c2 100644 --- a/docs/community/local-groups.mdx +++ b/docs/community/local-groups.mdx @@ -141,6 +141,9 @@ us on [Discord](https://discord.com/invite/ktMAKGBnBs) to add your group. ### New Mexico - [Albuquerque Mesh](https://www.abqm.net) +### Ohio +- [Cincy Mesh](https://www.cincymesh.org) + ### Oklahoma - [Oklahoma Meshtastic Group](https://www.facebook.com/groups/942404880478488)