ESPHome 2026.1.4
Loading...
Searching...
No Matches
tee501.cpp
Go to the documentation of this file.
1#include "tee501.h"
3#include "esphome/core/log.h"
4
5namespace esphome {
6namespace tee501 {
7
8static const char *const TAG = "tee501";
9
10static constexpr size_t TEE501_SERIAL_NUMBER_SIZE = 7;
11
13 uint8_t address[] = {0x70, 0x29};
14 uint8_t identification[9];
15 this->read(identification, 9);
16 this->write_read(address, sizeof address, identification, sizeof identification);
17 if (identification[8] != crc8(identification, 8, 0xFF, 0x31, true)) {
18 this->error_code_ = CRC_CHECK_FAILED;
19 this->mark_failed();
20 return;
21 }
22#if ESPHOME_LOG_LEVEL >= ESPHOME_LOG_LEVEL_VERBOSE
23 char serial_hex[format_hex_size(TEE501_SERIAL_NUMBER_SIZE)];
24#endif
25 ESP_LOGV(TAG, " Serial Number: 0x%s", format_hex_to(serial_hex, identification, TEE501_SERIAL_NUMBER_SIZE));
26}
27
29 ESP_LOGCONFIG(TAG, "TEE501:");
30 LOG_I2C_DEVICE(this);
31 switch (this->error_code_) {
33 ESP_LOGE(TAG, ESP_LOG_MSG_COMM_FAIL);
34 break;
36 ESP_LOGE(TAG, "The crc check failed");
37 break;
38 case NONE:
39 default:
40 break;
41 }
42 LOG_UPDATE_INTERVAL(this);
43 LOG_SENSOR(" ", "TEE501", this);
44}
45
48 uint8_t address_1[] = {0x2C, 0x1B};
49 this->write(address_1, 2);
50 this->set_timeout(50, [this]() {
51 uint8_t i2c_response[3];
52 this->read(i2c_response, 3);
53 if (i2c_response[2] != crc8(i2c_response, 2, 0xFF, 0x31, true)) {
54 this->error_code_ = CRC_CHECK_FAILED;
55 this->status_set_warning();
56 return;
57 }
58 float temperature = (float) encode_uint16(i2c_response[0], i2c_response[1]);
59 if (temperature > 55536) {
60 temperature = (temperature - 65536) / 100;
61 } else {
63 }
64 ESP_LOGD(TAG, "Got temperature=%.2f°C", temperature);
65 this->publish_state(temperature);
67 });
68}
69
70} // namespace tee501
71} // namespace esphome
uint8_t address
Definition bl0906.h:4
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.
Definition component.h:445
void status_clear_warning()
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
Definition i2c.h:194
ErrorCode write(const uint8_t *data, size_t len) const
writes an array of bytes to a device using an I2CBus
Definition i2c.h:184
ErrorCode read(uint8_t *data, size_t len) const
reads an array of bytes from the device using an I2CBus
Definition i2c.h:164
void publish_state(float state)
Publish a new state to the front-end.
Definition sensor.cpp:76
enum esphome::tee501::TEE501Component::ErrorCode NONE
float get_setup_priority() const override
Definition tee501.cpp:46
const float DATA
For components that import data from directly connected sensors like DHT.
Definition component.cpp:81
Providing packet encoding functions for exchanging data with a remote host.
Definition a01nyub.cpp:7
constexpr size_t format_hex_size(size_t byte_count)
Calculate buffer size needed for format_hex_to: "XXXXXXXX...\0" = bytes * 2 + 1.
Definition helpers.h:804
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.
Definition helpers.cpp:45
constexpr uint16_t encode_uint16(uint8_t msb, uint8_t lsb)
Encode a 16-bit value given the most and least significant byte.
Definition helpers.h:463
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).
Definition helpers.cpp:322
uint16_t temperature
Definition sun_gtil2.cpp:12