SHT3X-D Temperature+Humidity Sensor

The sht3xd sensor platform Temperature+Humidity sensor allows you to use your Sensirion SHT31-D/SHT3x (datasheet, Adafruit ) sensors with ESPHome. The I²C Bus is required to be set up in your configuration for this sensor to work.

../../_images/temperature-humidity.png
# Example configuration entry
sensor:
  - platform: sht3xd
    temperature:
      name: "Living Room Temperature"
    humidity:
      name: "Living Room Humidity"
    address: 0x44
    update_interval: 60s

Configuration variables:

  • temperature (Required): The information for the temperature sensor.

    • name (Required, string): The name for the temperature sensor.

    • id (Optional, ID): Set the ID of this sensor for use in lambdas.

    • All other options from Sensor.

  • humidity (Required): The information for the humidity sensor.

    • name (Required, string): The name for the humidity sensor.

    • id (Optional, ID): Set the ID of this sensor for use in lambdas.

    • All other options from Sensor.

  • address (Optional, int): Manually specify the I²C address of the sensor. Defaults to 0x44.

  • update_interval (Optional, Time): The interval to check the sensor. Defaults to 60s.

  • heater_enabled (Optional, bool): Turn on/off heater at boot. This may help provide more accurate readings in condensing conditions, but can also increase temperature readings and decrease humidity readings as a side effect. Defaults to false.

See Also