ESPHome 2026.10.0-dev
Loading...
Searching...
No Matches
sgp4x.h
Go to the documentation of this file.
1#pragma once
2
3#include <cinttypes>
4#include <cmath>
5
11#include <VOCGasIndexAlgorithm.h>
12#include <NOxGasIndexAlgorithm.h>
13
14namespace esphome::sgp4x {
15
17 float state0;
18 float state1;
19};
20
22
31
32// commands and constants
33static const uint8_t SGP40_FEATURESET = 0x0020; // can measure VOC
34static const uint8_t SGP41_FEATURESET = 0x0040; // can measure VOC and NOX
35// Commands
36static const uint16_t SGP4X_CMD_GET_SERIAL_ID = 0x3682;
37static const uint16_t SGP4X_CMD_GET_FEATURESET = 0x202f;
38static const uint16_t SGP4X_CMD_SELF_TEST = 0x280e;
39static const uint16_t SGP40_CMD_MEASURE_RAW = 0x260F;
40static const uint16_t SGP41_CMD_MEASURE_RAW = 0x2619;
41static const uint16_t SGP41_CMD_NOX_CONDITIONING = 0x2612;
42
43// Shortest time interval of 3H for storing baseline values.
44// Prevents wear of the flash because of too many write operations
46static const uint16_t SGP4X_SELF_TEST_TIME = 320; // maximum self-test duration for both SGP40 and SGP41
47static const uint16_t SGP40_MEASURE_TIME = 30;
48static const uint16_t SGP41_MEASURE_TIME = 55;
49// Once the store interval has passed, store only if the baseline drifted from the stored copy by more than these
50// state0 is mean of variance estimator, hence can have larger absolute values and a larger diff threshold
51const float MAXIMUM_STORAGE_DIFF_STATE0 = 50.0f;
52// state1 is std of variance estimator, so it typically has smaller absolute values than state0, hence we use a smaller
53// diff threshold
54const float MAXIMUM_STORAGE_DIFF_STATE1 = 5.0f;
55
56class SGP4xComponent;
57
59class SGP4xComponent final : public PollingComponent,
60 public sensor::Sensor,
62 enum ErrorCode {
63 COMMUNICATION_FAILED,
64 MEASUREMENT_INIT_FAILED,
65 INVALID_ID,
66 UNSUPPORTED_ID,
67 SERIAL_NUMBER_IDENTIFICATION_FAILED,
68 SELF_TEST_FAILED,
69 UNKNOWN
70 } error_code_{UNKNOWN};
71
72 public:
73 // SGP4xComponent() {};
74 void set_humidity_sensor(sensor::Sensor *humidity) { humidity_sensor_ = humidity; }
76
77 void setup() override;
78 void update() override;
79 void take_sample();
80 void dump_config() override;
81 void set_store_baseline(bool store_baseline) { store_baseline_ = store_baseline; }
82 void set_voc_sensor(sensor::Sensor *voc_sensor) { voc_sensor_ = voc_sensor; }
83 void set_nox_sensor(sensor::Sensor *nox_sensor) { nox_sensor_ = nox_sensor; }
84 void set_voc_algorithm_tuning(uint16_t index_offset, uint16_t learning_time_offset_hours,
85 uint16_t learning_time_gain_hours, uint16_t gating_max_duration_minutes,
86 uint16_t std_initial, uint16_t gain_factor) {
88 index_offset, learning_time_offset_hours, learning_time_gain_hours, gating_max_duration_minutes, std_initial,
89 gain_factor};
90 }
91 void set_nox_algorithm_tuning(uint16_t index_offset, uint16_t learning_time_offset_hours,
92 uint16_t learning_time_gain_hours, uint16_t gating_max_duration_minutes,
93 uint16_t gain_factor) {
94 this->nox_tuning_params_ =
95 GasTuning{index_offset, learning_time_offset_hours, learning_time_gain_hours, gating_max_duration_minutes, 50,
96 gain_factor};
97 }
98
99 protected:
100 void self_test_();
101
106
107 void update_gas_indices_();
108 void measure_raw_();
109 uint16_t voc_sraw_;
110 uint16_t nox_sraw_;
111
114
116
118 VOCGasIndexAlgorithm voc_algorithm_;
119 optional<GasTuning> voc_tuning_params_;
122 int32_t voc_index_ = 0;
123
125 int32_t nox_index_ = 0;
126 NOxGasIndexAlgorithm nox_algorithm_;
127 optional<GasTuning> nox_tuning_params_;
128
130 uint8_t samples_read_ = 0;
131 uint8_t samples_to_stabilize_ = static_cast<int8_t>(GasIndexAlgorithm_INITIAL_BLACKOUT) * 2;
133
134 optional<uint32_t> nox_conditioning_start_{};
138};
139} // namespace esphome::sgp4x
This class simplifies creating components that periodically check a state.
Definition component.h:510
Base-class for all sensors.
Definition sensor.h:47
This class implements support for the Sensirion sgp4x i2c GAS (VOC) sensors.
Definition sgp4x.h:61
void set_temperature_sensor(sensor::Sensor *temperature)
Definition sgp4x.h:75
SGP4xBaselines voc_baselines_storage_
Definition sgp4x.h:137
void set_nox_sensor(sensor::Sensor *nox_sensor)
Definition sgp4x.h:83
void set_humidity_sensor(sensor::Sensor *humidity)
Definition sgp4x.h:74
optional< uint32_t > nox_conditioning_start_
Definition sgp4x.h:134
ESPPreferenceObject pref_
Definition sgp4x.h:135
void dump_config() override
Definition sgp4x.cpp:262
sensor::Sensor * humidity_sensor_
Input sensor for humidity and temperature compensation.
Definition sgp4x.h:103
void set_voc_sensor(sensor::Sensor *voc_sensor)
Definition sgp4x.h:82
sensor::Sensor * voc_sensor_
Definition sgp4x.h:117
void set_nox_algorithm_tuning(uint16_t index_offset, uint16_t learning_time_offset_hours, uint16_t learning_time_gain_hours, uint16_t gating_max_duration_minutes, uint16_t gain_factor)
Definition sgp4x.h:91
VOCGasIndexAlgorithm voc_algorithm_
Definition sgp4x.h:118
void set_store_baseline(bool store_baseline)
Definition sgp4x.h:81
sensor::Sensor * temperature_sensor_
Definition sgp4x.h:104
optional< GasTuning > voc_tuning_params_
Definition sgp4x.h:119
NOxGasIndexAlgorithm nox_algorithm_
Definition sgp4x.h:126
optional< GasTuning > nox_tuning_params_
Definition sgp4x.h:127
sensor::Sensor * nox_sensor_
Definition sgp4x.h:124
void set_voc_algorithm_tuning(uint16_t index_offset, uint16_t learning_time_offset_hours, uint16_t learning_time_gain_hours, uint16_t gating_max_duration_minutes, uint16_t std_initial, uint16_t gain_factor)
Definition sgp4x.h:84
const float MAXIMUM_STORAGE_DIFF_STATE0
Definition sgp4x.h:51
const float MAXIMUM_STORAGE_DIFF_STATE1
Definition sgp4x.h:54
const uint32_t SHORTEST_BASELINE_STORE_INTERVAL
Definition sgp4x.h:45
static void uint32_t
uint16_t gating_max_duration_minutes
Definition sgp4x.h:27
uint16_t learning_time_gain_hours
Definition sgp4x.h:26
uint16_t learning_time_offset_hours
Definition sgp4x.h:25
uint16_t temperature
Definition sun_gtil2.cpp:12