我从Python 2.7的源代码安装了PyUSB
当我导入模块时,我没有收到任何错误,但是当我尝试时:
printers = usb.core.find(find_all=True, bDeviceClass=7)
或
dev = usb.core.find(idVendor=0x04d8, idProduct=0x003f)
我明白了:
TypeError: expected string or Unicode object, NoneType found
我能够在C#中正确地与此设备进行通信,并且好奇为什么它不会出现在PyUSB中。