mirror of
https://github.com/cmur2/miflorad.git
synced 2026-04-02 16:18:34 +02:00
8 lines
144 B
Python
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()
|