So I installed Pyusb 1.0.0-alpha-1
On Windows, I cannot get any pens for USB devices.
>>> import usb.core >>> print usb.core.find() None
I have 1 USB device connected (idVendor = 0x04d8, idProduct = 0x0042) and I tried usb.core.find(idVendor=0x04d8, idProduct=0x0042) , but that also failed.
In Ubuntu with the same versions of pyusb and python (2.6), I can successfully find my device with this code and contact it.
So, how can I get pyusb to search for usb devices in Windows 7?
source share