-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Are Disable / Enable charger safe to use? #155
Comments
I am a bit puzzled by what you are writing. I assume you are talking about the "is_enabled" switch? Anyway, it is not the recommended way to control the charger, unless you have some sort of specific requirement you should use the circuit current limit or the pause/resume. |
Yes, it's the is_enabled switch. When I use set_charger_dynamic_limit with current=10, charging stops and status changes from charging to awaiting_start, and reason_for_no_current=undefined. But: pause/resume works! |
Pausing sets the dynamic charger current to 0 , hence why you get max_dynamic_charger_current_too_low, totally fine. Any property with "dynamic" in it, is safe because its stored in volatile memory, not written to the flash. Enabling / disabling it, is more akin to switch it off, i.e. don't allow charging at all. Its not something you should be doing often though. Better to stick with pause / resume. |
There is some information on the easee developer page that is kind of required reading to understand what the different limits and functions actually does. |
I have a Hyundai Kona. Charger current limiting doesn't work with that (at least not while the car is plugged in). Neither does start/stop charging.
But disable/enable works just fine! So I've made a "smart night charge" mode based on that.
It's quite easy to do as well, since you have a HA switch for it!
Question: Are there any problems with this way to stop/restart charging?
The text was updated successfully, but these errors were encountered: