This repository has been archived by the owner on Apr 10, 2024. It is now read-only.
forked from winkj/sensirion-ess
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsensirion_ess.h
126 lines (98 loc) · 4.05 KB
/
sensirion_ess.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
/*
* Copyright (c) 2017-2018, Sensirion AG
* 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 Sensirion AG 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 THE COPYRIGHT HOLDER OR CONTRIBUTORS 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.
*/
#ifndef SENSIRION_ESS
#define SENSIRION_ESS
#include <stdint.h>
class SensirionESSLeds
{
public:
SensirionESSLeds(int redLedPin, int yellowLedPin, int greenLedPin);
void setLedRYG(int r, int y, int g);
const static int SGP_RED_THRESHOLD = 150;
const static int SGP_YEL_THRESHOLD = 125;
const static int ARDUINO_UNO_LED_RED_PIN = 9;
const static int ARDUINO_UNO_LED_YEL_PIN = 10;
const static int ARDUINO_UNO_LED_GRN_PIN = 11;
private:
int mRedLedPin = -1;
int mYellowLedPin = -1;
int mGreenLedPin = -1;
};
class SensirionESS
{
public:
SensirionESS();
int initSensors();
int measureRHT();
int measureIAQ();
bool isInitialized();
float getTemperature() const;
float getHumidity() const;
int getProductType() const;
int getFeatureSetVersion() const;
uint16_t getTVOC() const;
uint16_t getECO2() const; // SGP30 only
const char* getError() const;
int remainingWaitTimeMS();
const static int PRODUCT_TYPE_SGP30 = 0;
const static int PRODUCT_TYPE_SGPC3 = 1;
private:
static int8_t i2c_write(uint8_t addr, const uint8_t* data, uint16_t count);
static int8_t i2c_read(uint8_t addr, uint8_t* data, uint16_t count);
static uint8_t crc8(const uint8_t* data, uint8_t len);
inline void setError(const char* error);
int readFeatureSetInt();
int measureRHTInt();
int initSGP();
const static int ERROR_BUF_LENGTH = 255;
const static int CMD_LENGTH = 2;
const static int SHT_DATA_LENGTH = 6;
const static int SHT_I2C_ADDR = 0x70;
const static int SHT_MEASURE_DELAY = 15; // SHTC1 worst case
const static int SGP30_DATA_LENGTH = 6;
const static int SGPC3_DATA_LENGTH = 3;
const static int SGP_I2C_ADDR = 0x58;
const static int SGP_MEASURE_DELAY = 50;
const static int SGPC3_INTERMEASURE_DELAY = 2000;
const static int SGP30_INTERMEASURE_DELAY = 1000;
int SGP_INTERMEASURE_DELAY = SGP30_INTERMEASURE_DELAY;
int SGP_DATA_LENGTH = SGP30_DATA_LENGTH;
float mTemperature = -250;
float mHumidity = -1;
uint16_t mTVOC = 0;
uint16_t mECO2 = 0;
int mProductType = 0;
int mFeatureSetVersion = 0;
unsigned long mSGPMeasurementTimestamp = 0;
bool mInitialized = false;
char mErrorBuf[ERROR_BUF_LENGTH];
uint8_t mDataBuf[SHT_DATA_LENGTH]; // max(SHT_DATA_LENGTH, SGP_DATA_LENGTH)
};
#endif /* SENSIRION_ESS */