Releases: marq24/ha-goecharger-api2
Features Requests #12 #13 implemented [v2]
Features Requests #12 #13 implemented
Adjustments for latest HA release (get rid of warning)
2024.7.0 use 'async_forward_entry_setups' & 'async_unload_platforms'
Added Cloud-API Support
When your Wallbox is not part of your HA-Network, then you can now make use of the Cloud API Version of this integration.
https://github.com/goecharger/go-eCharger-API-v2/blob/main/cloudapi-en.md
Please note, that might be that not all features are supported [I am currently aware of the RESET functionality - but there might be more]
Solves #8
Just maintenance
Just discovered that binary sensors can have device classes - so just let use them
Adjustments to latest go-eCharger App
The latest go-eCharger app have some additional settings/fields:
- go-eController-Scan always active
- last Controller-Scan
- Random max. delays:
- Scheduler start
- Scheduler end
- Flexible Tariff start
- Flexible Tariff stop
- After power outage
- adjustments to the documentation (new screenshots, how to enable local HTTP API v2)
Fix: Detected blocking call to open inside the event loop by custom integration
removed 'local' reading of manifest.json +fix-it
Little update
'Simulate unplugging (short)' is now enabled by default (and 'Simulate unplugging permanently' is now hidden by default)
'Last Event Sensors' (fsptws inva lbp lccfc lccfi lcctc lfspt lmsc lpsc lmsc) are also available as DELTAs to 'Reboot Time'
Thanks to the feedback of @karliwalti (#2 & #4) the Timestamp related Sensors are now additionally available as 'deltas' - means the sensor value returned from the API will be subtracted from the reboot time value.
Added Service to force charging OFF (for 5 minutes)
Force stop charging when PV power is too low
Unfortunately, it is possible that the go-eCharger does not finish charging in ECO mode using the PV power (in a timely manner). To ensure that charging stops when there is no longer enough PV power, you can add the following automation:
You need to adjust the entity ids: switch.goe_012345_fup, sensor.goe_012345_nrg_11 and sensor.goe_012345_pvopt_averagepgrid (replace the 012345 with your serial number) and your preferred threshold when this automation should be executed (the above: -200 for the pvopt_averagepgrid means, that as soon as the average power you export to the grid is less than 200 watt the automation will be triggered).
alias: go-e FORCE STOP of PV surplus charging
description: >-
Simple automation to ensure that the go-eCharger will stop charging when average PV will drop below given threshold
trigger:
- platform: time_pattern
seconds: /5
condition:
- condition: state
entity_id: switch.goe_012345_fup
state: "on"
- condition: numeric_state
entity_id: sensor.goe_012345_nrg_11
above: 200
- condition: numeric_state
entity_id: sensor.goe_012345_pvopt_averagepgrid
above: -200
action:
- service: goecharger_api2.stop_charging
mode: single