Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Batterie Boost to documentation #643

Open
wants to merge 12 commits into
base: main
Choose a base branch
from
18 changes: 18 additions & 0 deletions docs/features/battery.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,24 @@ Wie auch im vorherigen Beispiel endet die Ladung, wenn der Ladestand des Hausspe
caption="Automatischer Start"
/>

## Batterie Boost
:::warning Experimentell
Batterie Boost befindet sich gerade noch in der Erprobungsphase.
:::

Durch den Batterie Boost wird der PV-Modus maximal durch die Hausbatterie unterstützt. Zusätzlich zu der Leistung aus der Photovoltaikananlage wird die maximal mögliche Leistung aus der Batterie gezogen. Das Boostverhalten endet, wenn das Auto abgesteckt wird oder der Modus umgeschaltet wird.

Der Batterie Boost kann in den Einstellungen des Loadpoints aktiviert werden:

<Screenshot
name="features/screenshots/battery-boost"
caption="Batterie Boost aktivieren"
/>

Beispiel:
Dies ist nützlich wenn das Fahrzeug in Kürze die Ladestation verlassen wird, in den kommenden Stunden aber viel Sonnenüberschuss verfügbar sein wird.
So kann kurz vor der Abfahrt noch Energie aus der Hausbatterie ins Fahrzeug geladen werden und die Hausbatterie lädt sich danach wieder auf.

## Mehrere Batterien

Natürlich kannst du in evcc auch mehrere Batterien konfigurieren.
Expand Down
1 change: 1 addition & 0 deletions docs/integrations/mqtt-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ Alle API IDs (z.B. die Loadpoint ID) beginnen bei `1`.
- `evcc/loadpoints/<id>/maxCurrent`: current maxCurrent value (writable)
- `evcc/loadpoints/<id>/enableThreshold`: threshold value (writable)
- `evcc/loadpoints/<id>/disableThreshold`: threshold value (writable)
- `evcc/loadpoints/<id>/batteryboost`: battery boost enabled (writeable: [1/0])

:::note
Um schreibbare Einstellungen durchzuführen, muss ein `/set` am Ende des Topics hinzugefügt werden an welches der neue Wert gesendet wird.
Expand Down
1 change: 1 addition & 0 deletions docs/integrations/rest-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ Alle API IDs (z.B. die Loadpoint ID) beginnen bei `1`.
- `POST /api/loadpoints/<id>/vehicle/<name>`: set currently selected vehicle
- `DELETE /api/loadpoints/<id>/vehicle`: remove vehicle
- `PATCH /api/loadpoints/<id>/vehicle`: start vehicle detection
- `POST /api/loadpoints/<id>/batteryboost/<status>`: enable/disable battery boost (1/0)

:::note
Beispiel: `curl -X POST http://evcc:7070/api/loadpoints/1/mode/pv` um den Lademodus des 1. Ladepunkts auf `pv` zu stellen.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,24 @@ As in the previous example, the charging ends when the charge level of the home
caption="Automatic Start"
/>

## Battery Boost
:::warning Experimental
Battery Boost is still in the validation phase.
:::

The battery boost supports the solar mode with power from the home storage. Additionally to the power available from the photovoltaic system the maximum available power from the home storage is used.
The boosting behaviour ends, when the car is unplugged or the mode is changed.
The battery boost can be activated in the options of the loadpoint.

<Screenshot
name="features/screenshots/battery-boost"
caption="Batterie Boost aktivieren"
/>

Example:
This is useful if the car leaves the charging station in near future and there will be an excess of solar power in the upcoming hours.
In doing so the energie in the car is maximised, while the home storage will recharge while the car is away.

## Multiple batteries

Of course, you can also configure multiple batteries in evcc.
Expand Down