mirror of
https://github.com/lowobservable/coax.git
synced 2026-02-27 17:32:39 +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())
|