-
-
Save pklaus/3839339 to your computer and use it in GitHub Desktop.
Arduino Server for JSON-P pin values
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Web Server returning data as JSON-P | |
A simple web server that returns the value of the analog input | |
pins as a JSON-P object, using an Arduino Wiznet Ethernet shield. | |
Circuit: | |
* Ethernet shield attached to pins 10, 11, 12, 13 (standard configuration) | |
* Analog inputs attached to pins A0 through A5 (optional) | |
* Example of reading LM35 on pin A0: | |
LM35 pins: {1: 5V, 2: A0, 3: gnd} | |
created 18 Dec 2009 | |
by David A. Mellis | |
modified 19 Mar 2012 | |
by Sam Fentress | |
modified 5 Oct 2012 | |
by Philipp Klaus | |
*/ | |
#include <SPI.h> | |
#include <Ethernet.h> | |
// Enter a MAC address. | |
byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED }; | |
// The IP address can be fetched via DHCP or set manually | |
//IPAddress ip(169,254,1,1); // only need this if you set your IP manually | |
char callback[27] = "arduinoEthernetComCallback"; | |
// Initialize the EthernetServer with the port you want to use | |
// (Port 80 is default for HTTP): | |
EthernetServer server(80); | |
void setup() | |
{ | |
// Start the Ethernet connection and the server: | |
Ethernet.begin(mac); // If you want to get your IP via DHCP | |
//Ethernet.begin(mac, ip); // If you want to set your IP manually | |
server.begin(); | |
} | |
void loop() | |
{ | |
// listen for incoming clients | |
EthernetClient client = server.available(); | |
if (client) { | |
// an http request ends with a blank line | |
boolean currentLineIsBlank = true; | |
while (client.connected()) { | |
if (client.available()) { | |
char c = client.read(); | |
// if you've gotten to the end of the line (received a newline | |
// character) and the line is blank, the http request has ended, | |
// so you can send a reply | |
if (c == '\n' && currentLineIsBlank) { | |
// send a standard http response header | |
client.println("HTTP/1.1 200 OK"); | |
client.println("Content-Type: application/json"); | |
client.println(); | |
// output the value of each analog input pin as a json-p object | |
client.print(callback); | |
client.print("('{"); | |
for (int analogChannel = 0; analogChannel < 6; analogChannel++) { | |
client.print("\"A"); | |
client.print(analogChannel); | |
client.print("\": "); | |
client.print(analogRead(analogChannel)); | |
if (analogChannel != 5) { | |
client.print(","); | |
} | |
} | |
client.println("}')"); | |
break; | |
} | |
if (c == '\n') { | |
// you're starting a new line | |
currentLineIsBlank = true; | |
} | |
else if (c != '\r') { | |
// you've gotten a character on the current line | |
currentLineIsBlank = false; | |
} | |
} | |
} | |
// give the web browser time to receive the data | |
delay(2); | |
// close the connection: | |
client.stop(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment