diff --git a/components/sensor/sht3xd.rst b/components/sensor/sht3xd.rst index 0c076edb2..3f71cad44 100644 --- a/components/sensor/sht3xd.rst +++ b/components/sensor/sht3xd.rst @@ -2,16 +2,17 @@ SHT3X-D Temperature+Humidity Sensor =================================== .. seo:: - :description: Instructions for setting up SHT31-D/SHT3x temperature and humidity sensors + :description: Instructions for setting up SHT31-D/SHT3x and SHT85 temperature and humidity sensors :image: sht3xd.jpg The ``sht3xd`` sensor platform Temperature+Humidity sensor allows you to use your Sensirion SHT31-D/SHT3x (`datasheet `__, -`Adafruit`_ ) sensors with -ESPHome. The :ref:`I²C Bus ` is -required to be set up in your configuration for this sensor to work. +`Adafruit`_ ) and SHT85 (`datasheet `__, +`Sensirion`_ ) sensors with Esphome. +The :ref:`I²C Bus ` is required to be set up in your configuration for this sensor to work. .. _Adafruit: https://www.adafruit.com/product/2857 +.. _Sensirion: https://sensirion.com/products/catalog/SHT85/ .. figure:: images/temperature-humidity.png :align: center @@ -32,20 +33,20 @@ required to be set up in your configuration for this sensor to work. Configuration variables: ------------------------ -- **temperature** (**Required**): The information for the temperature sensor. +- **temperature** (*Optional*): The information for the temperature sensor. - **name** (**Required**, string): The name for the temperature sensor. - **id** (*Optional*, :ref:`config-id`): Set the ID of this sensor for use in lambdas. - All other options from :ref:`Sensor `. -- **humidity** (**Required**): The information for the humidity sensor. +- **humidity** (*Optional*): The information for the humidity sensor. - **name** (**Required**, string): The name for the humidity sensor. - **id** (*Optional*, :ref:`config-id`): Set the ID of this sensor for use in lambdas. - All other options from :ref:`Sensor `. - **address** (*Optional*, int): Manually specify the I²C address of the sensor. - Defaults to ``0x44``. + Defaults to ``0x44``. For SHT3x, an alternate address can be ``0x45`` while SHT85 supports only address ``0x44`` - **update_interval** (*Optional*, :ref:`config-time`): The interval to check the sensor. Defaults to ``60s``. - **heater_enabled** (*Optional*, bool): Turn on/off heater at boot.