-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathds18b20-photon.ino
71 lines (64 loc) · 2.03 KB
/
ds18b20-photon.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
#include "DS18B20/Particle-OneWire.h" // load the OneWire library
#include "DS18B20/DS18B20.h" // load the DS18B20 libarary
DS18B20 ds18b20 = DS18B20(D2); //Sets Pin D2 for Water Temp Sensor, why we used D2
int led = D7; // no obvious reason why that's here. Useful for testing as it's on-board.
char szInfo[64];
float pubTemp;
double celsius; //
double fahrenheit;
unsigned int Metric_Publish_Rate = 30000;
unsigned int MetricnextPublishTime;
int DS18B20nextSampleTime;
int DS18B20_SAMPLE_INTERVAL = 2500;
int dsAttempts = 0;
void setup() {
Time.zone(-5);
Particle.syncTime();
pinMode(D2, INPUT);
// Exposes the fahrenheit variable to the cloud as tempHotWater.
Particle.variable("tempHotWater", &fahrenheit, DOUBLE);
Serial.begin(115200);
}
void loop() {
if (millis() > DS18B20nextSampleTime){
getTemp();
}
if (millis() > MetricnextPublishTime){
Serial.println("Publishing now.");
publishData();
}
}
// Function that will SSE publish to the cloud
void publishData(){
if(!ds18b20.crcCheck()){
return;
}
sprintf(szInfo, "%2.2f", fahrenheit);
// publish a private event with name "dsTmp" and data "szInfo"
Particle.publish("dsTmp", szInfo, PRIVATE);
MetricnextPublishTime = millis() + Metric_Publish_Rate;
}
// This is what gets the temperature from the sensor.
void getTemp(){
if(!ds18b20.search()){
ds18b20.resetsearch();
celsius = ds18b20.getTemperature();
Serial.println(celsius);
while (!ds18b20.crcCheck() && dsAttempts < 4){
Serial.println("Caught bad value.");
dsAttempts++;
Serial.print("Attempts to Read: ");
Serial.println(dsAttempts);
if (dsAttempts == 3){
delay(1000);
}
ds18b20.resetsearch();
celsius = ds18b20.getTemperature(); // gets temperature in Celcius
continue;
}
dsAttempts = 0;
fahrenheit = ds18b20.convertToFahrenheit(celsius); // converts to Fahrenheit
DS18B20nextSampleTime = millis() + DS18B20_SAMPLE_INTERVAL;
Serial.println(fahrenheit);
}
}