Skip to content

Bugfixes to charger-module

Compare
Choose a tag to compare
@elden1337 elden1337 released this 07 Sep 18:59
· 1148 commits to main since this release

Downloads for this release

Changes

  • Stability fixes to not allow interim amp-updates when charger is about to stop
  • General stability and refactor

Tip

If you are using the scheduler, and awaiting the scheduler 2.0 (which will come, but it takes time), you may use an automation like this example to trigger your daily charge at the lowest hours possible (I should hope, report bugs if you find them). Since Peaqev doesn't know the SoC of a connected car, this is the way to let the system know how much you desire until a set time:

alias: Peaqev - Create weekday scheduler
description: "Set peaqev scheduler at 17 sun-thu, for departure at 0700 next day"
trigger:
  - platform: time
    at: "17:00:00"
condition:
  - condition: template
    value_template: "{{now().weekday() == 0 or now().weekday() < 4}}"
action:
  - service: peaqev.scheduler_set
    data:
      charge_amount: 4
      departure_time: "{{(as_timestamp(now()) +50400)|timestamp_custom('%y-%m-%d %H:%M')}}"
mode: single

Has Peaqev helped you save money? If so, please consider buying me a coffee or becoming a Github-sponsor. Every bit helps and is much appreciated!