From ea28d5e1c952aa8f6f6d354d9f07b5c018b2f972 Mon Sep 17 00:00:00 2001 From: Christian Date: Sat, 2 Sep 2023 01:03:37 +0100 Subject: [PATCH] Feature/heating si7021 (#3150) * update * Update components/sensor/htu21d.rst --------- Co-authored-by: Keith Burzinski --- components/sensor/htu21d.rst | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/components/sensor/htu21d.rst b/components/sensor/htu21d.rst index 0bb4b75b4..b07847699 100644 --- a/components/sensor/htu21d.rst +++ b/components/sensor/htu21d.rst @@ -9,6 +9,7 @@ HTU21D | Si7021 | SHT21 Temperature & Humidity Sensor The HTU21D Temperature & Humidity component allows you to use HTU21D, Si7021 and SHT21 sensors with ESPHome. The :ref:`I²C Bus ` is required to be set up in your configuration for this sensor to work. + Example sensors: - (`Adafruit `__) @@ -34,6 +35,8 @@ Example sensors: name: "Temperature" humidity: name: "Humidity" + heater: + name: "Heater" Configuration variables: ------------------------ @@ -44,8 +47,12 @@ Configuration variables: - **humidity** (*Optional*): The information for the humidity sensor. All options from :ref:`Sensor `. +- **heater** (*Optional*): The information for the heater sensor. + All options from :ref:`Sensor `. + - **update_interval** (*Optional*, :ref:`config-time`): The interval to check the sensor. Defaults to ``60s``. +The heater may be enabled to help correct the reading; see the datasheet for more information. See Also --------