Replies: 2 comments 5 replies
-
try sending right and left arrow from normal keyboard, it should probably work ? |
Beta Was this translation helpful? Give feedback.
5 replies
-
I am also wondering if it may have to do with OSC (One Shot Control) vs OOC (On Off Control) because the OSC ones work...... |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have it all working on an RPi Pico:
To start/stop media playback:
usb_hid.sendReport16(RID_CONSUMER_CONTROL, HID_USAGE_CONSUMER_PLAY_PAUSE);
But now I also want to fastforward/backward in a video. However, there is no HID_USAGE_CONSUMER_XXXX for this. I tried 0x003B:
usb_hid.sendReport16(RID_CONSUMER_CONTROL, 0x003B);
But that didnt work either.
Anyone has a tip on how to go forward/backward in a video?
Beta Was this translation helpful? Give feedback.
All reactions