Skip to content

Docs for HDC2010 temperature and humidity sensor #5045

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 14 commits into
base: next
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions components/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -392,6 +392,7 @@ Environmental
ENS160, components/sensor/ens160, ens160.jpg, CO2 & Air Quality
ENS210, components/sensor/ens210, ens210.jpg, Temperature & Humidity
HDC1080, components/sensor/hdc1080, hdc1080.jpg, Temperature & Humidity
HDC2010, components/sensor/hdc2010, hdc2010.jpg, Temperature & Humidity
HHCCJCY10 (MiFlora Pink), components/sensor/xiaomi_hhccjcy10, xiaomi_hhccjcy10.jpg, Soil moisture & Temperature & Light
Honeywell ABP, components/sensor/honeywellabp, honeywellabp.jpg, Pressure & Temperature
Honeywell ABP2 I2C, components/sensor/honeywellabp2_i2c, honeywellabp.jpg, Pressure & Temperature
Expand Down
65 changes: 65 additions & 0 deletions components/sensor/hdc2010.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
HDC2010 High Precision Temperature and Humidity Sensor
======================================================
.. seo::
:description: Instructions for setting up HDC2010 temperature and humidity sensors.
:image: hdc2010.jpg
:keywords: HDC2010

The HDC2010 Temperature and Humidity sensor allows you to use your HDC2010
(`Datasheet <https://www.ti.com/lit/ds/symlink/hdc2010.pdf>`__,
`Itbrainpower <https://itbrainpower.net/a-gsm/Arduino-HDC2010-sensor_howto>`__) sensors with
ESPHome. The :ref:`I²C Bus <i2c>` is
required to be set up in your configuration for this sensor to work.

.. figure:: images/hdc2010-full.jpg
:align: center
:target: `Itbrainpower`_
:width: 50.0%

HDC2010 Temperature & Humidity Sensor. Image by `Itbrainpower`_.

.. _Itbrainpower: https://itbrainpower.net/a-gsm/Arduino-HDC2010-sensor_howto

.. figure:: images/temperature-humidity.png
:align: center
:width: 80.0%

.. code-block:: yaml

# Example configuration entry
sensor:
- platform: hdc2010
temperature:
name: "Living Room Temperature"
humidity:
name: "Living Room Humidity"
update_interval: 60s

Configuration variables:
------------------------

- **temperature** (**Required**): The information for the temperature sensor.

- All options from :ref:`Sensor <config-sensor>`.

- **humidity** (**Required**): The information for the humidity sensor

- All 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`
- :doc:`dht`
- :doc:`dht12`
- :doc:`htu21d`
- :doc:`sht3xd`
- :doc:`hdc1080`
- `HDC2010 Library <https://github.com/vigsterkr/homebridge-hdc2010/>`__
- `HDC2010 Library <https://github.com/lime-labs/HDC2080-Arduino/>`__
- `HDC2010 Tutorial and library <https://www.hackster.io/dragos-iosub/arduino-hdc2010-read-data-and-comfort-zone-alerts-3d62af/>`__
- :ghedit:`Edit`
Binary file added components/sensor/images/hdc2010-full.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/hdc2010.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.