We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fd4db6 commit 17c8fe7Copy full SHA for 17c8fe7
src/meshcore/meshcore.py
@@ -348,6 +348,11 @@ async def wait_login(self, timeout = 5):
348
printerr ("Timeout ...")
349
return False
350
351
+ async def send_logout(self, dst):
352
+ self.login_resp = asyncio.Future()
353
+ data = b"\x1d" + dst + pwd.encode("ascii")
354
+ return await self.send(data)
355
+
356
async def send_statusreq(self, dst):
357
self.status_resp = asyncio.Future()
358
data = b"\x1b" + dst
0 commit comments