Honeywell ABP Pressure Sensors

The honeywellabp sensor platform allows you to use your Honeywell ABP (website, datasheet, Mouser) pressure and temperature sensors with ESPHome. The SPI is required to be set up in your configuration for this sensor to work

../../_images/honeywellabp.jpg

Honeywell ABP Pressure and Temperature Sensor.

# Example configuration entry
sensor:
  - platform: honeywellabp
    pressure:
      name: "Honeywell pressure"
      unit_of_measurement: "psi"
      min_pressure: 0
      max_pressure: 15
    temperature:
      name: "Honeywell temperature"
    cs_pin: GPIO5 #D5

Configuration variables:

The values for min_pressure and max_pressure can be found in the device datasheet for the specific device. These are used to calculate the pressure reading published by the sensor. Some sensors measure pressure in bar or kPa; set min_pressure and max_pressure to the measurement range and unit_of_measurement to the appropriate unit for your device.

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

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

    • min_pressure (Required, int or float): Minimum pressure for the pressure sensor, default unit psi.

    • max_pressure (Required, int or float): Maximum pressure for the pressure sensor, default unit psi.

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

    • All other options from Sensor.

Some sensors do not have temperature sensing ability, see datasheet. In some cases the sensor may return a valid temperature even though the datasheet indicates that the sensor does not measure temperature.

  • temperature (Optional): 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.

  • cs_pin (Required, SPI): Chip select pin.

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

See Also