-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy patharduino-webserver-temperature-sensor.ino
404 lines (323 loc) · 10.3 KB
/
arduino-webserver-temperature-sensor.ino
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
/*
Arduino Web Server Temperature Sensor
=====================================
A web server that will read the values of a 1-Wire temperature sensor and output
XML with temperature in Celcius and Fahrenheit.
- Adapted by Gordon Turner from code by David A. Mellis and Tom Igoe.
- Ethernet shield attached to pins 10, 11, 12, 13
- 1-Wire temperature sensor attached to digital pin 3.
- Requires 1-wire Ardunio Library and Dallas Temperature Control Arduino Library.
- Included in Libraries folder or online:
http://www.pjrc.com/teensy/arduino_libraries/OneWire.zip
http://milesburton.com/Dallas_Temperature_Control_Library#Latest
- Sample output XML:
<?xml version=\"1.0\"?>
<xml>
<temperature>
<celcius>0</celcius>
<fahrenheit>32</fahrenheit>
</temperature>
</xml>
- Sample output XML with error:
<?xml version=\"1.0\"?>
<xml>
<temperature>
ERROR
</temperature>
</xml>
*/
#include <SPI.h>
#include <Ethernet.h>
#include <OneWire.h>
#include <DallasTemperature.h>
// 1-Wire data wire is attached to ditigal pin 3.
#define ONE_WIRE_BUS 3
// Intialize an 1-Wire instance.
OneWire oneWire(ONE_WIRE_BUS);
// Pass 1-Wire reference to Dallas Temperature library.
DallasTemperature sensors(&oneWire);
// 1-Wire sensor address, use OneWireAddressFinder to find.
DeviceAddress outsideThermometer = { 0x28, 0x85, 0x95, 0x3A, 0x04, 0x00, 0x00, 0xB7 };
// Ethernet Shield MAC address, use value on back of shield.
byte mac[] = { 0x90, 0xA2, 0xDA, 0x0D, 0x10, 0x5A };
// IP address, will depend on your local network.
IPAddress ip(192,168,2,70);
// Initialize the Ethernet server library, use port 80 for HTTP.
EthernetServer server(80);
// String for reading from client
String request = String(100);
String parsedRequest = "";
// NOTE: Serial debugging code has been disabled.
void setup()
{
// Open Serial communications and wait for port to open.
Serial.begin(9600);
// Start the sensor library.
sensors.begin();
if( !sensors.isConnected(outsideThermometer) )
{
Serial.println("Error, no sensors found.");
}
else
{
Serial.println("Found sensor, setting up.");
}
// Set the resolution to 10 bit.
sensors.setResolution(outsideThermometer, 10);
Serial.println("Setting up Ethernet");
// Start the Ethernet connection and the server.
Ethernet.begin(mac, ip);
server.begin();
Serial.print("Server is at ");
Serial.println(Ethernet.localIP());
}
void loop()
{
// Listen for incoming clients.
EthernetClient client = server.available();
if (client)
{
Serial.println("Client connected");
// An http request ends with a blank line.
boolean currentLineIsBlank = true;
while (client.connected())
{
if (client.available())
{
char c = client.read();
// Read http request.
if (request.length() < 100)
{
request += c;
}
// 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)
{
Serial.println("Finished reading request.");
Serial.println("http request: '" + request + "'");
// Response looks like:
// GET /?format=JSONP HTTP/1.1
// Host: 192.168.2.70
// User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X
if (request.startsWith("GET /?format="))
{
parsedRequest = request.substring(request.indexOf('format=')+1, request.indexOf("HTTP")-1);
}
else if (request.startsWith("GET /metrics"))
{
parsedRequest = "prometheus";
}
Serial.println("Parsed request: '" + parsedRequest + "'");
Serial.println("Reading sensor.");
float celsius;
float fahrenheit;
String error = "";
if( sensors.isConnected(outsideThermometer) )
{
sensors.requestTemperatures();
celsius = sensors.getTempC(outsideThermometer);
fahrenheit = sensors.getTempF(outsideThermometer);
Serial.print("C: ");
Serial.println(celsius);
Serial.print("F: ");
Serial.println(fahrenheit);
}
else
{
error = "Error reading sensors";
Serial.println(error);
}
if( parsedRequest == "XML" )
{
sendXmlResponse(client, celsius, fahrenheit, error);
}
else if( parsedRequest.startsWith("JSONP") )
{
// Parse callback arguement.
String callback = parsedRequest.substring(parsedRequest.indexOf('callback=')+1, parsedRequest.length());
callback = callback.substring(0, callback.indexOf('&'));
Serial.println("Using callback: " + callback);
sendJsonpResponse(client, celsius, fahrenheit, error, callback);
}
else if( parsedRequest == "prometheus" )
{
sendPrometheusResponse(client, celsius, error);
}
else
{
// Default to JSON.
sendJsonResponse(client, celsius, fahrenheit, error);
}
break;
}
if (c == '\n')
{
// Character is a new line.
currentLineIsBlank = true;
}
else if (c != '\r')
{
// Character is not a new line or a carriage return.
currentLineIsBlank = false;
}
}
}
// Give the web browser time to receive the data.
delay(1);
// Close the connection:
client.stop();
Serial.println("Client disonnected");
}
// Reset the request.
request = "";
parsedRequest = "";
}
/*
*
*/
void sendXmlResponse(EthernetClient client, float celsius, float fahrenheit, String error)
{
if(error == "")
{
Serial.println("Sending XML response.");
// Send a standard http response header.
client.println("HTTP/1.1 200 OK");
client.println("Content-Type: text/xml");
client.println("Connnection: close");
client.println();
// Send XML body.
client.println("<?xml version=\"1.0\"?>");
client.println("<xml>");
client.print("<temperature>");
client.print("<celcius>");
client.print(celsius);
client.print("</celcius>");
client.print("<fahrenheit>");
client.print(fahrenheit);
client.print("</fahrenheit>");
client.println("</temperature>");
client.println("</xml>");
}
else
{
Serial.println("Sending XML error response.");
// Send a standard http response header.
client.println("HTTP/1.1 200 OK");
client.println("Content-Type: text/xml");
client.println("Connnection: close");
client.println();
// Send XML body.
client.println("<?xml version=\"1.0\"?>");
client.println("<xml>");
client.print("<temperature>");
client.print(error);
client.println("</temperature>");
client.println("</xml>");
}
}
/*
*
*/
void sendJsonpResponse(EthernetClient client, float celsius, float fahrenheit, String error, String callback)
{
if(error == "")
{
Serial.println("Sending JSONP response.");
// Send a standard http response header.
client.println("HTTP/1.1 200 OK");
client.println("Content-Type: application/json");
client.println("Connnection: close");
client.println();
// Send JSONP body.
client.println(callback + "({");
client.println(" \"temperature\": {");
client.print(" \"celcius\": ");
client.print(celsius);
client.println(",");
client.print(" \"fahrenheit\": ");
client.println(fahrenheit);
client.println(" }");
client.println("});");
}
else
{
Serial.println("Sending JSONP error response.");
// Send a standard http response header.
client.println("HTTP/1.1 200 OK");
client.println("Content-Type: application/json");
client.println("Connnection: close");
client.println();
// Send JSONP body.
client.println(callback + "({");
client.println(" \"error\": \"" + error + "\"");
client.println("})");
}
}
/*
*
*/
void sendPrometheusResponse(EthernetClient client, float celsius, String error)
{
if(error == "")
{
Serial.println("Sending Prometheus response.");
// Send a standard http response header.
client.println("HTTP/1.1 200 OK");
// Content-Type from https://github.com/siimon/prom-client/blob/master/lib/registry.js
// 'text/plain; version=0.0.4; charset=utf-8'
client.println("Content-Type: text/plain; version=0.0.4; charset=utf-8");
client.println("Connnection: close");
client.println();
// Send Prometheus body.
client.print("arduino_temperature_probe ");
client.print(celsius);
}
else
{
Serial.println("Sending Prometheus error response.");
// Send a standard http response header.
client.println("HTTP/1.1 500 Internal Server Error");
client.println("Connnection: close");
client.println();
}
}
/*
*
*/
void sendJsonResponse(EthernetClient client, float celsius, float fahrenheit, String error)
{
if(error == "")
{
Serial.println("Sending JSON response.");
// Send a standard http response header.
client.println("HTTP/1.1 200 OK");
client.println("Content-Type: application/json");
client.println("Connnection: close");
client.println();
// Send JSON body.
client.println("{");
client.println(" \"temperature\": {");
client.print(" \"celcius\": ");
client.print(celsius);
client.println(",");
client.print(" \"fahrenheit\": ");
client.println(fahrenheit);
client.println(" }");
client.println("}");
}
else
{
Serial.println("Sending JSON error response.");
// Send a standard http response header.
client.println("HTTP/1.1 200 OK");
client.println("Content-Type: application/json");
client.println("Connnection: close");
client.println();
// Send JSON body.
client.println("{");
client.println(" \"error\": \"" + error + "\"");
client.println("}");
}
}