STS3X Temperature Sensor ======================== .. seo:: :description: Instructions for setting up STS3x-DIS temperature sensors :image: sts3x.jpg The ``sts3x`` sensor platform Temperature sensor allows you to use your Sensirion STS30-DIS, STS31-DIS or STS35-DIS (`datasheet `__, `Sensirion STS3x `__) sensors with ESPHome. The :ref:`I²C Bus ` is required to be set up in your configuration for this sensor to work. .. figure:: images/temperature.png :align: center :width: 80.0% .. code-block:: yaml # Example configuration entry sensor: - platform: sts3x name: "Living Room Temperature" address: 0x4A update_interval: 60s Configuration variables: ------------------------ - **name** (**Required**, string): The name for the temperature sensor. - **address** (*Optional*, int): Manually specify the I²C address of the sensor. Defaults to ``0x4A``. - **update_interval** (*Optional*, :ref:`config-time`): The interval to check the sensor. Defaults to ``60s``. - **id** (*Optional*, :ref:`config-id`): Set the ID of this sensor for use in lambdas. - All other options from :ref:`Sensor `. See Also -------- - :ref:`sensor-filters` - :doc:`dht` - :doc:`dht12` - :doc:`hdc1080` - :doc:`htu21d` - :doc:`sht3xd` - :apiref:`sts3x/sts3x.h` - :ghedit:`Edit`