Stub out fix-kiss.

This commit is contained in:
W1CDN 2023-08-26 19:24:00 -05:00
parent 6686cba26d
commit e1211fe108
1 changed files with 11 additions and 0 deletions

11
test_async.py Normal file
View File

@ -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())