SCD30 CO₂, Temperature and Relative Humidty Sensor ================================================== .. seo:: :description: Instructions for setting up SCD30 CO₂ Temperature and Relative Humidty Sensor :image: scd30.jpg The ``scd30`` sensor platform allows you to use your Sensiron SCD30 CO₂ (`datasheet `__) sensors with ESPHome. The :ref:`I²C Bus ` 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 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 `. - **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 `. - **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 `. - **address** (*Optional*, int): Manually specify the I^2C address of the sensor. 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`