ESPHome 2025.6.3
Loading...
Searching...
No Matches
aht10.cpp
Go to the documentation of this file.
1// Implementation based on:
2// - AHT10: https://github.com/Thinary/AHT10
3// - Official Datasheet (cn):
4// http://www.aosong.com/userfiles/files/media/aht10%E8%A7%84%E6%A0%BC%E4%B9%A6v1_1%EF%BC%8820191015%EF%BC%89.pdf
5// - Unofficial Translated Datasheet (en):
6// https://wiki.liutyi.info/download/attachments/30507639/Aosong_AHT10_en_draft_0c.pdf
7//
8// When configured for humidity, the log 'Components should block for at most 20-30ms in loop().' will be generated in
9// verbose mode. This is due to technical specs of the sensor and can not be avoided.
10//
11// According to the datasheet, the component is supposed to respond in more than 75ms. In fact, it can answer almost
12// immediately for temperature. But for humidity, it takes >90ms to get a valid data. From experience, we have best
13// results making successive requests; the current implementation makes 3 attempts with a delay of 30ms each time.
14
15#include "aht10.h"
16#include "esphome/core/hal.h"
18#include "esphome/core/log.h"
19
20namespace esphome {
21namespace aht10 {
22
23static const char *const TAG = "aht10";
24static const uint8_t AHT10_INITIALIZE_CMD[] = {0xE1, 0x08, 0x00};
25static const uint8_t AHT20_INITIALIZE_CMD[] = {0xBE, 0x08, 0x00};
26static const uint8_t AHT10_MEASURE_CMD[] = {0xAC, 0x33, 0x00};
27static const uint8_t AHT10_SOFTRESET_CMD[] = {0xBA};
28
29static const uint8_t AHT10_DEFAULT_DELAY = 5; // ms, for initialization and temperature measurement
30static const uint8_t AHT10_READ_DELAY = 80; // ms, time to wait for conversion result
31static const uint8_t AHT10_SOFTRESET_DELAY = 30; // ms
32
33static const uint8_t AHT10_ATTEMPTS = 3; // safety margin, normally 3 attempts are enough: 3*30=90ms
34static const uint8_t AHT10_INIT_ATTEMPTS = 10;
35
36static const uint8_t AHT10_STATUS_BUSY = 0x80;
37
38static const float AHT10_DIVISOR = 1048576.0f; // 2^20, used for temperature and humidity calculations
39
41 ESP_LOGCONFIG(TAG, "Running setup");
42
43 if (this->write(AHT10_SOFTRESET_CMD, sizeof(AHT10_SOFTRESET_CMD)) != i2c::ERROR_OK) {
44 ESP_LOGE(TAG, "Reset failed");
45 }
46 delay(AHT10_SOFTRESET_DELAY);
47
49 switch (this->variant_) {
51 error_code = this->write(AHT20_INITIALIZE_CMD, sizeof(AHT20_INITIALIZE_CMD));
52 break;
54 error_code = this->write(AHT10_INITIALIZE_CMD, sizeof(AHT10_INITIALIZE_CMD));
55 break;
56 }
57 if (error_code != i2c::ERROR_OK) {
58 ESP_LOGE(TAG, ESP_LOG_MSG_COMM_FAIL);
59 this->mark_failed();
60 return;
61 }
62 uint8_t cal_attempts = 0;
63 uint8_t data = AHT10_STATUS_BUSY;
64 while (data & AHT10_STATUS_BUSY) {
65 delay(AHT10_DEFAULT_DELAY);
66 if (this->read(&data, 1) != i2c::ERROR_OK) {
67 ESP_LOGE(TAG, ESP_LOG_MSG_COMM_FAIL);
68 this->mark_failed();
69 return;
70 }
71 ++cal_attempts;
72 if (cal_attempts > AHT10_INIT_ATTEMPTS) {
73 ESP_LOGE(TAG, "Initialization timed out");
74 this->mark_failed();
75 return;
76 }
77 }
78 if ((data & 0x68) != 0x08) { // Bit[6:5] = 0b00, NORMAL mode and Bit[3] = 0b1, CALIBRATED
79 ESP_LOGE(TAG, "Initialization failed");
80 this->mark_failed();
81 return;
82 }
83
84 ESP_LOGV(TAG, "Initialization complete");
85}
86
88 if (this->read_count_ == AHT10_ATTEMPTS) {
89 this->read_count_ = 0;
90 this->status_set_error("Reading timed out");
91 return;
92 }
93 this->read_count_++;
94 this->set_timeout(AHT10_READ_DELAY, [this]() { this->read_data_(); });
95}
96
98 uint8_t data[6];
99 if (this->read_count_ > 1) {
100 ESP_LOGD(TAG, "Read attempt %d at %ums", this->read_count_, (unsigned) (millis() - this->start_time_));
101 }
102 if (this->read(data, 6) != i2c::ERROR_OK) {
103 this->status_set_warning("Read failed, will retry");
104 this->restart_read_();
105 return;
106 }
107
108 if ((data[0] & 0x80) == 0x80) { // Bit[7] = 0b1, device is busy
109 ESP_LOGD(TAG, "Device busy, will retry");
110 this->restart_read_();
111 return;
112 }
113 if (data[1] == 0x0 && data[2] == 0x0 && (data[3] >> 4) == 0x0) {
114 // Invalid humidity (0x0)
115 if (this->humidity_sensor_ == nullptr) {
116 ESP_LOGV(TAG, "Invalid humidity (reading not required)");
117 } else {
118 ESP_LOGD(TAG, "Invalid humidity, retrying");
119 if (this->write(AHT10_MEASURE_CMD, sizeof(AHT10_MEASURE_CMD)) != i2c::ERROR_OK) {
120 this->status_set_warning(ESP_LOG_MSG_COMM_FAIL);
121 }
122 this->restart_read_();
123 return;
124 }
125 }
126 if (this->read_count_ > 1) {
127 ESP_LOGD(TAG, "Success at %ums", (unsigned) (millis() - this->start_time_));
128 }
129 uint32_t raw_temperature = encode_uint24(data[3] & 0xF, data[4], data[5]);
130 uint32_t raw_humidity = encode_uint24(data[1], data[2], data[3]) >> 4;
131
132 if (this->temperature_sensor_ != nullptr) {
133 float temperature = ((200.0f * static_cast<float>(raw_temperature)) / AHT10_DIVISOR) - 50.0f;
134 this->temperature_sensor_->publish_state(temperature);
135 }
136 if (this->humidity_sensor_ != nullptr) {
137 float humidity = raw_humidity == 0 ? NAN : static_cast<float>(raw_humidity) * 100.0f / AHT10_DIVISOR;
138 if (std::isnan(humidity)) {
139 ESP_LOGW(TAG, "Invalid humidity reading (0%%), ");
140 }
141 this->humidity_sensor_->publish_state(humidity);
142 }
143 this->status_clear_warning();
144 this->read_count_ = 0;
145}
147 if (this->read_count_ != 0)
148 return;
149 this->start_time_ = millis();
150 if (this->write(AHT10_MEASURE_CMD, sizeof(AHT10_MEASURE_CMD)) != i2c::ERROR_OK) {
151 this->status_set_warning(ESP_LOG_MSG_COMM_FAIL);
152 return;
153 }
154 this->restart_read_();
155}
156
158
160 ESP_LOGCONFIG(TAG, "AHT10:");
161 LOG_I2C_DEVICE(this);
162 if (this->is_failed()) {
163 ESP_LOGE(TAG, ESP_LOG_MSG_COMM_FAIL);
164 }
165 LOG_SENSOR(" ", "Temperature", this->temperature_sensor_);
166 LOG_SENSOR(" ", "Humidity", this->humidity_sensor_);
167}
168
169} // namespace aht10
170} // namespace esphome
virtual void mark_failed()
Mark this component as failed.
bool is_failed() const
void status_set_warning(const char *message="unspecified")
void status_set_error(const char *message="unspecified")
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.
Definition component.cpp:75
void dump_config() override
Definition aht10.cpp:159
sensor::Sensor * temperature_sensor_
Definition aht10.h:26
sensor::Sensor * humidity_sensor_
Definition aht10.h:27
float get_setup_priority() const override
Definition aht10.cpp:157
ErrorCode write(const uint8_t *data, size_t len, bool stop=true)
writes an array of bytes to a device using an I2CBus
Definition i2c.h:190
ErrorCode read(uint8_t *data, size_t len)
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:39
ErrorCode
Error codes returned by I2CBus and I2CDevice methods.
Definition i2c_bus.h:11
@ ERROR_OK
No error found during execution of method.
Definition i2c_bus.h:13
@ ERROR_INVALID_ARGUMENT
method called invalid argument(s)
Definition i2c_bus.h:14
const float DATA
For components that import data from directly connected sensors like DHT.
Definition component.cpp:20
Providing packet encoding functions for exchanging data with a remote host.
Definition a01nyub.cpp:7
constexpr uint32_t encode_uint24(uint8_t byte1, uint8_t byte2, uint8_t byte3)
Encode a 24-bit value given three bytes in most to least significant byte order.
Definition helpers.h:196
void IRAM_ATTR HOT delay(uint32_t ms)
Definition core.cpp:29
uint32_t IRAM_ATTR HOT millis()
Definition core.cpp:28
uint16_t temperature
Definition sun_gtil2.cpp:12