This repository has been archived on 2023-12-22. You can view files and clone it, but cannot push or open issues or pull requests.
old-monorepo/Devices/Control/Firmware/enableReset.py

6 lines
95 B
Python
Raw Normal View History

import serial
import time
ser = serial.Serial("COM5")
ser.write(b'r')
ser.close()
time.sleep(1)