ESPHome 2025.5.0
Loading...
Searching...
No Matches
ens210.h
Go to the documentation of this file.
1#pragma once
2
6
7namespace esphome {
8namespace ens210 {
9
12 public:
13 float get_setup_priority() const override;
14 void dump_config() override;
15 void setup() override;
16 void update() override;
17
18 void set_humidity_sensor(sensor::Sensor *humidity_sensor) { humidity_sensor_ = humidity_sensor; }
19 void set_temperature_sensor(sensor::Sensor *temperature_sensor) { temperature_sensor_ = temperature_sensor; }
20
21 enum ErrorCode {
22 ENS210_STATUS_OK = 0, // The value was read, the CRC matches, and data is valid
23 ENS210_STATUS_INVALID, // The value was read, the CRC matches, but the data is invalid (e.g. the measurement was
24 // not yet finished)
25 ENS210_STATUS_CRC_ERROR, // The value was read, but the CRC over the payload (valid and data) does not match
26 ENS210_STATUS_I2C_ERROR, // There was an I2C communication error
27 ENS210_WRONG_CHIP_ID // The read PART_ID is not the expected part id of the ENS210
28 } error_code_{ENS210_STATUS_OK};
29
30 protected:
31 bool set_low_power_(bool enable);
32 void extract_measurement_(uint32_t val, int *data, int *status);
33
36};
37
38} // namespace ens210
39} // namespace esphome
This class simplifies creating components that periodically check a state.
Definition component.h:301
This class implements support for the ENS210 relative humidity and temperature i2c sensor.
Definition ens210.h:11
float get_setup_priority() const override
Definition ens210.cpp:140
void set_humidity_sensor(sensor::Sensor *humidity_sensor)
Definition ens210.h:18
void extract_measurement_(uint32_t val, int *data, int *status)
Definition ens210.cpp:203
sensor::Sensor * humidity_sensor_
Definition ens210.h:35
bool set_low_power_(bool enable)
Definition ens210.cpp:221
void set_temperature_sensor(sensor::Sensor *temperature_sensor)
Definition ens210.h:19
enum esphome::ens210::ENS210Component::ErrorCode ENS210_STATUS_OK
sensor::Sensor * temperature_sensor_
Definition ens210.h:34
This Class provides the methods to read/write bytes from/to an i2c device.
Definition i2c.h:133
Base-class for all sensors.
Definition sensor.h:57
mopeka_std_values val[4]
Providing packet encoding functions for exchanging data with a remote host.
Definition a01nyub.cpp:7