pyusb doesnt find any usb devices.I tried several devices and copied/pasted the VID and PID. Has anyone an idea,what I am doing wrong? I get always an error message: NameError: name '_04F2' is not defined
import usb.core
import usb.util
dev = usb.core.find(idVendor=_04F2, idProduct=_B449)
if dev is None:
raise ValueError('Device is not found')