forked from JanStegenga/Arduino-STS-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSTSSensor.cpp
263 lines (217 loc) · 6.73 KB
/
STSSensor.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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
/*
* Copyright (c) 2017, Jan Stegenga, EVAbits BV, <[email protected]>
* Adapted from Sensirion's SHT library - see statement below.
* Only tested on STS-30
*
* Copyright (c) 2016, Sensirion AG <[email protected]>
* Copyright (c) 2015-2016, Johannes Winkelmann <[email protected]>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of the <organization> nor the
* names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*/
#include <inttypes.h>
#include <Wire.h>
#include <Arduino.h>
#include "STSSensor.h"
//
// class STSSensorDriver
//
STSSensorDriver::~STSSensorDriver()
{
}
bool STSSensorDriver::readSample()
{
return false;
}
//
// class STSI2cSensor
//
const uint8_t STSI2cSensor::CMD_SIZE = 2;
const uint8_t STSI2cSensor::EXPECTED_DATA_SIZE = 3; //two bytes + CRC
const uint8_t STSI2cSensor::MAX_I2C_READ_TRIES = 5;
bool STSI2cSensor::readFromI2c(TwoWire localWire,
uint8_t i2cAddress,
const uint8_t *i2cCommand,
uint8_t commandLength, uint8_t *data,
uint8_t dataLength)
{
localWire.beginTransmission(i2cAddress);
for (int i = 0; i < commandLength; ++i) {
if (localWire.write(i2cCommand[i]) != 1) {
return false;
}
}
if (localWire.endTransmission(false) != 0) {
return false;
}
localWire.requestFrom(i2cAddress, dataLength);
// there should be no reason for this to not be ready, since we're using clock
// stretching mode, but just in case we'll try a few times
uint8_t tries = 1;
while (localWire.available() < dataLength) {
delay(1);
if (tries++ >= MAX_I2C_READ_TRIES) {
return false;
}
}
for (int i = 0; i < dataLength; ++i) {
data[i] = localWire.read();
}
return true;
}
uint8_t STSI2cSensor::crc8(const uint8_t *data, uint8_t len)
{
// adapted from STS21 sample code from
// http://www.sensirion.com/en/products/humidity-temperature/download-center/
uint8_t crc = 0xff;
uint8_t byteCtr;
for (byteCtr = 0; byteCtr < len; ++byteCtr) {
crc ^= data[byteCtr];
for (uint8_t bit = 8; bit > 0; --bit) {
if (crc & 0x80) {
crc = (crc << 1) ^ 0x31;
} else {
crc = (crc << 1);
}
}
}
return crc;
}
bool STSI2cSensor::readSample()
{
uint8_t data[EXPECTED_DATA_SIZE];
uint8_t cmd[CMD_SIZE];
cmd[0] = mI2cCommand >> 8;
cmd[1] = mI2cCommand & 0xff;
if (!readFromI2c(mI2cWire, mI2cAddress, cmd, CMD_SIZE, data,
EXPECTED_DATA_SIZE)) {
return false;
}
// -- Important: assuming each 2 byte of data is followed by 1 byte of CRC
// check CRC for T
if (crc8(&data[0], 2) != data[2] ) {
return false;
}
// convert to Temperature
uint16_t val;
val = (data[0] << 8) + data[1];
mTemperature = mA + mB * (val / mC);
return true;
}
//
// class STS3xSensor
//
class STS3xSensor : public STSI2cSensor
{
private:
static const uint16_t STS3X_ACCURACY_HIGH = 0x2c06;
static const uint16_t STS3X_ACCURACY_MEDIUM = 0x2c0d;
static const uint16_t STS3X_ACCURACY_LOW = 0x2c10;
public:
static const uint8_t STS3X_I2C_ADDRESS_44 = 0x4A;
static const uint8_t STS3X_I2C_ADDRESS_45 = 0x4B;
STS3xSensor(TwoWire i2cWire, uint8_t i2cAddress = STS3X_I2C_ADDRESS_44)
: STSI2cSensor( i2cWire, i2cAddress, STS3X_ACCURACY_HIGH,
-45, 175, 65535) //100, 65535
{
}
virtual bool setAccuracy(STSSensor::STSAccuracy newAccuracy)
{
switch (newAccuracy) {
case STSSensor::STS_ACCURACY_HIGH:
mI2cCommand = STS3X_ACCURACY_HIGH;
break;
case STSSensor::STS_ACCURACY_MEDIUM:
mI2cCommand = STS3X_ACCURACY_MEDIUM;
break;
case STSSensor::STS_ACCURACY_LOW:
mI2cCommand = STS3X_ACCURACY_LOW;
break;
default:
return false;
}
return true;
}
};
//
// class STSSensor
//
const STSSensor::STSSensorType STSSensor::AUTO_DETECT_SENSORS[] = {
STS3X,
STS3X_ALT
};
const float STSSensor::TEMPERATURE_INVALID = NAN;
bool STSSensor::init( TwoWire i2cWire )
{
mI2cWire = i2cWire;
if (mSensor != NULL) {
cleanup();
}
switch(mSensorType) {
case STS3X:
mSensor = new STS3xSensor( i2cWire );
break;
case STS3X_ALT:
mSensor = new STS3xSensor( i2cWire, STS3xSensor::STS3X_I2C_ADDRESS_45);
break;
case AUTO_DETECT:
{
bool detected = false;
for (unsigned int i = 0;
i < sizeof(AUTO_DETECT_SENSORS) / sizeof(AUTO_DETECT_SENSORS[0]);
++i) {
mSensorType = AUTO_DETECT_SENSORS[i];
if (init(i2cWire) && readSample()) {
detected = true;
break;
}
}
if (!detected) {
cleanup();
}
break;
}
}
return (mSensor != NULL);
}
bool STSSensor::readSample()
{
if (!mSensor || !mSensor->readSample())
return false;
mTemperature = mSensor->mTemperature;
return true;
}
bool STSSensor::setAccuracy(STSAccuracy newAccuracy)
{
if (!mSensor)
return false;
return mSensor->setAccuracy(newAccuracy);
}
void STSSensor::cleanup()
{
if (mSensor) {
delete mSensor;
mSensor = NULL;
}
}