pywinusb icon indicating copy to clipboard operation
pywinusb copied to clipboard

USB / HID windows helper library

Results 26 pywinusb issues
Sort by recently updated
recently updated
newest added

Another idea for pywinusb is to support generic USB device with WinUSB. Common generic USB device either uses HID or custom USB class. WinUSB is the most widely use driver...

One idea to enhance pywinusb for HID device is to make it cross platform. The best cross platform library for HID is HIDAPI. Maybe pywinusb can be enhanced to use...

I've noticed that when I count the number of active threads, the `InputReportProcessingThread` is always active, even when device is disconnected. The following line abort the `InputReportReaderThread` when device is...

Hi @rene-aguirre , I have set self_handler to receive input report based on the suggestion from this ticket: https://github.com/rene-aguirre/pywinusb/issues/66 However, I found that the call back return it not stable....

Here are my codes: ``` import pywinusb.hid as hid from ctypes import * class hidHelper(object): def __init__(self, vid=0x0483, pid=0xa005): self.alive = False self.device = None self.report = None self.vid =...

Given an HID descriptor with a repeating set of outputs (say 8) described by a usage range from 1 to 8, get_usages() returns only 7 usages.

Hello, and thanks for the great package! I am trying to filter HID devices by serial number, using the following code: ```python filter = hid.HidDeviceFilter(vendor_id=0x2047, product_id=0x0965, serial_number = '123456') devices_found...

I had download the latest version (dated 2018/04/30) and tried the simple_feature.py example on Python 3.4.4 under Win7 32 bit. I got a ValueError at line 29 print("The value:", list(report[target_usage]))...

I have had issues in the past of threads not closing properly. When you set up a raw data handler, pywinusb creates two threads: ``` InputReportProcessing InputReportReader ``` and in...

I have custom made HID devices with Vendor defined Features, IN and OUT reports. Feature Get and Set are ok. Report OUT is ok. However, I have not been able...