Replies: 1 comment
-
Solved. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm new to predbat and HA, have set up predbat planning and it's controlling my GE inverter fine. Have now set up car charging using predbat with Octopus Agile (so predbat planned charging), and I'm using the basic recommended automation in the Predbat documentation to start/stop my Easee EV charger based on change of state of the car_charging_slot sensor. During the predbat planned charging period, every 5 mins the sensor flips status, which is then picked up by my automation which it turn flips my charger on or off. This continues for the whole of the planned charging slot. Predbat seems to be picking up the car SoC from the integration I have set up to plan the charging slots OK. I can't find a report of anyone else having this problem so I must have something set up incorrectly, but I can't see what. Any ideas please?
this is my automation:
alias: Easee start/stop on Predbat slot
description: Start/Stop car charging based on Predbat slots
triggers:
entity_id:
conditions: []
actions:
entity_id: binary_sensor.predbat_car_charging_slot
state: "on"
then:
domain: easee
type: resume
metadata: {}
data:
message: Predbat starting Easee Charge slot
entity_id: binary_sensor.predbat_car_charging_slot
state: "off"
then:
domain: easee
type: pause
metadata: {}
data:
message: Predbat ending Easee Charger slot
mode: single
Beta Was this translation helpful? Give feedback.
All reactions