diff --git a/custom_components/monta/sensor.py b/custom_components/monta/sensor.py index 7bd13ed..90484d6 100644 --- a/custom_components/monta/sensor.py +++ b/custom_components/monta/sensor.py @@ -49,6 +49,13 @@ class MontaSensorEntityDescription(SensorEntityDescription): device_class=SensorDeviceClass.ENUM, options=[x.value for x in ChargerStatus], ), + SensorEntityDescription( + key="charger_lastMeterReadingKwh", + name="Last meter reading", + icon="mdi:counter", + device_class=SensorDeviceClass.ENERGY, + native_unit_of_measurement="kWh", + ), )