diff --git a/homeassistant/components/ecowitt/sensor.py b/homeassistant/components/ecowitt/sensor.py index 6620f61961f..096c213b708 100644 --- a/homeassistant/components/ecowitt/sensor.py +++ b/homeassistant/components/ecowitt/sensor.py @@ -213,6 +213,12 @@ ECOWITT_SENSORS_MAPPING: Final = { native_unit_of_measurement=UnitOfPressure.INHG, state_class=SensorStateClass.MEASUREMENT, ), + EcoWittSensorTypes.VPD_INHG: SensorEntityDescription( + key="VPD_INHG", + device_class=SensorDeviceClass.PRESSURE, + native_unit_of_measurement=UnitOfPressure.INHG, + state_class=SensorStateClass.MEASUREMENT, + ), EcoWittSensorTypes.PERCENTAGE: SensorEntityDescription( key="PERCENTAGE", native_unit_of_measurement=PERCENTAGE,