mirror of
https://github.com/lowobservable/coax.git
synced 2026-02-27 17:32:39 +00:00
13 lines
246 B
Python
Executable File
13 lines
246 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
from common import open_example_serial_interface
|
|
|
|
from coax import ReadStatus
|
|
|
|
with open_example_serial_interface() as interface:
|
|
print('READ_STATUS...')
|
|
|
|
status = interface.execute(ReadStatus())
|
|
|
|
print(status)
|