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}"