-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLM35.cpp
82 lines (68 loc) · 1.99 KB
/
LM35.cpp
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
#include "LM35.h"
LM35::LM35(int pin) : _pin(pin) {
pinMode(pin, OUTPUT);
}
LM35::~LM35(){ }
/**
* ====================================================================
* readCelsius - Convert the raw degrees Celsius
* ====================================================================
*/
// check temperature.
double LM35::readCelsius() {
int sensorValue = analogRead(_pin);
double temperature = (sensorValue * 0.48828125);
return temperature;
}
// check average temperature.
double LM35::readCelsius(int times) {
int sum = 0;
for (int i = 0; i < times; i++){
sum += analogRead(_pin);
}
double average = (sum * 0.48828125) / times;
return average;
}
/**
* ====================================================================
* readFahrenheit - Convert the raw degrees Celsius and then Fahrenheit.
* ====================================================================
*/
// check temperature.
double LM35::readFahrenheit() {
int sensorValue = analogRead(_pin);
double temperature = (sensorValue * 0.48828125);
temperature = ((temperature * 9) / 5) + 32;
return temperature;
}
// check average temperature.
double LM35::readFahrenheit(int times) {
int sum = 0;
for (int i = 0; i < times; i++){
sum += analogRead(_pin);
}
double average = (sum * 0.48828125) / times;
average = ((average * 9) / 5) + 32;
return average;
}
/**
* ====================================================================
* readKelvin - Convert the raw degrees Celsius and then Kelvin.
* ====================================================================
*/
// check temperature.
double LM35::readKelvin() {
int sensorValue = analogRead(_pin);
double temperature = (sensorValue * 0.48828125) + 273.15;
return temperature;
}
// check average temperature.
double LM35::readKelvin(int times) {
int sum = 0;
for (int i = 0; i < times; i++) {
sum += analogRead(_pin);
}
double average = (sum * 0.48828125) / times;
average = average + 273.15;
return average;
}