mirror of
https://github.com/lowobservable/coax.git
synced 2026-01-30 21:52:10 +00:00
15 lines
252 B
Python
Executable File
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)
|