2021-04-09 03:40:51 +02:00
SGP40 Volatile Organic Compound Sensor
======================================
.. seo ::
:description: Instructions for setting up SGP40 Volatile Organic Compound sensor
:image: sgp40.jpg
2021-05-19 22:17:39 +02:00
The `` sgp40 `` sensor platform allows you to use your Sensirion SGP40 VOC sensor
2021-04-09 03:40:51 +02:00
(`datasheet <https://www.sensirion.com/fileadmin/user_upload/customers/sensirion/Dokumente/9_Gas_Sensors/Sensirion_Gas_Sensors_SGP40_Datasheet.pdf> `__ ) with ESPHome.
The :ref: `I²C Bus <i2c>` is required to be set up in your configuration for this sensor to work.
2021-10-14 22:39:29 +02:00
.. note ::
This sensor need to be driven at a rate of 1Hz. Because of this, the
sensor will be read out on device once a second separately from the
update_interval. The state will be reported to other components, or
the front end at the update_interval, saving wifi power and network
communication.
2021-04-09 03:40:51 +02:00
.. figure :: images/sgp40.jpg
:align: center
:width: 80.0%
.. code-block :: yaml
# Example configuration entry
sensor:
- platform: sgp40
name: "Workshop VOC"
Configuration variables:
------------------------
- **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.
- **update_interval** (*Optional* , :ref: `config-time` ): The interval to check the sensor. Defaults to `` 60s ``
2021-11-28 19:57:01 +01:00
- **store_baseline** (*Optional* , boolean): Stores and retrieves the baseline information for quicker startups. Defaults to `` true ``
2021-04-09 03:40:51 +02:00
- **compensation** (*Optional* ): The block containing sensors used for compensation. If not set defaults will be used.
- **temperature_source** (*Optional* , :ref: `config-id` ): Give an external temperature sensor ID
here. This can improve the sensor's internal calculations. Defaults to `` 25 ``
- **humidity_source** (*Optional* , :ref: `config-id` ): Give an external humidity sensor ID
here. This can improve the sensor's internal calculations. Defaults to `` 50 ``
- All other options from :ref: `Sensor <config-sensor>` .
Example With Compensation
-------------------------
.. code-block :: yaml
# Example configuration entry
sensor:
- platform: sgp40
name: "Workshop VOC"
update_interval: 5s
compensation:
2021-09-13 22:02:52 +02:00
humidity_source: dht1_hum
temperature_source: dht1_temp
2021-04-09 03:40:51 +02:00
See Also
--------
- :ref: `sensor-filters`
- :doc: `dht`
- :doc: `dht12`
- :doc: `hdc1080`
- :doc: `htu21d`
- :doc: `sht3xd`
- :apiref: `sgp40/sgp40.h`
- :ghedit: `Edit`