1
0
mirror of https://github.com/cmur2/miflorad.git synced 2026-04-02 16:18:34 +02:00
Files
miflorad/reset.py
2018-12-07 09:19:58 +01:00

8 lines
144 B
Python

#!/usr/bin/python
# Note: pip install pyusb
from usb.core import find as finddev
dev = finddev(idVendor=0x8087, idProduct=0x0a2b)
dev.reset()