diff --git a/homeassistant/components/refoss/sensor.py b/homeassistant/components/refoss/sensor.py index 3857b401d0d..9f5ee5d898a 100644 --- a/homeassistant/components/refoss/sensor.py +++ b/homeassistant/components/refoss/sensor.py @@ -50,10 +50,10 @@ SENSORS: dict[str, tuple[RefossSensorEntityDescription, ...]] = { translation_key="power", device_class=SensorDeviceClass.POWER, state_class=SensorStateClass.MEASUREMENT, - native_unit_of_measurement=UnitOfPower.KILO_WATT, - suggested_unit_of_measurement=UnitOfPower.WATT, + native_unit_of_measurement=UnitOfPower.WATT, suggested_display_precision=2, subkey="power", + fn=lambda x: x / 1000.0, ), RefossSensorEntityDescription( key="voltage",