8static const char *
const TAG =
"hte501";
10static constexpr size_t HTE501_SERIAL_NUMBER_SIZE = 7;
13 uint8_t
address[] = {0x70, 0x29};
14 uint8_t identification[9];
16 if (identification[8] !=
crc8(identification, 8, 0xFF, 0x31,
true)) {
21#if ESPHOME_LOG_LEVEL >= ESPHOME_LOG_LEVEL_VERBOSE
24 ESP_LOGV(TAG,
" Serial Number: 0x%s",
format_hex_to(serial_hex, identification, HTE501_SERIAL_NUMBER_SIZE));
28 ESP_LOGCONFIG(TAG,
"HTE501:");
30 switch (this->error_code_) {
32 ESP_LOGE(TAG, ESP_LOG_MSG_COMM_FAIL);
35 ESP_LOGE(TAG,
"The crc check failed");
41 LOG_UPDATE_INTERVAL(
this);
48 uint8_t address_1[] = {0x2C, 0x1B};
49 this->
write(address_1, 2);
51 uint8_t i2c_response[6];
52 this->
read(i2c_response, 6);
53 if (i2c_response[2] !=
crc8(i2c_response, 2, 0xFF, 0x31,
true) &&
54 i2c_response[5] !=
crc8(i2c_response + 3, 2, 0xFF, 0x31,
true)) {
65 float humidity = ((float)
encode_uint16(i2c_response[3], i2c_response[4])) / 100.0f;
67 ESP_LOGD(TAG,
"Got temperature=%.2f°C humidity=%.2f%%",
temperature, humidity);
virtual void mark_failed()
Mark this component as failed.
void status_set_warning(const char *message=nullptr)
ESPDEPRECATED("Use const char* or uint32_t overload instead. Removed in 2026.7.0", "2026.1.0") void set_timeout(const std voi set_timeout)(const char *name, uint32_t timeout, std::function< void()> &&f)
Set a timeout function with a unique name.
void status_clear_warning()
sensor::Sensor * temperature_sensor_
float get_setup_priority() const override
sensor::Sensor * humidity_sensor_
enum esphome::hte501::HTE501Component::ErrorCode NONE
void dump_config() override
ErrorCode write_read(const uint8_t *write_data, size_t write_len, uint8_t *read_data, size_t read_len) const
writes an array of bytes to a device, then reads an array, as a single transaction
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
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.
constexpr size_t format_hex_size(size_t byte_count)
Calculate buffer size needed for format_hex_to: "XXXXXXXX...\0" = bytes * 2 + 1.
uint8_t crc8(const uint8_t *data, uint8_t len, uint8_t crc, uint8_t poly, bool msb_first)
Calculate a CRC-8 checksum of data with size len.
constexpr uint16_t encode_uint16(uint8_t msb, uint8_t lsb)
Encode a 16-bit value given the most and least significant byte.
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).