DPS310 Atmospheric Pressure Sensor

The dps310 sensor platform allows you to use both the temperature and pressure sensors on your DPS310 atmospheric pressure sensor (Adafruit) with ESPHome. The I²C component is required to be set up in your configuration.

../../_images/dps310-full.jpg

DPS310 Atmospheric Pressure Sensor board from Adafruit

# Example configuration entry
sensor:
  - platform: dps310
    temperature:
      name: "Outside Temperature"
    pressure:
      name: "Outside Pressure"
    address: 0x77
    update_interval: 60s

Configuration variables:

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

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

  • 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