From ee1976dc07cd92e3f7e5e7f9ea2fc22849d8f634 Mon Sep 17 00:00:00 2001 From: Frank Kopp Date: Mon, 7 Sep 2026 07:48:15 +0200 Subject: [PATCH] Add l/min unit mapping to nibe_heatpump sensors (#181433) --- homeassistant/components/nibe_heatpump/sensor.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/homeassistant/components/nibe_heatpump/sensor.py b/homeassistant/components/nibe_heatpump/sensor.py index 3982c64c1243..1e5d12499a9d 100644 --- a/homeassistant/components/nibe_heatpump/sensor.py +++ b/homeassistant/components/nibe_heatpump/sensor.py @@ -164,6 +164,13 @@ UNIT_DESCRIPTIONS = { state_class=SensorStateClass.MEASUREMENT, native_unit_of_measurement=UnitOfVolumeFlowRate.LITERS_PER_MINUTE, ), + "l/min": SensorEntityDescription( + key="l/min", + entity_category=EntityCategory.DIAGNOSTIC, + device_class=SensorDeviceClass.VOLUME_FLOW_RATE, + state_class=SensorStateClass.MEASUREMENT, + native_unit_of_measurement=UnitOfVolumeFlowRate.LITERS_PER_MINUTE, + ), "m³/h": SensorEntityDescription( key="m³/h", entity_category=EntityCategory.DIAGNOSTIC,