mirror of
https://github.com/lowobservable/coax.git
synced 2026-01-13 07:29:56 +00:00
13 lines
238 B
Python
Executable File
13 lines
238 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
from common import open_example_serial_interface
|
|
|
|
from coax import read_status
|
|
|
|
with open_example_serial_interface() as interface:
|
|
print('READ_STATUS...')
|
|
|
|
status = read_status(interface)
|
|
|
|
print(status)
|