wallbox Copper SB
Setup Guide: support.wallbox.com
- Switch on "Enable OCPP" (myWallbox app) or enable the "OCPP WebSocket connection" switch (myWallbox Portal)
- Enable "Improved charger control" (Profile -> Experimental functions) (myWallbox app)
- URL:
ws://<evcc-host>:8887/(local network connection) - Charge Point Identity: Custom value (e.g. serial number of charger) which is reused in configuration as stationid
- Password: leave empty
Parameters
| Name | Description | Value | Level |
|---|---|---|---|
stationid | Station ID Unique identifier of the charger. Automatically detected once the charger connects. | optional | |
connector | Connector number For multi-connector stations. Numbering starts at 1. | advanced | |
remotestart | Start remote transaction on vehicle connection Only enable this option if there is no way to initiate transactions from the charger side! This is only the case if e.g. no RFID reader is available and charging processes would have to be released individually via app. Normally, the charger should always be configured at the device so that either an RFID card is used for activation or the charger is set to "Autostart", "Free Charging" or similar. First check the documentation and configuration possibilities of the charger, ask the manufacturer if necessary! (Uses OCPP RemoteStartTransaction) | advanced | |
idtag | Authentication token This option is only required in exceptional cases if the charger requires a specific token for accepting external transactions. (Uses OCPP RemoteStartTransaction) | advanced | |
connecttimeout | Timeout for registration Timeout for the registration of the charging point | advanced | |
meterinterval | Transmission interval for meter values Time interval for transmission of meter values (MeterValueSampleInterval) | advanced | |
metervalues | Meter values for transmission Manual specification of the meter values to be configured (MeterValuesSampledData) | advanced |
Configuration example for evcc.yaml
If you don't want to configure via the UI, you can alternatively use this YAML block.
chargers: - name: my_charger type: template template: ocpp-wallbox stationid: EVB-P12354 # Station ID, Unique identifier of the charger. Automatically detected once the charger connects. (optional) connector: 1 # Connector number, For multi-connector stations. Numbering starts at 1. (optional) remotestart: # Start remote transaction on vehicle connection, Only enable this option if there is no way to initiate transactions from the charger side! This is only the case if e.g. no RFID reader is available and charging processes would have to be released individually via app. Normally, the charger should always be configured at the device so that either an RFID card is used for activation or the charger is set to "Autostart", "Free Charging" or similar. First check the documentation and configuration possibilities of the charger, ask the manufacturer if necessary! (Uses OCPP RemoteStartTransaction) (optional) idtag: evcc # Authentication token, This option is only required in exceptional cases if the charger requires a specific token for accepting external transactions. (Uses OCPP RemoteStartTransaction) (optional) connecttimeout: 5m # Timeout for registration, Timeout for the registration of the charging point (optional) meterinterval: 10s # Transmission interval for meter values, Time interval for transmission of meter values (MeterValueSampleInterval) (optional) metervalues: Energy.Active.Import.Register,Power.Active.Import,SoC,Current.Offered,Power.Offered,Current.Import,Voltage # Meter values for transmission, Manual specification of the meter values to be configured (MeterValuesSampledData) (optional)