AHT10 Temperature+Humidity Sensor¶
The aht10
Temperature+Humidity sensor allows you to use your aht10
(datasheet) i2c-based sensor with ESPHome.

AHT10 Temperature & Humidity Sensor.¶

Note
When configured for humidity, the log ‘Components should block for at most 20-30ms in loop().’ will be generated in verbose mode. This is due to technical specs of the sensor and can not be avoided.
# Example configuration entry
sensor:
- platform: aht10
temperature:
name: "Living Room Temperature"
humidity:
name: "Living Room Humidity"
update_interval: 60s
Configuration variables:¶
temperature (Required): The information for the temperature sensor.
humidity (Required): The information for the humidity sensor
update_interval (Optional, Time): The interval to check the sensor. Defaults to
60s
.