This commit is contained in:
François Boulogne 2024-07-23 10:18:02 +02:00
commit b41eb58ca3
10 changed files with 787 additions and 0 deletions

8
bin/listUSBdevice.py Normal file
View file

@ -0,0 +1,8 @@
#!/usr/bin/env python
import labhw
devices = labhw.list_USB_devices()
for k, v in devices.items():
print(k, v)