How to you send a serial print to a cloud service?
Example of code: Serial.println("WATER LEVEL - HIGH");
Im using "Tago.io" as my could service
How to you send a serial print to a cloud service?
Example of code: Serial.println("WATER LEVEL - HIGH");
Im using "Tago.io" as my could service
yeah but the data being send are digits, im wondering how to send letters or words
(deleted)
Anyone know how to have a serial print be able to be sent to a cloud database from arduino code?
Example: Serial.println("WATER LEVEL - HIGH");
Serial.print() just sends the data to the serial port on the arduino. You could have that serial port connected to your PC to read that data and then send it along to your cloud database.
You could also get an arduino that has built in wi-fi and connect to your wi-fi (if you have it) and connect to your cloud database
You could also get an ethernet shield for your arduino and connect it to your lan which would enable it to connect to your cloud database
depending on what this "cloud database" actually is, you could google how to connect to that using arduino and probably find lots of examples.