mirror of
https://github.com/lowobservable/coax.git
synced 2026-03-01 09:51:30 +00:00
15 lines
315 B
Python
Executable File
15 lines
315 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
from common import open_example_serial_interface
|
|
|
|
from coax import read_feature_ids, parse_features
|
|
|
|
with open_example_serial_interface() as interface:
|
|
commands = read_feature_ids()
|
|
|
|
ids = interface.execute(commands)
|
|
|
|
features = parse_features(ids, commands)
|
|
|
|
print(features)
|