6 ms·
Hey! Thanks a lot for the appreciation! Yes, as we need access to the serial port to connect with the Arduino, we currently need to rely on a native app, the br
by olivierbrcknr 6y ago
Hey! Thanks a lot for the appreciation!
Yes, as we need access to the serial port to connect with the Arduino, we currently need to rely on a native app, the browser does not allow us to do so at the moment. If this would be the case in the future, we would consider this of course as well.
- VoidWhisperer 6y agoDoesn't the Arduino web IDE access the serial ports? I'm possibly missing something here but why not do it how they do it?
- olivierbrcknr 6y agoArduino requires you to install a software to bridge this serial port issue.
- onion2k 6y agoThere's an on-going origin trial of the web serial API - https://web.dev/serial/ https://web.dev/serial/ - if you can get a token you could probably run the code in a browser (specifically Chrome at the moment).
- olivierbrcknr 6y agoThank you for the tip! We will have a look at it!
- learc83 6y agoI wrote small webserver for proxying serial port requests from the browser to solve a similar problem about 10 years ago. It's not generic enough for what you're doing, but something similar would be quick to code. https://github.com/learc83/adapter https://github.com/learc83/adapter
- olivierbrcknr 6y agoThanks for sharing!