ESPHome 2026.7.4
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 int32_t state0;
18 int32_t state1;
19} PACKED; // NOLINT
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;
42static const uint8_t SGP41_SUBCMD_NOX_CONDITIONING = 0x12;
43
44// Shortest time interval of 3H for storing baseline values.
45// Prevents wear of the flash because of too many write operations
47static const uint16_t SPG40_SELFTEST_TIME = 250; // 250 ms for self test
48static const uint16_t SPG41_SELFTEST_TIME = 320; // 320 ms for self test
49static const uint16_t SGP40_MEASURE_TIME = 30;
50static const uint16_t SGP41_MEASURE_TIME = 55;
51// Store anyway if the baseline difference exceeds the max storage diff value
52const float MAXIMUM_STORAGE_DIFF = 50.0f;
53
54class SGP4xComponent;
55
57class SGP4xComponent final : public PollingComponent,
58 public sensor::Sensor,
60 enum ErrorCode {
61 COMMUNICATION_FAILED,
62 MEASUREMENT_INIT_FAILED,
63 INVALID_ID,
64 UNSUPPORTED_ID,
65 SERIAL_NUMBER_IDENTIFICATION_FAILED,
66 SELF_TEST_FAILED,
67 UNKNOWN
68 } error_code_{UNKNOWN};
69
70 public:
71 // SGP4xComponent() {};
72 void set_humidity_sensor(sensor::Sensor *humidity) { humidity_sensor_ = humidity; }
74
75 void setup() override;
76 void update() override;
77 void take_sample();
78 void dump_config() override;
79 void set_store_baseline(bool store_baseline) { store_baseline_ = store_baseline; }
80 void set_voc_sensor(sensor::Sensor *voc_sensor) { voc_sensor_ = voc_sensor; }
81 void set_nox_sensor(sensor::Sensor *nox_sensor) { nox_sensor_ = nox_sensor; }
82 void set_voc_algorithm_tuning(uint16_t index_offset, uint16_t learning_time_offset_hours,
83 uint16_t learning_time_gain_hours, uint16_t gating_max_duration_minutes,
84 uint16_t std_initial, uint16_t gain_factor) {
86 index_offset, learning_time_offset_hours, learning_time_gain_hours, gating_max_duration_minutes, std_initial,
87 gain_factor};
88 }
89 void set_nox_algorithm_tuning(uint16_t index_offset, uint16_t learning_time_offset_hours,
90 uint16_t learning_time_gain_hours, uint16_t gating_max_duration_minutes,
91 uint16_t gain_factor) {
92 this->nox_tuning_params_ =
93 GasTuning{index_offset, learning_time_offset_hours, learning_time_gain_hours, gating_max_duration_minutes, 50,
94 gain_factor};
95 }
96
97 protected:
98 void self_test_();
99
104
105 void update_gas_indices_();
106 void measure_raw_();
107 uint16_t voc_sraw_;
108 uint16_t nox_sraw_;
109
112
115
117 VOCGasIndexAlgorithm voc_algorithm_;
118 optional<GasTuning> voc_tuning_params_;
121 int32_t voc_index_ = 0;
122
124 int32_t nox_index_ = 0;
125 NOxGasIndexAlgorithm nox_algorithm_;
126 optional<GasTuning> nox_tuning_params_;
127
129 uint8_t samples_read_ = 0;
130 uint8_t samples_to_stabilize_ = static_cast<int8_t>(GasIndexAlgorithm_INITIAL_BLACKOUT) * 2;
132
133 optional<uint32_t> nox_conditioning_start_{};
137};
138} // namespace esphome::sgp4x
This class simplifies creating components that periodically check a state.
Definition component.h:547
Base-class for all sensors.
Definition sensor.h:47
This class implements support for the Sensirion sgp4x i2c GAS (VOC) sensors.
Definition sgp4x.h:59
void set_temperature_sensor(sensor::Sensor *temperature)
Definition sgp4x.h:73
SGP4xBaselines voc_baselines_storage_
Definition sgp4x.h:136
void set_nox_sensor(sensor::Sensor *nox_sensor)
Definition sgp4x.h:81
void set_humidity_sensor(sensor::Sensor *humidity)
Definition sgp4x.h:72
optional< uint32_t > nox_conditioning_start_
Definition sgp4x.h:133
ESPPreferenceObject pref_
Definition sgp4x.h:134
void dump_config() override
Definition sgp4x.cpp:253
sensor::Sensor * humidity_sensor_
Input sensor for humidity and temperature compensation.
Definition sgp4x.h:101
void set_voc_sensor(sensor::Sensor *voc_sensor)
Definition sgp4x.h:80
sensor::Sensor * voc_sensor_
Definition sgp4x.h:116
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:89
VOCGasIndexAlgorithm voc_algorithm_
Definition sgp4x.h:117
void set_store_baseline(bool store_baseline)
Definition sgp4x.h:79
sensor::Sensor * temperature_sensor_
Definition sgp4x.h:102
optional< GasTuning > voc_tuning_params_
Definition sgp4x.h:118
NOxGasIndexAlgorithm nox_algorithm_
Definition sgp4x.h:125
optional< GasTuning > nox_tuning_params_
Definition sgp4x.h:126
sensor::Sensor * nox_sensor_
Definition sgp4x.h:123
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:82
const uint32_t SHORTEST_BASELINE_STORE_INTERVAL
Definition sgp4x.h:46
struct esphome::sgp4x::SGP4xBaselines PACKED
const float MAXIMUM_STORAGE_DIFF
Definition sgp4x.h:52
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