This commit is contained in:
SpudGunMan
2024-12-13 13:03:41 -08:00
parent a087c7bb3a
commit ed0940b126
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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
+1 -1
View File
@@ -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}"