mirror of
https://github.com/lowobservable/coax.git
synced 2026-03-02 02:00:56 +00:00
11 lines
202 B
Python
Executable File
11 lines
202 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
from common import open_example_serial_interface
|
|
|
|
from coax import Reset
|
|
|
|
with open_example_serial_interface() as interface:
|
|
print('RESET...')
|
|
|
|
interface.execute(Reset())
|