python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Is there a way to work with PyUSB under Windows (10) without changing drivers?
I tried to run PyUSB under Windows and in a first test simply wanted to read out all my USB devices with usb.core.find(find_all = True). But that failed with backends iibusb0 and libusb1. Meanwhile I ...
Martin_from_K
Votes: 0
Answers: 0
Is there a way to find vendor specific usb commands?
I want to control an 8K monitor with pyusb. I know the c++ api functions from their documentation. But they don't supply the values to send for those commands. Is there a way to find what values or me...
user14094230
Votes: 0
Answers: 1
PyUSB error (Python3, Linux, PyUSB, AudioInterface)
I'm using python3 and PyUSB library for communicate with my USB soundcard. OS: Linux Ubuntu 20.04. Python3 code:
import usb.core
import usb.util
dev = usb.core.find(idVendor=0x2708, idProduct=0x0008)...
E.Wolf
Votes: 0
Answers: 0
How to claim USB interface using address
I'm connecting to 2 identical microphone arrays using the pyusb library, but they have the same idVendor and idProduct numbers. The only way to differentiate the 2 devices is by address, but I'm unabl...
a_person
Votes: 0
Answers: 1