-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDS18B20Sensor.h
181 lines (169 loc) · 4.31 KB
/
DS18B20Sensor.h
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
#pragma once
/*
ASensor - Sensor library. Can be used standalone or in conjunction with AWind library
Copyright (C) 2015-2018 Andrei Degtiarev. All right reserved
You can always find the latest version of the library at
https://github.com/AndreiDegtiarev/ASensor
This library is free software; you can redistribute it and/or
modify it under the terms of the MIT license.
Please see the included documents for further information.
*/
///DS18B20-Temperature sensor. To use this sensor OneWire library has to be installed from http://www.pjrc.com/teensy/td_libs_OneWire.html. Details to member functions see ISensor class documentation
class DS18B20Sensor : public ISensor
{
#ifndef DEMO_SENSORS
OneWire *ds;
#endif
int _wire_index;
public:
DS18B20Sensor(int port,int wire_index)
{
#ifndef DEMO_SENSORS
ds=new OneWire(port);
#endif
_wire_index=wire_index;
}
virtual const __FlashStringHelper* Name()
{
return F("DS18B20");
}
virtual float LowMeasurementLimit()
{
return -50;
}
virtual float HighMeasurementLimit()
{
return 50;
}
virtual int Precission()
{
return 1;
}
virtual bool Measure(float & ret_data)
{
#ifdef DEMO_SENSORS
ret_data=(float)rand()/RAND_MAX*5+15;
return true;
#else
byte i;
byte present = 0;
byte type_s=0;
byte data[12];
byte addr[8];
//byte addr[] = {0x28,0xB2,0x6F,0xA4,0x5,0x0,0x0,0x9B};
float celsius, fahrenheit;
bool isError=true;
for(int i=0;i<_wire_index;i++)
{
for(int j=0;j<3;j++)
{
isError=!ds->search(addr);
if(isError)
{
Serial.print(F("No more addresses:"));
Serial.println(j);
delay(250);
}
else
{
/*Serial.print("found ");
Serial.print(i);
Serial.println(_wire_index);*/
break;
}
}
if(isError)
break;
}
if(isError)
{
ds->reset_search();
return false;
}
/*Serial.print("ROM =");
for( i = 0; i < 8; i++) {
Serial.write(' ');
Serial.print(addr[i], HEX);
}
Serial.println("");*/
if (OneWire::crc8(addr, 7) != addr[7]) {
Serial.println(F("CRC is not valid!"));
return false;
}
//Serial.println();
// the first ROM byte indicates which chip
switch (addr[0]) {
case 0x10:
Serial.println(F(" Chip = DS18S20")); // or old DS1820
type_s = 1;
break;
case 0x28:
//Serial.println(" Chip = DS18B20");
type_s = 0;
break;
case 0x22:
Serial.println(F(" Chip = DS1822"));
type_s = 0;
break;
default:
Serial.println(F("Device is not a DS18x20 family device."));
return false;
}
ds->reset();
ds->select(addr);
ds->write(0x44, 1); // start conversion, with parasite power on at the end
//delay(1000); // maybe 750ms is enough, maybe not
// we might do a ds.depower() here, but the reset will take care of it.
present = ds->reset();
ds->select(addr);
ds->write(0xBE); // Read Scratchpad
/*Serial.print(" Data = ");
Serial.print(present, HEX);
Serial.print(" ");*/
for ( i = 0; i < 9; i++) { // we need 9 bytes
data[i] = ds->read();
//Serial.print(data[i], HEX);
//Serial.print(" ");
}
/*Serial.print(" CRC=");
Serial.print(OneWire::crc8(data, 8), HEX);
Serial.println();*/
// Convert the data to actual temperature
// because the result is a 16 bit signed integer, it should
// be stored to an "int16_t" type, which is always 16 bits
// even when compiled on a 32 bit processor.
int16_t raw = (data[1] << 8) | data[0];
if (type_s) {
raw = raw << 3; // 9 bit resolution default
if (data[7] == 0x10) {
// "count remain" gives full 12 bit resolution
raw = (raw & 0xFFF0) + 12 - data[6];
}
} else {
byte cfg = (data[4] & 0x60);
// at lower res, the low bits are undefined, so let's zero them
if (cfg == 0x00) raw = raw & ~7; // 9 bit resolution, 93.75 ms
else if (cfg == 0x20) raw = raw & ~3; // 10 bit res, 187.5 ms
else if (cfg == 0x40) raw = raw & ~1; // 11 bit res, 375 ms
//// default is 12 bit resolution, 750 ms conversion time
}
celsius = (float)raw / 16.0;
fahrenheit = celsius * 1.8 + 32.0;
/*Serial.print(" Temperature = ");
Serial.print(celsius);
Serial.print(" Celsius, ");
Serial.print(fahrenheit);
Serial.println(" Fahrenheit");*/
ds->reset_search();
if(!isnan(celsius))
{
ret_data=celsius;
#ifdef DEBUG_AWIND
out<<F("DS18B20: ")<<ret_data<<endln;
#endif
return true;
}
#endif
return false;
}
};