- CitrineOS core extracted (CSMS OCPP 2.0.1) - OpenOCPP extracted (firmware OCPP 1.6J/2.0.1) - ShapeShifter library installed (pip install -e) - ShapeShifter specification extracted - EVerest extracted TODO updated with progress
71 lines
2.3 KiB
YAML
71 lines
2.3 KiB
YAML
description: >-
|
|
This module implements an DIN70121, ISO15118-2 and ISO15118-20 EV using the Josev project.
|
|
config:
|
|
device:
|
|
description: >-
|
|
Ethernet device used for HLC. Any local interface that has an ipv6 link-local and a MAC addr will work.
|
|
type: string
|
|
default: eth0
|
|
supported_DIN70121:
|
|
description: The EV supports the DIN SPEC
|
|
type: boolean
|
|
default: false
|
|
supported_ISO15118_2:
|
|
description: The EV supports ISO15118-2
|
|
type: boolean
|
|
default: false
|
|
supported_ISO15118_20_AC:
|
|
description: The EV supports ISO15118-20 AC
|
|
type: boolean
|
|
default: false
|
|
supported_ISO15118_20_DC:
|
|
description: The EV supports ISO15118-20 DC
|
|
type: boolean
|
|
default: false
|
|
tls_active:
|
|
description: If true, EVCC connects to SECC as TLS client
|
|
type: boolean
|
|
default: false
|
|
enforce_tls:
|
|
description: The EVCC will enforce a TLS connection
|
|
type: boolean
|
|
default: false
|
|
is_cert_install_needed:
|
|
description: >-
|
|
If true, the contract certificate will be installed via the evse.
|
|
And any existing contract certificate will also be overwritten.
|
|
type: boolean
|
|
default: false
|
|
enable_tls_1_3:
|
|
description: The EVCC will enable TLS version 1.3
|
|
type: boolean
|
|
default: false
|
|
is_internet_service_needed:
|
|
description: If true, the ev will ask for internet service
|
|
type: boolean
|
|
default: false
|
|
request_all_service_details:
|
|
description: If true, the ev will ask for details about all offered services
|
|
type: boolean
|
|
default: false
|
|
select_all_vas_services:
|
|
description: If true, the ev will select all offered services
|
|
type: boolean
|
|
default: false
|
|
supported_d20_energy_services:
|
|
description: >-
|
|
The supported ISO15118-20 energy services (DC, DC_BPT, AC, AC_BPT) the EV supports,
|
|
provided as a prioritized list. The first entry in the list has the highest priority
|
|
and is the most likely to be selected. The services should be separated only with commas.
|
|
type: string
|
|
default: "DC,DC_BPT"
|
|
provides:
|
|
ev:
|
|
interface: ISO15118_ev
|
|
description: This module implements the ISO15118-2 implementation of an EV
|
|
enable_external_mqtt: true
|
|
metadata:
|
|
license: https://opensource.org/licenses/Apache-2.0
|
|
authors:
|
|
- Sebastian Lukas
|