mirror of
https://github.com/esphome/esphome-docs.git
synced 2024-11-04 09:10:02 +01:00
d0378c71b8
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com> Co-authored-by: H. Árkosi Róbert <robreg@zsurob.hu>
48 lines
1.4 KiB
ReStructuredText
48 lines
1.4 KiB
ReStructuredText
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 <https://www.epluse.com/fileadmin/data/product/tee501/datasheet_TEE501.pdf>`__,
|
|
`E+E TEE501 <https://www.epluse.com/products/temperature-measurement/temperature-sensing-element/tee501/>`__) sensor with
|
|
ESPHome. The :ref:`I²C Bus <i2c>` 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 <config-sensor>`.
|
|
|
|
See Also
|
|
--------
|
|
|
|
- :ref:`sensor-filters`
|
|
- :doc:`hte501`
|
|
- :doc:`ee895`
|
|
- :doc:`dht`
|
|
- :doc:`dht12`
|
|
- :apiref:`tee501/tee501.h`
|
|
- :ghedit:`Edit`
|