Replies: 1 comment 3 replies
-
Sorry, I have even less experience than you with WebHID. However, the Pico itself should have nothing to do with it. It's just a combination CDC/HID device in this case. If WebHID is trying to send reports to the PC's OS, then the issue is between the WebHID implementation and the OS. If it's trying to receive reports, same thing (maybe check OS permissions?). |
Beta Was this translation helpful? Give feedback.
3 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'm kind of new to this topic but what I'm trying to achieve is being able to receive WebHID reports sent like
device.sendReport(ID, PACKET);
in the firmware, I spent around 2 hours looking for a solution and I'm stuck. WebHID already recognizes the device and allows me to connect to it on the site but I can't seem to send reports, failing withDOMException: Failed to write the report.
Is it even possible to do with arduino-pico?
My current code looks something like this
Beta Was this translation helpful? Give feedback.
All reactions