8static const char *
const TAG =
"ee895";
11static constexpr size_t EE895_SERIAL_NUMBER_SIZE = 16;
13static const uint16_t CRC16_ONEWIRE_START = 0xFFFF;
14static const uint8_t FUNCTION_CODE_READ = 0x03;
15static const uint16_t SERIAL_NUMBER = 0x0000;
16static const uint16_t TEMPERATURE_ADDRESS = 0x03EA;
17static const uint16_t CO2_ADDRESS = 0x0424;
18static const uint16_t PRESSURE_ADDRESS = 0x04B0;
21 uint16_t crc16_check = 0;
24 this->
read(serial_number, 20);
32#if ESPHOME_LOG_LEVEL >= ESPHOME_LOG_LEVEL_VERBOSE
39 ESP_LOGCONFIG(TAG,
"EE895:");
41 switch (this->error_code_) {
43 ESP_LOGE(TAG, ESP_LOG_MSG_COMM_FAIL);
46 ESP_LOGE(TAG,
"The crc check failed");
52 LOG_UPDATE_INTERVAL(
this);
70 ESP_LOGD(TAG,
"Got temperature=%.1f°C co2=%.0fppm pressure=%.1f%mbar",
temperature, co2,
pressure);
84 address[0] = FUNCTION_CODE_READ;
85 address[1] = (addr >> 8) & 0xFF;
87 address[3] = (reg_cnt >> 8) & 0xFF;
92 this->
write(address, 7);
96 uint16_t crc16_check = 0;
97 uint8_t i2c_response[8];
98 this->
read(i2c_response, 8);
99 crc16_check = (i2c_response[7] << 8) + i2c_response[6];
105 uint32_t
x =
encode_uint32(i2c_response[4], i2c_response[5], i2c_response[2], i2c_response[3]);
107 memcpy(&value, &
x,
sizeof(value));
112 uint8_t crc_check_buf[22];
113 for (
int i = 0; i <
len; i++) {
114 crc_check_buf[i + 1] = buf[i];
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.
void dump_config() override
sensor::Sensor * pressure_sensor_
void write_command_(uint16_t addr, uint16_t reg_cnt)
sensor::Sensor * co2_sensor_
enum esphome::ee895::EE895Component::ErrorCode NONE
sensor::Sensor * temperature_sensor_
uint16_t calc_crc16_(const uint8_t buf[], uint8_t len)
float get_setup_priority() const override
ErrorCode write(const uint8_t *data, size_t len) const
writes an array of bytes to a device using an I2CBus
ErrorCode read(uint8_t *data, size_t len) const
reads an array of bytes from the device using an I2CBus
uint8_t address_
store the address of the device on the bus
void publish_state(float state)
Publish a new state to the front-end.
const float DATA
For components that import data from directly connected sensors like DHT.
Providing packet encoding functions for exchanging data with a remote host.
uint16_t crc16(const uint8_t *data, uint16_t len, uint16_t crc, uint16_t reverse_poly, bool refin, bool refout)
Calculate a CRC-16 checksum of data with size len.
constexpr size_t format_hex_size(size_t byte_count)
Calculate buffer size needed for format_hex_to: "XXXXXXXX...\0" = bytes * 2 + 1.
constexpr uint32_t encode_uint32(uint8_t byte1, uint8_t byte2, uint8_t byte3, uint8_t byte4)
Encode a 32-bit value given four bytes in most to least significant byte order.
char * format_hex_to(char *buffer, size_t buffer_size, const uint8_t *data, size_t length)
Format byte array as lowercase hex to buffer (base implementation).