oblitum / Interception

The Interception API aims to build a portable programming interface that allows one to intercept and control a range of input devices.
http://oblita.com/interception
1.32k stars 271 forks source link

Capture data from HID-compliant control device #166

Open CyberAndrew opened 1 year ago

CyberAndrew commented 1 year ago

I have RF remote with USB dongle. It acts like usual HID-keyboard (HID_DEVICE_SYSTEM_KEYBOARD), mouse (HID_DEVICE_SYSTEM_MOUSE).

Except media keys: volume up, down, prev, next song etc. These media keys are sent from third "HID-compliant control device" (hid type "HID_DEVICE_SYSTEM_CONSUMER").

I use AutoHotInterception (which uses your driver) to remap these keys, but can't capture these keys. Because formally this is not either keyboard or mouse. But it sends keycodes too, I can see it in program HidMacros (but can't remap, it only see code but do nothing with that for somereason).

Any idea how to capture these media keys from HID-compliant control device?