Hi, i am working on a project for a prototype right now and it’s getting rather complex. I wanted to know if there is anyway possible to export my data via the web, I am are using the mega 2560 right now but also have an MKR 1010 And would like to know if there’s any possibility to connect these two and send the data to a Web server for example the one from Arduino cloud. i have already been looking for examples on the net, but nothing is really suitable.
I am still new to programming with arduino, so if anyone has an article or something that can help, I would really appreciate it!
You can use the Mega 2560 for sensor or data collection tasks and then send this data to the MKR 1010. To establish communication between the two boards, you can use UART serial communication (SoftwareSerial on the Mega) or I2C.
1 Like
Be aware that the MKR is a 3.3V device and the Mega a 5V device. You will need a level conversion and using a UART (Serial) is probably the easiest for that; a voltage divider network (2 resistors) between e.g. TX1 of the Mega and RX of the MKR.
1 Like
This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.