From d5575b174bef0e79d2a600ae24be2789d6cf3451 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Thu, 27 Apr 2023 19:02:07 +0200 Subject: [PATCH] feat: add template example with evses configuration MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- .../schneider-evses.station-template.json | 102 ++++++++++++++++++ 1 file changed, 102 insertions(+) create mode 100644 src/assets/station-templates/schneider-evses.station-template.json diff --git a/src/assets/station-templates/schneider-evses.station-template.json b/src/assets/station-templates/schneider-evses.station-template.json new file mode 100644 index 00000000..6d62c528 --- /dev/null +++ b/src/assets/station-templates/schneider-evses.station-template.json @@ -0,0 +1,102 @@ +{ + "supervisionUrlOcppConfiguration": true, + "supervisionUrlOcppKey": "ocppcentraladdress", + "idTagsFile": "idtags.json", + "baseName": "CS-SCHNEIDER-EVSES", + "chargePointModel": "MONOBLOCK", + "chargePointVendor": "Schneider Electric", + "chargeBoxSerialNumberPrefix": "EV.2S22P44", + "firmwareVersionPattern": "^(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)$", + "firmwareVersion": "3.3.0.10", + "power": 44160, + "powerUnit": "W", + "voltageOut": 231, + "amperageLimitationOcppKey": "maxintensitysocket", + "Configuration": { + "configurationKey": [ + { + "key": "MeterValuesSampledData", + "readonly": false, + "value": "Energy.Active.Import.Register,Current.Import,Voltage" + }, + { + "key": "MeterValueSampleInterval", + "readonly": false, + "value": "30" + }, + { + "key": "SupportedFeatureProfiles", + "readonly": true, + "value": "Core,FirmwareManagement,LocalAuthListManagement,SmartCharging,RemoteTrigger" + }, + { + "key": "LocalAuthListEnabled", + "readonly": false, + "value": "false" + }, + { + "key": "AuthorizeRemoteTxRequests", + "readonly": false, + "value": "false" + }, + { + "key": "WebSocketPingInterval", + "readonly": false, + "value": "60" + } + ] + }, + "AutomaticTransactionGenerator": { + "enable": true, + "minDuration": 60, + "maxDuration": 80, + "minDelayBetweenTwoTransactions": 15, + "maxDelayBetweenTwoTransactions": 30, + "probabilityOfStart": 1, + "stopAfterHours": 0.3, + "stopOnConnectionFailure": false, + "requireAuthorize": true, + "idTagDistribution": "round-robin" + }, + "Evses": { + "0": {}, + "1": { + "Connectors": { + "1": { + "MeterValues": [ + { + "unit": "V", + "measurand": "Voltage" + }, + { + "unit": "A", + "measurand": "Current.Import" + }, + { + "unit": "Wh" + } + ] + } + } + }, + "2": { + "Connectors": { + "2": { + "MeterValues": [ + { + "unit": "V", + "measurand": "Voltage" + }, + { + "unit": "A", + "measurand": "Current.Import" + }, + { + "unit": "Wh" + } + ] + } + } + } + } +} -- 2.34.1