7static const char *
const TAG =
"sfa30";
9static const uint16_t SFA30_CMD_GET_DEVICE_MARKING = 0xD060;
10static const uint16_t SFA30_CMD_START_CONTINUOUS_MEASUREMENTS = 0x0006;
11static const uint16_t SFA30_CMD_READ_MEASUREMENT = 0x0327;
15 uint16_t raw_device_marking[16];
16 if (!this->
get_register(SFA30_CMD_GET_DEVICE_MARKING, raw_device_marking, 16, 5)) {
17 ESP_LOGE(TAG,
"Failed to read device marking");
23 for (
size_t i = 0; i < 16; i++) {
24 this->
device_marking_[i * 2] =
static_cast<char>(raw_device_marking[i] >> 8);
25 this->
device_marking_[i * 2 + 1] =
static_cast<char>(raw_device_marking[i] & 0xFF);
29 if (!this->
write_command(SFA30_CMD_START_CONTINUOUS_MEASUREMENTS)) {
30 ESP_LOGE(TAG,
"Error starting measurements.");
38 ESP_LOGCONFIG(TAG,
"sfa30:");
42 case DEVICE_MARKING_READ_FAILED:
43 ESP_LOGW(TAG,
"Unable to read device marking!");
45 case MEASUREMENT_INIT_FAILED:
46 ESP_LOGW(TAG,
"Measurement initialization failed!");
49 ESP_LOGW(TAG,
"Unknown setup error!");
53 LOG_UPDATE_INTERVAL(
this);
62 ESP_LOGW(TAG,
"Error reading measurement!");
70 ESP_LOGW(TAG,
"Error reading measurement data!");
76 const float formaldehyde = raw_data[0] / 5.0f;
81 const float humidity = raw_data[1] / 100.0f;
virtual void mark_failed()
Mark this component as failed.
void status_set_warning(const char *message=nullptr)
void status_clear_warning()
void set_timeout(const std::string &name, uint32_t timeout, std::function< void()> &&f)
Set a timeout function with a unique name.
bool get_register(uint16_t command, uint16_t *data, uint8_t len, uint8_t delay=0)
get data words from i2c register.
bool write_command(T i2c_register)
Write a command to the i2c device.
bool read_data(uint16_t *data, uint8_t len)
Read data words from i2c device.
void publish_state(float state)
Publish a new state to the front-end.
sensor::Sensor * temperature_sensor_
void dump_config() override
sensor::Sensor * humidity_sensor_
sensor::Sensor * formaldehyde_sensor_
Providing packet encoding functions for exchanging data with a remote host.