EE895 CO₂, Temperature and Pressure Sensor¶
The ee895
sensor platform allows you to use your EE895 CO₂
(datasheet,
E+E EE895) sensor with ESPHome.
The I²C Bus is required to be set up in your configuration for this sensor to work. We recommend the use of pull up resistors.
# Example configuration entry
sensor:
- platform: ee895
co2:
name: "Office CO2"
accuracy_decimals: 0
temperature:
name: "Office Temperature"
accuracy_decimals: 2
pressure:
name: "Office Pressure"
accuracy_decimals: 1
address: 0x5F
update_interval: 15s
Configuration variables:¶
temperature (Required): The information for the Temperature sensor.
All options from Sensor.
co2 (Required): The information for the CO₂ sensor.
All options from Sensor.
pressure (Required): The information for the Pressure sensor.
All options from Sensor.
address (Optional, int): Manually specify the I²C address of the sensor. Defaults to
0x5F
.update_interval (Optional, Time): The interval to check the sensor. Defaults to
60s
.