mirror of
https://github.com/lowobservable/coax.git
synced 2026-01-31 22:22:08 +00:00
15 lines
263 B
Python
Executable File
15 lines
263 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
from common import create_serial, create_interface
|
|
|
|
from coax import read_status
|
|
|
|
with create_serial() as serial:
|
|
interface = create_interface(serial)
|
|
|
|
print('READ_STATUS...')
|
|
|
|
status = read_status(interface)
|
|
|
|
print(status)
|