From e1211fe1081b24eef9cef62117faa4f26c5b812b Mon Sep 17 00:00:00 2001 From: W1CDN Date: Sat, 26 Aug 2023 19:24:00 -0500 Subject: [PATCH] Stub out fix-kiss. --- test_async.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 test_async.py diff --git a/test_async.py b/test_async.py new file mode 100644 index 0000000..62a9a6a --- /dev/null +++ b/test_async.py @@ -0,0 +1,11 @@ +import asyncio +import aprs + +async def main(): + transport, protocol = await aprs.create_tcp_connection("192.168.0.30", 8001) + + async for frame in protocol.read(): + print(frame) + +if __name__ == "__main__": + asyncio.run(main()) \ No newline at end of file