Franck Nijhof ebca3218c7
🔥Removes linkable_title everywhere (#9772)
* Automatically create linkable headers

* Visually improve position of linkable header chain icon

* Do not auto link  headers on homepage

* Remove linkable_title everywhere

* 🚑 Re-instante linkable_title plugin as NOOP
2019-07-04 19:08:27 +02:00

1.3 KiB

layout, title, description, date, sidebar, comments, sharing, footer, ha_category, ha_release, logo, ha_iot_class, redirect_from
layout title description date sidebar comments sharing footer ha_category ha_release logo ha_iot_class redirect_from
page Sensirion SHT31 Sensor Instructions on how to integrate SHT31 sensors within Home Assistant. 2018-03-06 19:15 true false true true
DIY
0.68 sensirion.png Local Polling
/components/sensor.sht31/

The sht31 sensor platform allows you to get the current temperature and humidity from a Sensirion SHT31 device.

Configuration

To use your SHT31 sensor in your installation, add the following to your configuration.yaml file:

# Example configuration.yaml entry
sensor:
  platform: sht31
  name: Bedroom
  i2c_address: 0x44
  monitored_conditions:
    - temperature
    - humidity

{% configuration %} name: description: The name of the sensor. Temperature and Humidity will be added to the name for the sensor name. required: false default: SHT31 type: string i2c_address: description: I2C address of the sensor. required: false default: "0x44" type: integer monitored_conditions: description: Conditions to monitor. required: false default: All conditions type: list keys: temperature: description: The current temperature of the SHT31. humidity: description: The current humidity of the SHT31. {% endconfiguration %}