MPL3115A2 Barometric Pressure/Altitude/Temperature Sensor

The mpl3115a2 sensor platform allows you to use your MPL3115A2 atmospheric pressure sensors (datasheetExternal link, Adafruit_) temperature and pressure sensors with ESPHome. The I²C is required to be set up in your configuration for this sensor to work.

AdafruitExternal link

# Example configuration entry
sensor:
- platform: mpl3115a2
  temperature:
    name: "MPL3115A2 Temperature"
  pressure:
    name: "MPL3115A2 Pressure"
  update_interval: 10s

Configuration variables: Copy link to header

The MPL3115A2 can be configured to output either pressure or altitude depending on which sensor is configured.

  • pressure (Optional): The information for the pressure sensor.

  • altitude (Optional): The information for the altitude sensor.

  • temperature (Optional): The information for the temperature sensor.

  • address (Optional, int): Manually specify the I²C address of the sensor. Defaults to 0x60.

  • update_interval (Optional, Time): The interval to check the sensor. Defaults to 60s.

See Also Copy link to header

CURRENT