Can the Arduino MKR WiFi 1010 board be connected to a Droplet? Do you have specific instructions to upload this? Thanks.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Enter your email to get $200 in credit for your first 60 days with DigitalOcean.
New accounts only. By submitting your email you agree to our Privacy Policy.
Hi there,
I believe that this is technically doable but you will have to up a service on the Droplet that will communicate with the Arduino.
This could be an HTTP server, an MQTT broker, or any other type of server that can communicate over the network. You would usually code this using a language like Python, Node.js, etc.
Then on the Arduino side, you’ll need to write code that communicates with the service you’ve set up on the Droplet. If you’re using HTTP, you can utilize the WiFiNINA library to create HTTP requests:
After you’ve written your Arduino app, you can setup your Arduino IDE to upload it to the MKR WiFi 1010 board.
I don’t think that there is an explicit tutorial on DiogitalOcean on how to set all that up, but feel free to share more details on what your end goal is and I’ll be happy to try and advise you further.
Best,
Bobby