I found my device's VID and PID in the properties for the device on windows, which are 256
for the VID and 006
for the PID. I can't seem to get pyusb to find it. From what I've seen, most people put the VID and PID in hex, which I tried and it still doesn't work. Here's my code:
import usb.core
import usb.util
VID = 256
PID = 6
dev = usb.core.find(idVendor=VID, idProduct=PID)
dev
is always None
. Any clue what I did wrong?
EDIT:
I just tested with another device with a VID of 0x046D
and a PID of 0xC21D
and it still returns None
.
EDIT 2:
I have libusb installed and I've tried running the script in both Python 3.4 and Python 2.7. It always returns None
.