|
| 1 | +--- |
| 2 | +description: "Instructions for setting up HDC2010 temperature and humidity sensors." |
| 3 | +title: "HDC2010 High Precision Temperature and Humidity Sensor" |
| 4 | +params: |
| 5 | + seo: |
| 6 | + description: Instructions for setting up HDC2010 temperature and humidity sensors. |
| 7 | + image: hdc2010.png |
| 8 | +--- |
| 9 | + |
| 10 | +The HDC2010 Temperature and Humidity sensor allows you to use your HDC2010 |
| 11 | +([datasheet](https://www.ti.com/lit/ds/symlink/hdc2010.pdf), |
| 12 | +[Itbrainpower](https://itbrainpower.net/a-gsm/Arduino-HDC2010-sensor_howto)) sensors with |
| 13 | +ESPHome. The {{< docref "i2c/" >}} is |
| 14 | +required to be set up in your configuration for this sensor to work. |
| 15 | + |
| 16 | +{{< img src="hdc2010-full.png" alt="Image" caption="HDC2010 Temperature & Humidity Sensor. Image by `Mikroe`." width="50.0%" class="align-center" >}} |
| 17 | + |
| 18 | +{{< img src="temperature-humidity.png" alt="Image" width="80.0%" class="align-center" >}} |
| 19 | + |
| 20 | +```yaml |
| 21 | +# Example configuration entry |
| 22 | +sensor: |
| 23 | + - platform: hdc2010 |
| 24 | + temperature: |
| 25 | + name: "Living Room Temperature" |
| 26 | + humidity: |
| 27 | + name: "Living Room Humidity" |
| 28 | + update_interval: 60s |
| 29 | +``` |
| 30 | +
|
| 31 | +## Configuration variables |
| 32 | +
|
| 33 | +- **temperature** (**Required**): The information for the temperature sensor. |
| 34 | +
|
| 35 | + - All options from {{< docref "sensor/" >}}. |
| 36 | +
|
| 37 | +- **humidity** (**Required**): The information for the humidity sensor |
| 38 | +
|
| 39 | + - All options from {{< docref "sensor/" >}}. |
| 40 | +
|
| 41 | +- **update_interval** (*Optional*, {{< docref "time/" >}}): The interval to check the sensor. Defaults to `60s`. |
| 42 | + |
| 43 | +## See Also |
| 44 | + |
| 45 | +- {{< docref "sensor/#sensor-filters" >}} |
| 46 | +- {{< docref "absolute_humidity/" >}} |
| 47 | +- {{< docref "dht/" >}} |
| 48 | +- {{< docref "dht12/" >}} |
| 49 | +- {{< docref "htu21d/" >}} |
| 50 | +- {{< docref "sht3xd/" >}} |
| 51 | +- {{< apiref "hdc2010/hdc2010.h" "hdc2010/hdc2010.h" >}} |
0 commit comments