From a564729e391a8f1888a953b8cff9baf0dd792d5f Mon Sep 17 00:00:00 2001 From: Florent de Lamotte Date: Sun, 9 Mar 2025 22:04:15 +0100 Subject: [PATCH] handle 0x88 --- mccli.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mccli.py b/mccli.py index 598786e..dbd0e39 100755 --- a/mccli.py +++ b/mccli.py @@ -385,6 +385,8 @@ class MeshCore: data_hex = data[8:].hex() printerr (f"Status response: {data_hex}") #printerr(res) + case 0x88: + printerr ("Received log data") # unhandled case _: printerr (f"Unhandled data received {data}")