This repository has been archived by the owner on Apr 19, 2023. It is now read-only.
forked from practicalarduino/SHT1x
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SHT1x.cpp
236 lines (203 loc) · 5.76 KB
/
SHT1x.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
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
/**
* SHT1x Library
*
* Copyright 2009 Jonathan Oxer <[email protected]> / <www.practicalarduino.com>
* Based on previous work by:
* Maurice Ribble: <www.glacialwanderer.com/hobbyrobotics/?p=5>
* Wayne ?: <ragingreality.blogspot.com/2008/01/ardunio-and-sht15.html>
*
* Manages communication with SHT1x series (SHT10, SHT11, SHT15)
* temperature / humidity sensors from Sensirion (www.sensirion.com).
*/
#if (ARDUINO >= 100)
#include <Arduino.h>
#else
#include <WProgram.h>
#endif
#include "SHT1x.h"
SHT1x::SHT1x(int dataPin, int clockPin)
{
_dataPin = dataPin;
_clockPin = clockPin;
}
SHT1x::SHT1x(int dataPin, int clockPin, int powerPin)
{
_dataPin = dataPin;
_clockPin = clockPin;
pinMode(powerPin, OUTPUT);
digitalWrite(powerPin, HIGH);
state=0;
}
SHT1x::SHT1x(int dataPin, int clockPin, int powerPin, int gndPin)
{
_dataPin = dataPin;
_clockPin = clockPin;
pinMode(powerPin, OUTPUT);
pinMode(gndPin, OUTPUT);
digitalWrite(powerPin, HIGH);
digitalWrite(gndPin, LOW);
state=0;
}
/* ================ Public methods ================ */
/**
* Reads current temperature & temperature-corrected relative humidity
*/
void SHT1x::update()
{
const int _gHumidCmd = 0b00000101;// Command to send to the SHT1x to request humidity
const int _gTempCmd = 0b00000011;// Command to send to the SHT1x to request Temperature
switch (state){
case 0:
sendCommandSHT(_gTempCmd, _dataPin, _clockPin);
state=1;
break;
case 1:
// Wait Conversion
if(waitForResultSHT(_dataPin))state=2;
else state=1;
break;
case 2:
// Get temperature value
rawTemp = getData16SHT(_dataPin, _clockPin);
skipCrcSHT(_dataPin, _clockPin);
state=3;
break;
case 3:
sendCommandSHT(_gHumidCmd, _dataPin, _clockPin);
state=4;
break;
case 4:
// Wait Conversion
if(waitForResultSHT(_dataPin))state=5;
else state = 4;
break;
case 5:
// Get relative humidity value
rawHum = getData16SHT(_dataPin, _clockPin);
skipCrcSHT(_dataPin, _clockPin);
state=0;
break;
}
return ;
}
/**
* Reads the current temperature in degrees Celsius
*/
float SHT1x::readTemperatureC()
{
float _temperature; // Temperature derived from raw value
// Conversion coefficients from SHT15 datasheet
const float D1 = -40.0; // for 14 Bit @ 5V
const float D2 = 0.01; // for 14 Bit DEGC
// Convert raw value to degrees Celsius
_temperature = (rawTemp * D2) + D1;
return (_temperature);
}
/**
* Reads the current temperature in degrees Fahrenheit
*/
float SHT1x::readTemperatureF()
{
float _temperature; // Temperature derived from raw value
// Conversion coefficients from SHT15 datasheet
const float D1 = -40.0; // for 14 Bit @ 5V
const float D2 = 0.018; // for 14 Bit DEGF
// Convert raw value to degrees Fahrenheit
_temperature = (rawTemp * D2) + D1;
return (_temperature);
}
/**
* Reads current temperature-corrected relative humidity
*/
float SHT1x::readHumidity()
{
float _linearHumidity; // Humidity with linear correction applied
float _correctedHumidity; // Temperature-corrected humidity
float _temperature; // Raw temperature value
// Conversion coefficients from SHT15 datasheet
const float C1 = -4.0; // for 12 Bit
const float C2 = 0.0405; // for 12 Bit
const float C3 = -0.0000028; // for 12 Bit
const float T1 = 0.01; // for 14 Bit @ 5V
const float T2 = 0.00008; // for 14 Bit @ 5V
// Apply linear conversion to raw value
_linearHumidity = C1 + C2 * rawHum + C3 * rawHum * rawHum;
// Get current temperature for humidity correction
_temperature = readTemperatureC();
// Correct humidity value for current temperature
_correctedHumidity = (_temperature - 25.0 ) * (T1 + T2 * rawHum) + _linearHumidity;
return (_correctedHumidity);
}
/* ================ Private methods ================ */
/**
*/
void SHT1x::sendCommandSHT(int _command, int _dataPin, int _clockPin)
{
int ack;
// Transmission Start
pinMode(_dataPin, OUTPUT);
pinMode(_clockPin, OUTPUT);
digitalWrite(_dataPin, HIGH);
digitalWrite(_clockPin, HIGH);
digitalWrite(_dataPin, LOW);
digitalWrite(_clockPin, LOW);
digitalWrite(_clockPin, HIGH);
digitalWrite(_dataPin, HIGH);
digitalWrite(_clockPin, LOW);
// The command (3 msb are address and must be 000, and last 5 bits are command)
shiftOut(_dataPin, _clockPin, MSBFIRST, _command);
// Verify we get the correct ack
digitalWrite(_clockPin, HIGH);
pinMode(_dataPin, INPUT);
ack = digitalRead(_dataPin);
if (ack != LOW) {
//Serial.println("Ack Error 0");
}
digitalWrite(_clockPin, LOW);
ack = digitalRead(_dataPin);
if (ack != HIGH) {
//Serial.println("Ack Error 1");
}
}
/**
* waitForResultSHT(int _dataPin)
* Check if the conversion has ended in which case returns true
*/
bool SHT1x::waitForResultSHT(int _dataPin)
{
pinMode(_dataPin, INPUT);
if (digitalRead(_dataPin) == LOW) return true;
else return false;
}
/**
*/
int SHT1x::getData16SHT(int _dataPin, int _clockPin)
{
int val;
// Get the most significant bits
pinMode(_dataPin, INPUT);
pinMode(_clockPin, OUTPUT);
val = shiftIn(_dataPin, _clockPin, MSBFIRST);
val *= 256;
// Send the required ack
pinMode(_dataPin, OUTPUT);
digitalWrite(_dataPin, HIGH);
digitalWrite(_dataPin, LOW);
digitalWrite(_clockPin, HIGH);
digitalWrite(_clockPin, LOW);
// Get the least significant bits
pinMode(_dataPin, INPUT);
val |= shiftIn(_dataPin, _clockPin, MSBFIRST);
return val;
}
/**
*/
void SHT1x::skipCrcSHT(int _dataPin, int _clockPin)
{
// Skip acknowledge to end trans (no CRC)
pinMode(_dataPin, OUTPUT);
pinMode(_clockPin, OUTPUT);
digitalWrite(_dataPin, HIGH);
digitalWrite(_clockPin, HIGH);
digitalWrite(_clockPin, LOW);
}