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.

../../_images/EE895.png
# 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.

    • name (Required, string): The name for the temperature sensor.

    • id (Optional, ID): Set the ID of this sensor for use in lambdas.

    • All other options from Sensor.

  • co2 (Required): The information for the CO₂ sensor.

    • name (Required, string): The name for the CO₂eq sensor.

    • id (Optional, ID): Set the ID of this sensor for use in lambdas.

    • All other options from Sensor.

  • pressure (Required): The information for the Pressure sensor.

    • name (Required, string): The name for the Pressure sensor.

    • id (Optional, ID): Set the ID of this sensor for use in lambdas.

    • All other 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.

See Also