Stub out fix-kiss.
This commit is contained in:
parent
6686cba26d
commit
e1211fe108
11
test_async.py
Normal file
11
test_async.py
Normal 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())
|
Loading…
Reference in New Issue
Block a user