I'm trying to use pyusb to enumerates all devices connected to my pc:
>>> import usb.core
>>> dev = usb.core.find(find_all=True)
>>> for device in dev:
print(device)
>>>
Why keyboard, mouse and other plugged devices are not recognized?
Then I try to detect the mouse:
>>> dev = usb.core.find(idVendor=16700, idProduct=12314)
>>> print(dev)
None
Any ideas? Thanks! Max