2019-08-31 19:24:41 +02:00
SCD30 CO₂, Temperature and Relative Humidty Sensor
==================================================
.. seo ::
:description: Instructions for setting up SCD30 CO₂ Temperature and Relative Humidty Sensor
:image: scd30.jpg
2020-05-10 21:27:59 +02:00
The `` scd30 `` sensor platform allows you to use your Sensiron SCD30 CO₂
2020-05-24 01:41:48 +02:00
(`datasheet <https://www.sensirion.com/fileadmin/user_upload/customers/sensirion/Dokumente/9.5_CO2/Sensirion_CO2_Sensors_SCD30_Datasheet.pdf> `__ ) sensors with ESPHome.
2019-08-31 19:24:41 +02:00
The :ref: `I²C Bus <i2c>` is required to be set up in your configuration for this sensor to work.
.. figure :: images/scd30.jpg
:align: center
:width: 80.0%
.. code-block :: yaml
# Example configuration entry
sensor:
- platform: scd30
co2:
name: "Workshop CO2"
accuracy_decimals: 1
temperature:
name: "Workshop Temperature"
accuracy_decimals: 2
humidity:
name: "Workshop Humidity"
accuracy_decimals: 1
address: 0x61
update_interval: 5s
2020-05-10 21:27:59 +02:00
2019-08-31 19:24:41 +02:00
Configuration variables:
------------------------
- **co2** (**Required** ): The information for the CO₂ sensor.
- **name** (**Required** , string): The name for the CO₂eq sensor.
- **id** (*Optional* , :ref: `config-id` ): Set the ID of this sensor for use in lambdas.
- All other options from :ref: `Sensor <config-sensor>` .
- **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-05-10 21:27:59 +02:00
- **address** (*Optional* , int): Manually specify the I^2C address of the sensor.
2019-08-31 19:24:41 +02:00
Defaults to `` 0x61 `` .
- **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`
- :apiref: `scd30/scd30.h`
- :ghedit: `Edit`