hi
I develop www.dataino.it for manage data from arduino and create graph and make web interface for control arduino output .
now i have this problem what is the best way for send data to arduino ?
in my project i Make a HTTP request:
client.println("GET /~dataino/api/read.php?api-KEY=cl38-hi8j-4lmG-19K4-JNm2&bedroom=i&kitchen=i
HTTP/1.1");
client.println("Host: www.dataino.it");
client.println("User-Agent: Arduino");
client.println("Connection: close\r\n");
client.println();
and a php page Response:
#bedroom;0;kitchen;82;
"#" is used for recognize data and ";" for split data
is this the best way?
thx
dataino-doc.pdf (1.12 MB)
control_bit_one.ino (5.05 KB)