Can the maximum current slider be changed? #391
-
The maximum current slider only goes up to 32a. I have a 40a charger and I can't set it to 40a. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 11 replies
-
Maybe it would be an idea to add a max current value to the initial configuration.
Optional as not needed, but nice for showing what you are setting up in the UI:
So if you do the same with 40 as max value and the correct entity name, it might help you until there is another fix. Sadly someone over at Home Assitant had the questionable idea to remove the customize panel in 12.2021 because it was not perfect... EDIT: Likely in your case there might be a limit in api.py, too.
@ line 527 looks like it could be a problem for your case. Maybe change that to 40 is working, maybe not... And while you are at it you of course could go into numbers.py @ line 34...
... and could change the max value here, too. |
Beta Was this translation helpful? Give feedback.
Maybe it would be an idea to add a max current value to the initial configuration.
I have a 16A charger for example and setting more causes a SuspendedEV state.
This would allow you to select 40A as maximum and me to select 16A.
As this is a number entity and the max is just set to 32 by default, it can be set to something else, too.
At least I was able to hackfix it with the following entry in my customize.yaml:
Optional as not needed, but nice for showing what you are setting up in the UI:
So if you do the same with 40 as max value and the correct entity name, it might help you until there is another fix.
Sadly someone …