From 978f3416e7c1e04cb3ddcc863454c23199bf8082 Mon Sep 17 00:00:00 2001 From: Florent de Lamotte Date: Fri, 7 Feb 2025 12:20:06 +0100 Subject: [PATCH] send mccli as application name --- mccli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mccli.py b/mccli.py index 61ee7ec..e32484e 100755 --- a/mccli.py +++ b/mccli.py @@ -185,7 +185,7 @@ class MeshCore: async def send_appstart(self): """ Send APPSTART to the node """ - b1 = bytearray(b'\x01\x03 TEST') + b1 = bytearray(b'\x01\x03 mccli') return await self.send(b1) async def send_advert(self):