Skip to content

Commit b66581f

Browse files
optimusprimespacekbx81swoboda1337
authored
Docs for HDC2010 temperature and humidity sensor (#5513)
* Docs for HDC2010 * Update hdc2010.rst * Update hdc2010.rst * Update hdc2010.rst * changed pictures * Update hdc2010.rst * Update index.rst * Update index.rst * Apply suggestions from code review * Delete components/index.rst * Readded the _index.md * reordered the files * updated the .rst to .md * removed blank lines * Update hdc2010.md * Changed the pictures * execution bit removed * Use png instead * Use docref instead --------- Co-authored-by: Keith Burzinski <[email protected]> Co-authored-by: Jonathan Swoboda <[email protected]>
1 parent a30054b commit b66581f

File tree

4 files changed

+52
-0
lines changed

4 files changed

+52
-0
lines changed

content/components/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -378,6 +378,7 @@ Sensors are organized into categories; if a given sensor fits into more than one
378378
"ENS160","components/sensor/ens160","ens160.jpg","eCO₂ & Air Quality",""
379379
"ENS210","components/sensor/ens210","ens210.jpg","Temperature & Humidity",""
380380
"HDC1080","components/sensor/hdc1080","hdc1080.jpg","Temperature & Humidity",""
381+
"HDC2010","components/sensor/hdc2010","hdc2010.png","Temperature & Humidity",""
381382
"HHCCJCY10 (MiFlora Pink)","components/sensor/xiaomi_hhccjcy10","xiaomi_hhccjcy10.jpg","Soil moisture & Temperature & Light",""
382383
"Honeywell ABP","components/sensor/honeywellabp","honeywellabp.jpg","Pressure & Temperature",""
383384
"Honeywell ABP2 I2C","components/sensor/honeywellabp2_i2c","honeywellabp.jpg","Pressure & Temperature",""
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
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" >}}
288 KB
Loading

static/images/hdc2010.png

38.6 KB
Loading

0 commit comments

Comments
 (0)