TEE501 Temperature Sensor ========================== .. seo:: :description: Instructions for setting up TEE501 temperature sensors :image: TEE501.png The ``hte501`` sensor platform Temperature sensor allows you to use your TEE501 (`datasheet `__, `E+E TEE501 `__) sensor with ESPHome. The :ref:`I²C Bus ` is required to be set up in your configuration for this sensor to work. .. figure:: images/TEE501.png :align: center :width: 80.0% .. code-block:: yaml # Example configuration entry sensor: - platform: tee501 name: "Office Temperature" address: 0x48 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 ``0x48``. - **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:`hte501` - :doc:`ee895` - :doc:`dht` - :doc:`dht12` - :apiref:`tee501/tee501.h` - :ghedit:`Edit`