Files
lowobservable.coax/pycoax/examples/30_get_features.py
Andrew Kay e0af47a299 EAB feature
2020-07-19 13:48:17 -05:00

15 lines
252 B
Python
Executable File

#!/usr/bin/env python
import sys
from common import create_serial, create_interface
from coax import get_features
with create_serial() as serial:
interface = create_interface(serial)
features = get_features(interface)
print(features)