From ed0940b12616016daa745869b9d40574e1ecb625 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Fri, 13 Dec 2024 13:03:41 -0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- modules/system.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f4d43e4..87246e4 100644 --- a/README.md +++ b/README.md @@ -358,7 +358,7 @@ There is no direct support for MQTT in the code, however, reports from Discord a | `motd` | Displays the message of the day or sets it. Example: `motd $New Message Of the day` | ✅ | | `lheard` | Returns the last 5 heard nodes with SNR. Can also use `sitrep` | ✅ | | `history` | Returns the last commands run by user(s) | ✅ | -| `sysinfo` | Returns the telemetry info | ✅ | +| `sysinfo` | Returns the bot node telemetry info | ✅ | | `cmd` | Returns the list of commands (the help message) | ✅ | ### Radio Propagation & Weather Forcasting diff --git a/modules/system.py b/modules/system.py index 69b2c09..a2d49f3 100644 --- a/modules/system.py +++ b/modules/system.py @@ -906,7 +906,7 @@ def get_sysinfo(nodeID=0, deviceID=1): sysinfo = '' stats = displayNodeTelemetry(nodeID, deviceID) + " 🤖👀" + str(len(seenNodes)) if "numPacketsRx:0" in stats: - return "Gathering Telemetry try again later" + return "Gathering Telemetry try again later⏳" # replace Telemetry with Int in string stats = stats.replace("Telemetry", "Int") sysinfo += f"📊{stats}"