2019-10-19 21:32:59 +02:00
SHTCx Temperature+Humidity Sensors
==================================
.. seo ::
:description: Instructions for setting up SHTC1 and SHTC3 temperature and humidity sensors
:image: shtc3.jpg
2021-05-19 22:17:39 +02:00
The `` shtcx `` sensor platform Temperature+Humidity sensor allows you to use your Sensirion SHTC1
2020-05-24 01:40:04 +02:00
(`datasheet <https://www.sensirion.com/fileadmin/user_upload/customers/sensirion/Dokumente/2_Humidity_Sensors/Datasheets/Sensirion_Humidity_Sensors_SHTC1_Datasheet.pdf> `__ ,
2019-10-19 21:32:59 +02:00
`Sensirion STHC1 <https://www.sensirion.com/en/environmental-sensors/humidity-sensors/digital-humidity-sensor-for-consumer-electronics-and-iot/> `__ ) and
the newer SHTC3
2020-05-24 01:40:04 +02:00
(`datasheet <https://www.sensirion.com/fileadmin/user_upload/customers/sensirion/Dokumente/2_Humidity_Sensors/Datasheets/Sensirion_Humidity_Sensors_SHTC3_Datasheet.pdf> `__ ,
2020-05-10 21:27:59 +02:00
`SparkFun`_ ) sensors with
2019-10-19 21:32:59 +02:00
ESPHome. The :ref: `I²C Bus <i2c>` is
required to be set up in your configuration for this sensor to work.
2020-05-10 21:27:59 +02:00
.. _SparkFun: https://www.sparkfun.com/products/15074
2019-10-19 21:32:59 +02:00
.. figure :: images/temperature-humidity.png
:align: center
:width: 80.0%
.. code-block :: yaml
# Example configuration entry
sensor:
- platform: shtcx
temperature:
name: "Living Room Temperature"
humidity:
name: "Living Room Humidity"
address: 0x70
update_interval: 60s
Configuration variables:
------------------------
- **temperature** (**Required** ): The information for the temperature sensor.
- **name** (**Required** , string): The name for the temperature sensor.
- **id** (*Optional* , :ref: `config-id` ): Set the ID of this sensor for use in lambdas.
- All other options from :ref: `Sensor <config-sensor>` .
- **humidity** (**Required** ): The information for the humidity sensor.
- **name** (**Required** , string): The name for the humidity sensor.
- **id** (*Optional* , :ref: `config-id` ): Set the ID of this sensor for use in lambdas.
- All other options from :ref: `Sensor <config-sensor>` .
2020-11-09 02:22:55 +01:00
- **address** (*Optional* , int): Manually specify the I²C address of the sensor.
2019-10-19 21:32:59 +02:00
Defaults to `` 0x70 `` .
- **update_interval** (*Optional* , :ref: `config-time` ): The interval to check the
sensor. Defaults to `` 60s `` .
See Also
--------
- :ref: `sensor-filters`
- :doc: `dht`
- :doc: `dht12`
- :doc: `hdc1080`
- :doc: `htu21d`
- :doc: `sht3xd`
- :apiref: `shtcx/shtcx.h`
- :ghedit: `Edit`