diff --git a/custom_components/evcc_intg/const.py b/custom_components/evcc_intg/const.py index a26102b..68b59e9 100644 --- a/custom_components/evcc_intg/const.py +++ b/custom_components/evcc_intg/const.py @@ -520,6 +520,15 @@ class ExtSwitchEntityDescription(SwitchEntityDescription): device_class=None, suggested_display_precision=0 ), + ExtSensorEntityDescription( + tag=Tag.EFFECTIVELIMITSOC, + key=Tag.EFFECTIVELIMITSOC.key, + icon="mdi:battery-charging", + state_class=SensorStateClass.MEASUREMENT, + native_unit_of_measurement=PERCENTAGE, + device_class=None, + suggested_display_precision=0 + ), ExtSensorEntityDescription( tag=Tag.HOMEPOWER, key=Tag.HOMEPOWER.key, diff --git a/custom_components/evcc_intg/manifest.json b/custom_components/evcc_intg/manifest.json index 84bf6f9..12eaa14 100644 --- a/custom_components/evcc_intg/manifest.json +++ b/custom_components/evcc_intg/manifest.json @@ -10,5 +10,5 @@ "iot_class": "local_polling", "issue_tracker": "https://github.com/marq24/ha-evcc/issues", "requirements": [], - "version": "2025.2.0" + "version": "2025.2.1" }