Replies: 1 comment 2 replies
-
Have you seen my video on this topic? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hey folks,
I've got a running batpred system, with a Podpoint solo charger, and a Vauxhall corsa E.
so far so good - everything is up and running, i'm using these integrations for car / charger:
https://github.com/mattrayner/pod-point-home-assistant-component - fully functional
https://github.com/flobz/psacc-ha/tree/main/psacc-ha- currently borked
I've got the cars section of my app.yaml like so:
` car_charging_energy: 're:(sensor.myenergi_zappi_[0-9a-z]+_charge_added_session|sensor.wallbox_portal_added_energy|sensor.psl_529952_total_energy)'
num_cars: 1
car_charging_planned:
- 're:(sensor.wallbox_portal_status_description|sensor.myenergi_zappi_[0-9a-z]+_plug_status|sensor.psl_529952_status)'
car_charging_planned_response:
- 'yes'
- 'on'
- 'true'
- 'connected'
- 'ev connected'
- 'charging'
- 'paused'
- 'waiting for car demand'
- 'waiting for ev'
- 'scheduled'
- 'enabled'
- 'latched'
- 'locked'
- 'plugged in'
#car_charging_now:
- off
car_charging_now_response:
- 'yes'
- 'on'
- 'true'
#car_charging_battery_size:
- 75
#car_charging_limit:
- 're:number.tsunami_charge_limit'
#car_charging_soc:
- 're:sensor.tsunami_battery'
octopus_intelligent_slot: 're:(binary_sensor.octopus_energy([0-9a-z_]+|)intelligent_dispatching)'
octopus_ready_time: 're:(time.octopus_energy([0-9a-z]+|)intelligent_ready_time)'
octopus_charge_limit: 're:(number.octopus_energy([0-9a-z]+|)_intelligent_charge_limit)'
`
Which is removing the car charge data from the power plan, great - I'd really like to take this to the next level though.
As i understand the Pod Point integration, what I need to do is write a new schedule to the charger each day, probably with the most economic contigious 4 hour charge slot (in lieu of the PSA integration working again, if it ever does, and reporting a SoC for the battery) and then writing it to the next day. The simple "on/off" switch doesn't seem to work (or at least has some interaction with the scheduling part).
Is there something I can pull out of Predbat which will help with this, or has anyone managed to get predbat to take over the scheduling entirely?
Beta Was this translation helpful? Give feedback.
All reactions