MS5611 Atmospheric Pressure Sensor

The ms5611 sensor platform allows you to use the MS5611 atmospheric pressure-and-temperature sensor with ESPHome (see the datasheet for technical details). The I²C is required to be set up in your configuration for this sensor to work.

../../_images/ms5611-full.jpg

MS5611 Atmospheric Pressure Sensor

../../_images/ms5611-ui.png
# Example configuration entry
sensor:
  - platform: ms5611
    temperature:
      name: "Temperature"
    pressure:
      name: "Pressure"

Configuration variables:

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

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

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

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

See Also