From 4c8fe8f8376179e5783d46e8d1b70ac2a8eaa9f4 Mon Sep 17 00:00:00 2001 From: Florent de Lamotte Date: Tue, 4 Feb 2025 10:46:56 +0100 Subject: [PATCH] fixed cmd code for recv --- mc-cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mc-cli.py b/mc-cli.py index 34b518d..a42b48b 100755 --- a/mc-cli.py +++ b/mc-cli.py @@ -154,7 +154,7 @@ class MeshCore: return await self.send(data) async def get_msg(self): - return await self.send(b"\x10") + return await self.send(b"\x0A") async def test(mc):