-
Notifications
You must be signed in to change notification settings - Fork 1
Description
Spring is around the corner and then it will be time to look at the automation for charging the electrical cars when there is surplus energy.
The integration proveides the returned power but it would be easier to use the returned current if it can be read from the echelon. Otherwise i'll have to calculate it from power and voltage.
I plan on adjustning the dynamic_charge_limit on my easee home charger on a timer with the surplus current. Something along the line of
If (sensor.echelon_l1_current_returned >0){ currentP1 +=sensor.echelon_l1_current_returned;}
else if (sensor.echelon_l1_current>0) { currentP1 +=sensor.echelon_l1_current;}
or maybe also including the actual current state_inCurrentT so i just set the max to the current current plus the export (so i won't continue to inccrease the limit on phase if it is one of the others that are actually limiting it,
If the echelon does not provide the data i will have to make an automation that just look at the from grid without knowing how much is exported to the grid.
Or would it be better to wait for the upgraded MEP interface with MQTT ?