-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproofing-box-arduino.ino
63 lines (49 loc) · 1.19 KB
/
proofing-box-arduino.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
// Costanstans
const int tempSensor = A5;
const int resistor = 11;
// Variables
double curTemp = 0.0;
double targetTemp = 26.0;
void setup()
{
// Setup debug serial
Serial.begin(9600);
// Setup I/Os
pinMode(tempSensor, INPUT);
pinMode(resistor, OUTPUT);
}
// read the current temperature from LM32
double readTermperature() {
double vout;
// set the reference to INTERNAL (1.1V) in order to have a better definition
analogReference(INTERNAL);
// a "fake" read is needed
analogRead(0);
delay(10);
// sadly the first read is less accurate... use the second one
vout = analogRead(tempSensor);
vout = analogRead(tempSensor);
Serial.print("sample:");
Serial.print(vout);
Serial.print(",");
vout = vout * 1.129 / 1023.0; // little bit tuned
Serial.print("v:");
Serial.print(vout);
Serial.print(",");
// Returning value in Degree Celsius
vout = vout * 100;
Serial.print("t:");
Serial.println (curTemp);
return vout;
}
void loop()
{
// read temperature
curTemp = readTermperature();
// if the temperature is low, switch on the heat source
if (curTemp < targetTemp)
digitalWrite(resistor, HIGH);
else
digitalWrite(resistor, LOW);
delay(1000);
}