Files
lowobservable.coax/pycoax/examples/30_get_features.py
2021-06-24 21:41:11 -05:00

11 lines
215 B
Python
Executable File

#!/usr/bin/env python
from common import open_example_serial_interface
from coax import get_features
with open_example_serial_interface() as interface:
features = get_features(interface)
print(features)