You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have an app (link here) using webusb that works well on PC. I'm able to detect an Arduino board and connect to it.
However when I try to use the same app on an Android phone (Android version 10), I can detect the device but nothing happens when I click the connect button.
1. Do you guys know how to make a webusb app work on Android?
2. Maybe there are some permissions/settings to enable on the phone?
Kind regards,
The text was updated successfully, but these errors were encountered:
Which board are you using? There's a known issue (sorry, I can't find the link right now) where SAMD boards don't respond to descriptor requests properly and that breaks connections on Android.
On SAMD-based boards it appears that the entire control transfer reply
needs to be passed to USB_SendControl() at once. The original code took
advantage of making multiple calls to construct replies from smaller
chunks. This has been rewritten to construct and send the entire
responce at once.
Fixes#79.
Hi there,
I have an app (link here) using webusb that works well on PC. I'm able to detect an Arduino board and connect to it.
However when I try to use the same app on an Android phone (Android version 10), I can detect the device but nothing happens when I click the connect button.
1. Do you guys know how to make a webusb app work on Android?
2. Maybe there are some permissions/settings to enable on the phone?
Kind regards,
The text was updated successfully, but these errors were encountered: