我尝试使用 PyUSB 查找的设备是可编程的水泵。
要找到它,我一直在使用以下代码(位于https://www.orangecoat.com/how-to/use-pyusb-to-find-vendor-and-product-ids-for-usb-devices上):
#!/usr/bin/python
import sys
import usb.core
# find USB devices
dev = usb.core.find(find_all=True)
# loop through devices, printing vendor and product ids in decimal and hex
for cfg in dev:
sys.stdout.write('Decimal VendorID=' + str(cfg.idVendor) + ' & ProductID=' + str(cfg.idProduct) + '\n')
sys.stdout.write('Hexadecimal VendorID=' + hex(cfg.idVendor) + ' & ProductID=' + hex(cfg.idProduct) + '\n\n')
运行此命令不会返回任何内容。当我使用 Zadig 查看是否已安装驱动程序时,它表示已经为我的设备安装了驱动程序。我尝试使用 Zadig 重新安装驱动程序,并使用 libusb 安装驱动程序,但这些都没有解决我的问题。
任何建议让PyUSB找到我的设备的人!