I am programming inside Processing.py and need to use pyUSB. I placed the downloaded files of pyUSB in the sketch folder and then run in the sketch
import usb.core
import usb.util
import usb.control
Which runs successfully, however when I try to initialize the device I'm trying to communicate with, I get the error "No module named util" on the command below
device = usb.core.find(idVendor=VENDOR_ID,
idProduct=PRODUCT_ID)
I don't know whether pyUSB is installed successfully. If anyone has installed this before please comment.