10 static const char *
const TAG =
"sgp30";
12 static const uint16_t SGP30_CMD_GET_SERIAL_ID = 0x3682;
13 static const uint16_t SGP30_CMD_GET_FEATURESET = 0x202f;
14 static const uint16_t SGP30_CMD_IAQ_INIT = 0x2003;
15 static const uint16_t SGP30_CMD_MEASURE_IAQ = 0x2008;
16 static const uint16_t SGP30_CMD_SET_ABSOLUTE_HUMIDITY = 0x2061;
17 static const uint16_t SGP30_CMD_GET_IAQ_BASELINE = 0x2015;
18 static const uint16_t SGP30_CMD_SET_IAQ_BASELINE = 0x201E;
36 ESP_LOGCONFIG(TAG,
"Setting up SGP30...");
39 uint16_t raw_serial_number[3];
40 if (!this->
get_register(SGP30_CMD_GET_SERIAL_ID, raw_serial_number, 3)) {
44 this->
serial_number_ = (uint64_t(raw_serial_number[0]) << 24) | (uint64_t(raw_serial_number[1]) << 16) |
45 (uint64_t(raw_serial_number[2]));
49 uint16_t raw_featureset;
50 if (!this->
get_register(SGP30_CMD_GET_FEATURESET, raw_featureset)) {
66 ESP_LOGD(TAG,
"Product version: 0x%0X", uint16_t(this->
featureset_ & 0x1FF));
70 ESP_LOGE(TAG,
"Sensor sgp30_iaq_init failed.");
81 if (this->pref_.load(&this->baselines_storage_)) {
113 ESP_LOGD(TAG,
"Error getting baseline");
118 uint16_t raw_data[2];
124 uint16_t eco2baseline = (raw_data[0]);
125 uint16_t tvocbaseline = (raw_data[1]);
127 ESP_LOGI(TAG,
"Current eCO2 baseline: 0x%04X, TVOC baseline: 0x%04X", eco2baseline, tvocbaseline);
145 if (this->
pref_.
save(&this->baselines_storage_)) {
147 this->baselines_storage_.tvoc);
149 ESP_LOGW(TAG,
"Could not store eCO2 and TVOC baselines");
156 ESP_LOGD(TAG,
"Baseline reading not available for: %.0fs",
164 float humidity = NAN;
167 if (std::isnan(humidity) || humidity < 0.0f || humidity > 100.0f) {
168 ESP_LOGW(TAG,
"Compensation not possible yet: bad humidity data.");
171 ESP_LOGD(TAG,
"External compensation data received: Humidity %0.2f%%", humidity);
177 if (std::isnan(temperature) || temperature < -40.0f || temperature > 85.0f) {
178 ESP_LOGW(TAG,
"Compensation not possible yet: bad temperature value data.");
181 ESP_LOGD(TAG,
"External compensation data received: Temperature %0.2f°C", temperature);
184 float absolute_humidity =
185 216.7f * (((humidity / 100) * 6.112f * std::exp((17.62f * temperature) / (243.12f +
temperature))) /
186 (273.15f + temperature));
187 uint8_t humidity_full = uint8_t(std::floor(absolute_humidity));
188 uint8_t humidity_dec = uint8_t(std::floor((absolute_humidity - std::floor(absolute_humidity)) * 256));
189 ESP_LOGD(TAG,
"Calculated Absolute humidity: %0.3f g/m³ (0x%04X)", absolute_humidity,
190 uint16_t(uint16_t(humidity_full) << 8 | uint16_t(humidity_dec)));
191 uint8_t
crc =
sht_crc_(humidity_full, humidity_dec);
193 data[0] = SGP30_CMD_SET_ABSOLUTE_HUMIDITY & 0xFF;
194 data[1] = humidity_full;
195 data[2] = humidity_dec;
197 if (!this->
write_bytes(SGP30_CMD_SET_ABSOLUTE_HUMIDITY >> 8, data, 4)) {
198 ESP_LOGE(TAG,
"Error sending compensation data.");
204 data[0] = SGP30_CMD_SET_IAQ_BASELINE & 0xFF;
205 data[1] = tvoc_baseline >> 8;
206 data[2] = tvoc_baseline & 0xFF;
207 data[3] =
sht_crc_(data[1], data[2]);
208 data[4] = eco2_baseline >> 8;
209 data[5] = eco2_baseline & 0xFF;
210 data[6] =
sht_crc_(data[4], data[5]);
211 if (!this->
write_bytes(SGP30_CMD_SET_IAQ_BASELINE >> 8, data, 7)) {
212 ESP_LOGE(TAG,
"Error applying eCO2 baseline: 0x%04X, TVOC baseline: 0x%04X", eco2_baseline, tvoc_baseline);
214 ESP_LOGI(TAG,
"Initial baselines applied successfully! eCO2 baseline: 0x%04X, TVOC baseline: 0x%04X", eco2_baseline,
220 ESP_LOGCONFIG(TAG,
"SGP30:");
221 LOG_I2C_DEVICE(
this);
223 switch (this->error_code_) {
225 ESP_LOGW(TAG,
"Communication failed! Is the sensor connected?");
228 ESP_LOGW(TAG,
"Measurement Initialization failed!");
231 ESP_LOGW(TAG,
"Sensor reported an invalid ID. Is this an SGP30?");
234 ESP_LOGW(TAG,
"Sensor reported an unsupported ID (SGPC3).");
237 ESP_LOGW(TAG,
"Unknown setup error!");
241 ESP_LOGCONFIG(TAG,
" Serial number: %" PRIu64, this->
serial_number_);
243 ESP_LOGCONFIG(TAG,
" Baseline:");
244 ESP_LOGCONFIG(TAG,
" eCO2 Baseline: 0x%04X", this->
eco2_baseline_);
245 ESP_LOGCONFIG(TAG,
" TVOC Baseline: 0x%04X", this->
tvoc_baseline_);
247 ESP_LOGCONFIG(TAG,
" Baseline: No baseline configured");
251 LOG_UPDATE_INTERVAL(
this);
256 ESP_LOGCONFIG(TAG,
"Store baseline: %s", YESNO(this->
store_baseline_));
258 ESP_LOGCONFIG(TAG,
" Compensation:");
262 ESP_LOGCONFIG(TAG,
" Compensation: No source configured");
273 uint16_t raw_data[2];
279 float eco2 = (raw_data[0]);
280 float tvoc = (raw_data[1]);
282 ESP_LOGD(TAG,
"Got eCO2=%.1fppm TVOC=%.1fppb", eco2, tvoc);
289 ESP_LOGW(TAG,
"Update interval for SGP30 sensor must be set to 1s for optimized readout");
uint32_t update_interval_
uint32_t seconds_since_last_store_
bool write_command(T i2c_register)
Write a command to the i2c device.
sensor::Sensor * tvoc_sensor_
void write_iaq_baseline_(uint16_t eco2_baseline, uint16_t tvoc_baseline)
sensor::Sensor * eco2_sensor_baseline_
void read_iaq_baseline_()
void set_timeout(const std::string &name, uint32_t timeout, std::function< void()> &&f)
Set a timeout function with a unique name.
sensor::Sensor * eco2_sensor_
bool read_data(uint16_t *data, uint8_t len)
Read data words from i2c device.
uint8_t sht_crc_(uint16_t data)
8-bit CRC checksum that is transmitted after each data word for read and write operation ...
sensor::Sensor * tvoc_sensor_baseline_
bool is_sensor_baseline_reliable_()
uint32_t IRAM_ATTR HOT millis()
sensor::Sensor * humidity_sensor_
Input sensor for humidity and temperature compensation.
SGP30Baselines baselines_storage_
sensor::Sensor * temperature_sensor_
ESPPreferenceObject pref_
float state
This member variable stores the last state that has passed through all filters.
const uint32_t SHORTEST_BASELINE_STORE_INTERVAL
ESPPreferences * global_preferences
void status_clear_warning()
void publish_state(float state)
Publish a new state to the front-end.
Application App
Global storage of Application pointer - only one Application can exist.
uint32_t required_warm_up_time_
const uint32_t IAQ_BASELINE_WARM_UP_SECONDS_WITHOUT_BASELINE
void status_set_warning()
virtual uint32_t get_update_interval() const
Get the update interval in ms of this sensor.
const uint32_t IAQ_BASELINE_WARM_UP_SECONDS_WITH_BASELINE_PROVIDED
const std::string & get_compilation_time() const
const uint32_t MAXIMUM_STORAGE_DIFF
bool get_register(uint16_t command, uint16_t *data, uint8_t len, uint8_t delay=0)
get data words from i2c register.
virtual ESPPreferenceObject make_preference(size_t length, uint32_t type, bool in_flash)=0
uint32_t fnv1_hash(const std::string &str)
Calculate a FNV-1 hash of str.
virtual void mark_failed()
Mark this component as failed.
void dump_config() override
bool write_bytes(uint8_t a_register, const uint8_t *data, uint8_t len, bool stop=true)