Skip to content

Commit d14711a

Browse files
viorelsfrenck
authored andcommitted
Add support for Sensirion SHT31 sensor
1 parent 6f63554 commit d14711a

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
---
2+
layout: page
3+
title: "Sensirion SHT31 Sensor"
4+
description: "Instructions how to integrate SHT31 sensors within Home Assistant."
5+
date: 2018-03-06 19:15
6+
sidebar: true
7+
comments: false
8+
sharing: true
9+
footer: true
10+
ha_category: DIY
11+
ha_release: N/A
12+
logo: dht.png
13+
ha_iot_class: "Local Polling"
14+
---
15+
16+
17+
The `sht31` sensor platform allows you to get the current temperature and humidity from a Sensirion SHT31 device.
18+
19+
To use your SHT31 sensor in your installation, add the following to your `configuration.yaml` file:
20+
21+
```yaml
22+
# Example configuration.yaml entry
23+
sensor:
24+
platform: sht31
25+
name: Bedroom
26+
monitored_conditions:
27+
- temperature
28+
- humidity
29+
```
30+
31+
Configuration variables:
32+
33+
- **name** (*Optional*): The name of the sensor.
34+
- **monitored_conditions** array (*Required*): Conditions to monitor. Available conditions are only *temperature* and *humidity*.

0 commit comments

Comments
 (0)