我从 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 中。