diff --git a/homeassistant/components/airthings/sensor.py b/homeassistant/components/airthings/sensor.py index 98e627d5b01..a3e4cebe771 100644 --- a/homeassistant/components/airthings/sensor.py +++ b/homeassistant/components/airthings/sensor.py @@ -19,6 +19,7 @@ from homeassistant.const import ( SIGNAL_STRENGTH_DECIBELS, EntityCategory, UnitOfPressure, + UnitOfSoundPressure, UnitOfTemperature, ) from homeassistant.core import HomeAssistant @@ -55,6 +56,12 @@ SENSORS: dict[str, SensorEntityDescription] = { native_unit_of_measurement=UnitOfPressure.MBAR, state_class=SensorStateClass.MEASUREMENT, ), + "sla": SensorEntityDescription( + key="sla", + device_class=SensorDeviceClass.SOUND_PRESSURE, + native_unit_of_measurement=UnitOfSoundPressure.WEIGHTED_DECIBEL_A, + state_class=SensorStateClass.MEASUREMENT, + ), "battery": SensorEntityDescription( key="battery", device_class=SensorDeviceClass.BATTERY,