From ec2ef1ce26b0dc820f6b1b4449ce9dfe307c8334 Mon Sep 17 00:00:00 2001 From: Rik Allen Date: Wed, 29 Jul 2026 23:13:16 +0100 Subject: [PATCH] fix(config): raise car charging rate/threshold max to 24kW for 3-phase chargers car_charging_rate (and _1/_2/_3) and car_charging_threshold were capped at 11kW - enough for single-phase EU chargers (raised from 8.5 in #4312) but too low for 3-phase home chargers, which commonly run up to ~22kW. Since #4273, load_user_config() clamps input_number config items to their declared min/max even when set via apps.yaml, not just the GUI slider - so a 3-phase owner setting their real charging rate above 11kW was silently clamped down to it, capping their actual charge rate in the plan well below what their hardware can do. --- apps/predbat/config.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/apps/predbat/config.py b/apps/predbat/config.py index f2acafc86..4d9120975 100644 --- a/apps/predbat/config.py +++ b/apps/predbat/config.py @@ -234,7 +234,7 @@ "friendly_name": "Car charging threshold", "type": "input_number", "min": 4, - "max": 11, + "max": 24, "step": 0.10, "unit": "kW", "icon": "mdi:ev-station", @@ -245,7 +245,7 @@ "friendly_name": "Car charging rate (Car 0)", "type": "input_number", "min": 1, - "max": 11, + "max": 24, "step": 0.10, "unit": "kW", "icon": "mdi:ev-station", @@ -258,7 +258,7 @@ "friendly_name": "Car charging rate (Car 1)", "type": "input_number", "min": 1, - "max": 11, + "max": 24, "step": 0.10, "unit": "kW", "icon": "mdi:ev-station", @@ -271,7 +271,7 @@ "friendly_name": "Car charging rate (Car 2)", "type": "input_number", "min": 1, - "max": 11, + "max": 24, "step": 0.10, "unit": "kW", "icon": "mdi:ev-station", @@ -284,7 +284,7 @@ "friendly_name": "Car charging rate (Car 3)", "type": "input_number", "min": 1, - "max": 11, + "max": 24, "step": 0.10, "unit": "kW", "icon": "mdi:ev-station",