From f84d17566bf4e4ffeb9a143afec34da4db1100cd Mon Sep 17 00:00:00 2001 From: Florent Date: Wed, 16 Apr 2025 12:05:16 +0200 Subject: [PATCH] some error in example --- examples/ble_chat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/ble_chat.py b/examples/ble_chat.py index 2f02d47..5301389 100755 --- a/examples/ble_chat.py +++ b/examples/ble_chat.py @@ -83,7 +83,7 @@ async def main () : print ("Ack") except KeyboardInterrupt: - meshcore.stop() + mc.stop() print("\nExiting...") except asyncio.CancelledError: # Handle task cancellation from KeyboardInterrupt in asyncio.run()