* sensor: CLI "sub" and "unsub" commands

This commit is contained in:
Scott Powell
2026-09-04 22:02:49 +10:00
parent 9bc6060831
commit 3a5a6b90ab
3 changed files with 68 additions and 4 deletions
+1 -1
View File
@@ -137,7 +137,7 @@ void loop() {
if (len > 0 && command[len - 1] == '\r') { // received complete line
command[len - 1] = 0; // replace newline with C string null terminator
char reply[160];
the_mesh.handleCommand(0, command, reply); // NOTE: there is no sender_timestamp via serial!
the_mesh.handleCommand(NULL, 0, command, reply); // NOTE: there is no sender_timestamp via serial!
if (reply[0]) {
Serial.print(" -> "); Serial.println(reply);
}