mirror of
https://github.com/lowobservable/coax.git
synced 2026-01-30 21:52:10 +00:00
13 lines
217 B
Python
Executable File
13 lines
217 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
from common import create_serial, create_interface
|
|
|
|
from coax import reset
|
|
|
|
with create_serial() as serial:
|
|
interface = create_interface(serial)
|
|
|
|
print('RESET...')
|
|
|
|
reset(interface)
|