practicalarduino / SHT1x

Arduino library to support SHT1x-series (SHT10, SHT11, SHT15) temperature / humidity sensors from Sensirion

This URL has Read+Write access

SHT1x / SHT1x.cpp
100644 239 lines (192 sloc) 5.749 kb
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
237
238
239
/**
* SHT1x Library
*
* Copyright 2009 Jonathan Oxer <jon@oxer.com.au> / <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).
*/
#include "WProgram.h"
#include "SHT1x.h"
 
SHT1x::SHT1x(int dataPin, int clockPin)
{
  _dataPin = dataPin;
  _clockPin = clockPin;
}
 
 
/* ================ Public methods ================ */
 
/**
* Reads the current temperature in degrees Celsius
*/
float SHT1x::readTemperatureC()
{
  int _val; // Raw value returned from sensor
  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
 
  // Fetch raw value
  _val = readTemperatureRaw();
 
  // Convert raw value to degrees Celsius
  _temperature = (_val * D2) + D1;
 
  return (_temperature);
}
 
/**
* Reads the current temperature in degrees Fahrenheit
*/
float SHT1x::readTemperatureF()
{
  int _val; // Raw value returned from sensor
  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
 
  // Fetch raw value
  _val = readTemperatureRaw();
 
  // Convert raw value to degrees Fahrenheit
  _temperature = (_val * D2) + D1;
 
  return (_temperature);
}
 
/**
* Reads current temperature-corrected relative humidity
*/
float SHT1x::readHumidity()
{
  int _val; // Raw humidity value returned from sensor
  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
 
  // Command to send to the SHT1x to request humidity
  int _gHumidCmd = 0b00000101;
 
  // Fetch the value from the sensor
  sendCommandSHT(_gHumidCmd, _dataPin, _clockPin);
  waitForResultSHT(_dataPin);
  _val = getData16SHT(_dataPin, _clockPin);
  skipCrcSHT(_dataPin, _clockPin);
 
  // Apply linear conversion to raw value
  _linearHumidity = C1 + C2 * _val + C3 * _val * _val;
 
  // Get current temperature for humidity correction
  _temperature = readTemperatureC();
 
  // Correct humidity value for current temperature
  _correctedHumidity = _temperature * (T1 + T2 * _val) + _linearHumidity;
 
  return (_correctedHumidity);
}
 
 
/* ================ Private methods ================ */
 
/**
* Reads the current raw temperature value
*/
float SHT1x::readTemperatureRaw()
{
  int _val;
 
  // Command to send to the SHT1x to request Temperature
  int _gTempCmd = 0b00000011;
 
  sendCommandSHT(_gTempCmd, _dataPin, _clockPin);
  waitForResultSHT(_dataPin);
  _val = getData16SHT(_dataPin, _clockPin);
  skipCrcSHT(_dataPin, _clockPin);
 
  return (_val);
}
 
/**
*/
int SHT1x::shiftIn(int _dataPin, int _clockPin, int _numBits)
{
  int ret = 0;
  int i;
 
  for (i=0; i<_numBits; ++i)
  {
     digitalWrite(_clockPin, HIGH);
     delay(10); // I don't know why I need this, but without it I don't get my 8 lsb of temp
     ret = ret*2 + digitalRead(_dataPin);
     digitalWrite(_clockPin, LOW);
  }
 
  return(ret);
}
 
/**
*/
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");
  }
}
 
/**
*/
void SHT1x::waitForResultSHT(int _dataPin)
{
  int i;
  int ack;
 
  pinMode(_dataPin, INPUT);
 
  for(i= 0; i < 100; ++i)
  {
    delay(10);
    ack = digitalRead(_dataPin);
 
    if (ack == LOW) {
      break;
    }
  }
 
  if (ack == HIGH) {
    //Serial.println("Ack Error 2"); // Can't do serial stuff here, need another way of reporting errors
  }
}
 
/**
*/
int SHT1x::getData16SHT(int _dataPin, int _clockPin)
{
  int val;
 
  // Get the most significant bits
  pinMode(_dataPin, INPUT);
  pinMode(_clockPin, OUTPUT);
  val = shiftIn(_dataPin, _clockPin, 8);
  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, 8);
 
  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);
}