mirror of
https://github.com/esphome/esphome-docs.git
synced 2024-11-05 09:20:08 +01:00
3e74757ce9
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
59 lines
1.8 KiB
ReStructuredText
59 lines
1.8 KiB
ReStructuredText
ENS210 Temperature+Humidity Sensor
|
|
==================================
|
|
|
|
.. seo::
|
|
:description: Instructions for setting up ENS210 temperature and humidity sensors
|
|
:image: ens210.jpg
|
|
:keywords: ENS210
|
|
|
|
The ``ENS210`` Temperature+Humidity sensor allows you to use your ENS210
|
|
(`datasheet <https://www.sciosense.com/wp-content/uploads/2021/01/ENS210.pdf>`__) i2c-based sensor with ESPHome.
|
|
|
|
.. figure:: images/ens210.jpg
|
|
:align: center
|
|
:width: 80.0%
|
|
|
|
ENS210 Temperature & Humidity Sensor.
|
|
|
|
.. figure:: images/temperature-humidity.png
|
|
:align: center
|
|
:width: 80.0%
|
|
|
|
.. code-block:: yaml
|
|
|
|
# Example configuration entry
|
|
sensor:
|
|
- platform: ens210
|
|
temperature:
|
|
name: "Living Room Temperature"
|
|
humidity:
|
|
name: "Living Room Humidity"
|
|
update_interval: 60s
|
|
|
|
Configuration variables:
|
|
------------------------
|
|
|
|
- **temperature** (**Required**): 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 <config-sensor>`.
|
|
|
|
- **humidity** (**Required**): 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 <config-sensor>`.
|
|
|
|
- **update_interval** (*Optional*, :ref:`config-time`): The interval to check the sensor. Defaults to ``60s``.
|
|
|
|
|
|
See Also
|
|
--------
|
|
|
|
- :ref:`sensor-filters`
|
|
- :doc:`absolute_humidity`
|
|
- :apiref:`ENS210/ENS210.h`
|
|
- `ENS210 Library <https://github.com/maarten-pennings/ENS210>`__ by `Maarten Pennings <https://github.com/maarten-pennings>`__
|
|
- :ghedit:`Edit`
|