I have a USB relay HID device that works on linux but does not work on Windows 10. It appears to be a permissions issue but I cannot find any way to change permissions. This is not a mouse or keyboard, so I am hoping that this HID is not protected by the Windows OS.
>>> h.get_manufacturer_string()
'www.dcttech.com'
>>> h.get_product_string()
'USBRelay4'
>>> h.get_serial_number_string()
''
>>> h.get_feature_report(1,8)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "hid.pyx", line 346, in hid.device.get_feature_report
OSError: read error
I have a USB relay HID device that works on linux but does not work on Windows 10. It appears to be a permissions issue but I cannot find any way to change permissions. This is not a mouse or keyboard, so I am hoping that this HID is not protected by the Windows OS.