forked from evcc-io/evcc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: xantalor <[email protected]>
- Loading branch information
Showing
5 changed files
with
91 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
template: ocpp | ||
products: | ||
- description: | ||
de: OCPP v1.6 kompatible Wallbox mit Smart Charging Profile | ||
en: OCPP v1.6 compatible charger with smart charging profile | ||
group: generic | ||
requirements: | ||
description: | ||
de: | | ||
Voraussetzungen: | ||
* Löschen zuvor konfigurierter Ladeprofile (z.B. durch ein anderes Backend) | ||
* Konfiguration des Backends der Wallbox: `ws://evcc.local:8887/` | ||
en: | | ||
Requirements: | ||
* Deletion prior configured load profiles (e.g. from another backend) | ||
* Backend configuration of the charger: `ws://evcc.local:8887/` | ||
params: | ||
- name: stationid | ||
required: true | ||
help: | ||
en: The charger's unique station id | ||
de: Die Stations-ID der Wallbox | ||
example: EVB-P12354 | ||
- name: connector | ||
default: 1 | ||
valuetype: int | ||
advanced: true | ||
help: | ||
en: Connector number, usually 1 for first connector. | ||
de: Verwendeter Ladepunkt, normalerweise 1 für den ersten Anschluss. | ||
- name: meter | ||
default: false | ||
valuetype: bool | ||
help: | ||
en: Use of the integrated meter (if present) | ||
de: Verwendung des integrierten Zählers (falls vorhanden) | ||
- name: idtag | ||
valuetype: string | ||
advanced: true | ||
help: | ||
en: RFID token used for transactions (currently no authorization implemented) | ||
de: ID des Tokens, welcher für Ladevorgänge genutzt werden soll, (aktuell nicht für Autorisierung verwendet) e.g | ||
example: 04E6B78921BBA0 | ||
render: | | ||
type: ocpp | ||
stationid: {{ .stationid }} | ||
{{- if ne .connector "1 "}} | ||
connector: {{ .connector }} | ||
{{- end }} | ||
{{- if ne .idtag "" }} | ||
idtag: {{ .idtag }} | ||
{{- end }} | ||
{{- if ne .meter "false" }} | ||
meter: {{ .meter }} | ||
{{- end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
product: | ||
description: OCPP v1.6 kompatible Wallbox mit Smart Charging Profile | ||
group: Generische Unterstützung | ||
description: | | ||
Voraussetzungen: | ||
* Löschen zuvor konfigurierter Ladeprofile (z.B. durch ein anderes Backend) | ||
* Konfiguration des Backends der Wallbox: `ws://evcc.local:8887/` | ||
render: | ||
- default: | | ||
type: template | ||
template: ocpp | ||
stationid: EVB-P12354 # Die Stations-ID der Wallbox | ||
meter: false # Verwendung des integrierten Zählers (falls vorhanden) # Optional | ||
advanced: | | ||
type: template | ||
template: ocpp | ||
stationid: EVB-P12354 # Die Stations-ID der Wallbox | ||
connector: 1 # Verwendeter Ladepunkt, normalerweise 1 für den ersten Anschluss. # Optional | ||
meter: false # Verwendung des integrierten Zählers (falls vorhanden) # Optional | ||
idtag: 04E6B78921BBA0 # ID des Tokens, welcher für Ladevorgänge genutzt werden soll, (aktuell nicht für Autorisierung verwendet) e.g # Optional |