ESPHome 2025.10.0-dev
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
11 uint8_t address[] = {0x70, 0x29};
12 uint8_t identification[9];
13 this->read(identification, 9);
14 this->write_read(address, sizeof address, identification, sizeof identification);
15 if (identification[8] != crc8(identification, 8, 0xFF, 0x31, true)) {
16 this->error_code_ = CRC_CHECK_FAILED;
17 this->mark_failed();
18 return;
19 }
20 ESP_LOGV(TAG, " Serial Number: 0x%s", format_hex(identification + 0, 7).c_str());
21}
22
24 ESP_LOGCONFIG(TAG, "TEE501:");
25 LOG_I2C_DEVICE(this);
26 switch (this->error_code_) {
28 ESP_LOGE(TAG, ESP_LOG_MSG_COMM_FAIL);
29 break;
31 ESP_LOGE(TAG, "The crc check failed");
32 break;
33 case NONE:
34 default:
35 break;
36 }
37 LOG_UPDATE_INTERVAL(this);
38 LOG_SENSOR(" ", "TEE501", this);
39}
40
43 uint8_t address_1[] = {0x2C, 0x1B};
44 this->write(address_1, 2);
45 this->set_timeout(50, [this]() {
46 uint8_t i2c_response[3];
47 this->read(i2c_response, 3);
48 if (i2c_response[2] != crc8(i2c_response, 2, 0xFF, 0x31, true)) {
49 this->error_code_ = CRC_CHECK_FAILED;
50 this->status_set_warning();
51 return;
52 }
53 float temperature = (float) encode_uint16(i2c_response[0], i2c_response[1]);
54 if (temperature > 55536) {
55 temperature = (temperature - 65536) / 100;
56 } else {
58 }
59 ESP_LOGD(TAG, "Got temperature=%.2f°C", temperature);
60 this->publish_state(temperature);
62 });
63}
64
65} // namespace tee501
66} // 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)
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.
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:73
enum esphome::tee501::TEE501Component::ErrorCode NONE
float get_setup_priority() const override
Definition tee501.cpp:41
const float DATA
For components that import data from directly connected sensors like DHT.
Definition component.cpp:49
Providing packet encoding functions for exchanging data with a remote host.
Definition a01nyub.cpp:7
std::string format_hex(const uint8_t *data, size_t length)
Format the byte array data of length len in lowercased hex.
Definition helpers.cpp:263
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:44
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:185
uint16_t temperature
Definition sun_gtil2.cpp:12