evcc-io / evcc

Sonne tanken ☀️🚘
https://evcc.io
MIT License
3.32k stars 606 forks source link

Wallbox elliconnect (ohne meter) stürzt ab bzw. disconnected, wenn Fahrzeug eingesteckt wird #6943

Closed TobiasSt78 closed 1 year ago

TobiasSt78 commented 1 year ago

Describe the bug

Ich habe nun seit mehreren Wochen und seit mehreren Versionen mit der Installation meins Vaters das Problem, dass die Wallbox sich beim Verbinden mit einem ID.3 im PV Modus disconnected. Auffällig ist, dass das Koppeln oft lang dauert bzw. es sind mehrere Versuche erforderlich bzw. die Wallbox muss neu gebootet werden, damit das Koppeln wieder gelingt. Im Debug Modus gelingt das Koppeln auf Anhieb - im ganz normalen "Systemdienstmodus" ist es Glückssache.

Die Wallbox ist per sehr stabilem WLAN (3 m Luftlinie) verbunden. LTE und LAN sind deaktiviert. Die Box bleibt über die Website die ganze Zeit erreichbar

Bei meiner eigenen Installation mit Elli Wallboxen (mit Meter) funktioniert EVCC absolut einwandfrei und die YAML Dateien habe ich mehrfach abgeglichen.

Auch tritt der Fehler mit wie ohne diesem Code-Schnipsel auf:

  interfaces:
  - wlan0
  shipid: EVCC-6531383766356435

Ein Kabel ist bestellt und als einzige Option in meiner Macht steht der Switch von WLAN zu LAN. Meine Elli-Wallbox funktioniert jedoch auch per WLAN gut, weshalb ich das eigentlich nicht als DEN Fehler ansehe.

Der Fehler tritt auch auf, wenn testweise "ellipro" für den gleichen Charger (ohne Meter) definiert wird.

Steps to reproduce

  1. EVCC starten und Wallbox koppeln -> alles prima bis
  2. Auto verbinden im "Schnell Modus" -> alles funktioniert
  3. Auto abdocken und Modus auf "PV wechseln"
  4. Auto anstopseln -> rote Fehlermedlungen in der EVCC Übersicht, Wallbox-Konfig Seite zeigt "nicht verbunden"
  5. es hilft nun nur Auto Abstöpseln, Entkoppeln, Wallbox neu starten, EVCC neu starten, neu koppeln...

Configuration details

# open evcc at http://evcc.local:7070
network:
  schema: http
  host: evcc.local # .local suffix announces the hostname on MDNS
  port: 7070

log: info
levels:
  cache: error

# unique installation id
plant: XXXXXX

interval: 10s # control cycle interval

meters:
- name: grid_solar_edge
  type: template
  template: solaredge-hybrid 
  id: 1  
  host: 192.168.1.93  
  port: 1502  
  usage: grid  
  modbus: tcpip  
  timeout: 10s  

- name: pv_solar_edge
  type: template
  template: solaredge-hybrid 
  id: 1  
  host: 192.168.1.93  
  port: 1502  
  usage: pv  
  modbus: tcpip  
  timeout: 10s  

- name: battery_byd
  type: template
  template: solaredge-hybrid 
  id: 1  
  host: 192.168.1.93  
  port: 1502  
  usage: battery  
  modbus: tcpip  
  timeout: 10s  

chargers:
- name: wallbox_garage
  type: template
  template: elliconnect 
  ski: 'XXXXXXXXXXXXXXXXXXXXXXXXX'
  ip: 192.168.1.90

vehicles:
- name: VW_ID3
  type: template
  template: id 
  title: ID.3  
  icon: car  
  user: XXXXXXXXXXXXXXXXXX  
  password: 'XXXXXXXXXX'  
  vin: XXXXXXXXXX  
  capacity: 55  
  phases: 3  
  mode: pv  
  minSoc: 30  
  targetSoc: 80  
  minCurrent: 5  
  maxCurrent: 16  
  cache: 6m  

loadpoints:
- title: Garage
  charger: wallbox_garage
  mode: pv
  phases: 3
  mincurrent: 6
  maxcurrent: 16
  resetOnDisconnect: false
  vehicle: VW_ID3
  guardduration: 15m
  enable:
    threshold: -1400
    delay: 3m
  disable:
    threshold: 300 # maximum import power (W)
    delay: 5m
  soc:
    poll:
      mode: always
      interval: 60m 
    estimate: true 

site:
  title: Solar Charger
  residualPower: 50 # 200W Uerberschuss sollten als Puffer reichen. Negativ bedeutet Netzbezug im PV Modus erlaubt
  bufferSoc: 70 # sollte zu wenig Sonne da sein, wird der Hausakku bis XX SOC mit genutzt. muss groesser prioritySOC sein
  prioritySoc: 30
  maxGridSupplyWhileBatteryCharging: 200
  meters:
    grid: grid_solar_edge
    pv: pv_solar_edge

    battery: battery_byd

tariffs:
  currency: EUR # (default EUR)
  grid:
    type: fixed
    price: 0.30 # [currency]/kWh
  feedin:
    type: fixed
    price: 0.08 # [currency]/kWh

# Message config using evcc go-text-template rendering, evcc variables and sprig-functions
messaging:
  events:
    start: # charge start event
      title: W Laden von {{.vehicleTitle}} gestartet
      msg: |
        {{.vehicleTitle}} an {{.title}} wird geladen im {{ toString .mode | upper }} Modus.
    stop: # charge stop event
      title: W Laden von {{.vehicleTitle}} beendet
      msg: |
        {{.vehicleTitle}} an {{.title}} aufgeladen
        mit {{round (divf .chargedEnergy 1000) 2 }} kWh
    connect: # vehicle connect event
      title: W"{{.vehicleTitle}} Verbunden mit {{.title}}"
      msg: |
        {{.vehicleTitle}} Verbunden mit {{.title}} mit {{round (divf .pvPower 1000) 1 }} kW PV.
    disconnect: # vehicle connected event
      title: W"{{.vehicleTitle}} getrennt von {{.title}}"
      msg: |
        {{.vehicleTitle}} getrennt von {{.title}}.

  services:
  - type: shout
    uri: pushover://shoutrrr:XXXXX@XXXX/?devices=XXXXX  

eebus:
  interfaces:
  - wlan0
  shipid: EVCC-6531383766356435
  certificate:
      private: |
          -----BEGIN EC PRIVATE KEY-----
          XXXXX==
          -----END EC PRIVATE KEY-----
      public: |
          -----BEGIN CERTIFICATE-----
         XXXXXX
          -----END CERTIFICATE-----

Log details

evcc --log debug
[main  ] INFO 2023/03/19 14:43:39 evcc 0.114.1
[main  ] INFO 2023/03/19 14:43:39 using config file: /etc/evcc.yaml
[main  ] INFO 2023/03/19 14:43:39 starting ui and api at :7070
[db    ] INFO 2023/03/19 14:43:39 using sqlite database: /home/pi/.evcc/evcc.db
[eebus ] INFO 2023/03/19 14:43:39 Local SKI:  XXXXXXXXXXXXXXXXXXXXXXXX
[eebus ] DEBUG 2023/03/19 14:43:39 mdns: announce
[eebus ] DEBUG 2023/03/19 14:43:39 mdns: using avahi
[eebus ] DEBUG 2023/03/19 14:43:39 starting websocket server on :4712
[eebus ] DEBUG 2023/03/19 14:43:40 mdns: start search
[eebus ] DEBUG 2023/03/19 14:43:48 incoming connection request from XXXXXXXXXXXXXXXXXXX
[eebus ] DEBUG 2023/03/19 14:43:49 Send:  read 1 NodeManagementDetailedDiscoveryData
[eebus ] DEBUG 2023/03/19 14:43:49 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to NodeManagement read 1 NodeManagementDetailedDiscoveryData
[eebus ] DEBUG 2023/03/19 14:43:49 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 reply 2 1 NodeManagementDetailedDiscoveryData
[eebus ] DEBUG 2023/03/19 14:43:49 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 result 3 1 ResultData 0
[eebus ] DEBUG 2023/03/19 14:43:49 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to NodeManagement reply 3 1 NodeManagementDetailedDiscoveryData
[eebus ] DEBUG 2023/03/19 14:43:49 Send:  call 4 NodeManagementSubscriptionRequestCall
[eebus ] DEBUG 2023/03/19 14:43:49 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 read 6 NodeManagementUseCaseData
[eebus ] DEBUG 2023/03/19 14:43:49 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 read 5 DeviceClassificationManufacturerData
[eebus ] DEBUG 2023/03/19 14:43:49 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 read 7 DeviceDiagnosisStateData
[eebus ] DEBUG 2023/03/19 14:43:49 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to NodeManagement call 6 NodeManagementSubscriptionRequestCall
[eebus ] DEBUG 2023/03/19 14:43:49 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 result 8 6 ResultData 0
[eebus ] DEBUG 2023/03/19 14:43:49 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to NodeManagement result 9 4 ResultData 0
[eebus ] DEBUG 2023/03/19 14:43:49 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to NodeManagement reply 12 6 NodeManagementUseCaseData
[eebus ] DEBUG 2023/03/19 14:43:49 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to DeviceClassification reply 13 5 DeviceClassificationManufacturerData
[eebus ] DEBUG 2023/03/19 14:43:50 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to DeviceDiagnosis reply 15 7 DeviceDiagnosisStateData
[eebus ] DEBUG 2023/03/19 14:43:50 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to NodeManagement read 17 NodeManagementDetailedDiscoveryData
[eebus ] DEBUG 2023/03/19 14:43:50 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 reply 9 17 NodeManagementDetailedDiscoveryData
[eebus ] DEBUG 2023/03/19 14:43:50 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 result 10 17 ResultData 0
[eebus ] DEBUG 2023/03/19 14:43:50 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to NodeManagement read 18 NodeManagementDestinationListData
[eebus ] DEBUG 2023/03/19 14:43:50 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 reply 11 18 NodeManagementDestinationListData
[eebus ] DEBUG 2023/03/19 14:43:50 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 result 12 18 ResultData 0
[eebus ] DEBUG 2023/03/19 14:43:50 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to NodeManagement read 19 NodeManagementUseCaseData
[eebus ] DEBUG 2023/03/19 14:43:50 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 reply 13 19 NodeManagementUseCaseData
[eebus ] DEBUG 2023/03/19 14:43:50 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 result 14 19 ResultData 0
[lp-1  ] WARN 2023/03/19 14:43:54 poll mode '{always 1h0m0s}' may deplete your battery or lead to API misuse. USE AT YOUR OWN RISK.
[site  ] INFO 2023/03/19 14:43:54 site config:
[site  ] INFO 2023/03/19 14:43:54   meters:      grid ✓ pv ✓ battery ✓
[site  ] INFO 2023/03/19 14:43:54     grid:      power ✓ energy ✗ currents ✗
[site  ] INFO 2023/03/19 14:43:54     pv 1:      power ✓ energy ✗ currents ✗
[site  ] INFO 2023/03/19 14:43:54     battery 1: power ✓ energy ✗ currents ✗ soc ✓ capacity ✗
[site  ] INFO 2023/03/19 14:43:54   vehicles:
[site  ] INFO 2023/03/19 14:43:54     vehicle 1: range ✓ finish ✓ status ✓ climate ✓ wakeup ✗
[lp-1  ] INFO 2023/03/19 14:43:54 loadpoint 1:
[lp-1  ] INFO 2023/03/19 14:43:54   mode:        pv
[lp-1  ] INFO 2023/03/19 14:43:54   charger:     power ✗ energy ✗ currents ✗ phases ✗ wakeup ✗
[lp-1  ] INFO 2023/03/19 14:43:54   meters:      charge ✗
[lp-1  ] DEBUG 2023/03/19 14:43:54 phase timer inactive
[lp-1  ] DEBUG 2023/03/19 14:43:54 pv timer inactive
[lp-1  ] INFO 2023/03/19 14:43:54 vehicle updated: unknown -> ID.3
[lp-1  ] DEBUG 2023/03/19 14:43:54 set charge mode: pv
[lp-1  ] DEBUG 2023/03/19 14:43:54 set max current: 16
[lp-1  ] DEBUG 2023/03/19 14:43:54 set min soc: 30
[lp-1  ] DEBUG 2023/03/19 14:43:54 set target soc: 80
[site  ] DEBUG 2023/03/19 14:43:54 ----
[lp-1  ] DEBUG 2023/03/19 14:43:54 charge power: 0W
[site  ] DEBUG 2023/03/19 14:43:54 pv power: 2010W
[site  ] DEBUG 2023/03/19 14:43:54 battery soc: 97%
[site  ] DEBUG 2023/03/19 14:43:54 battery power: -1807W
[site  ] DEBUG 2023/03/19 14:43:54 grid power: 3W
[site  ] DEBUG 2023/03/19 14:43:54 site power: -1754W
[lp-1  ] DEBUG 2023/03/19 14:43:55 charger status: A
[lp-1  ] INFO 2023/03/19 14:43:55 car disconnected
[lp-1  ] DEBUG 2023/03/19 14:43:55 set charge mode: pv
[lp-1  ] DEBUG 2023/03/19 14:43:55 set max current: 16
[lp-1  ] DEBUG 2023/03/19 14:43:55 set min soc: 30
[lp-1  ] DEBUG 2023/03/19 14:43:55 set target soc: 80
[lp-1  ] DEBUG 2023/03/19 14:43:55 vehicle status: A
[lp-1  ] DEBUG 2023/03/19 14:43:55 vehicle soc: 83%
[lp-1  ] DEBUG 2023/03/19 14:43:55 vehicle soc limit: 100%
[lp-1  ] DEBUG 2023/03/19 14:43:55 vehicle range: 275km
[site  ] DEBUG 2023/03/19 14:43:55 ----
[lp-1  ] DEBUG 2023/03/19 14:43:55 charge power: 0W
[site  ] DEBUG 2023/03/19 14:43:55 pv power: 2015W
[site  ] DEBUG 2023/03/19 14:43:55 battery soc: 97%
[site  ] DEBUG 2023/03/19 14:43:55 battery power: -1809W
[site  ] DEBUG 2023/03/19 14:43:55 grid power: 16W
[site  ] DEBUG 2023/03/19 14:43:55 site power: -1743W
[lp-1  ] DEBUG 2023/03/19 14:43:55 charger status: A
[lp-1  ] DEBUG 2023/03/19 14:43:55 next soc poll remaining time: 59m59s
[site  ] DEBUG 2023/03/19 14:44:04 ----
[lp-1  ] DEBUG 2023/03/19 14:44:04 charge power: 0W
[site  ] DEBUG 2023/03/19 14:44:04 pv power: 2022W
[site  ] DEBUG 2023/03/19 14:44:04 battery soc: 97%
[site  ] DEBUG 2023/03/19 14:44:04 battery power: -1807W
[site  ] DEBUG 2023/03/19 14:44:04 grid power: -0W
[site  ] DEBUG 2023/03/19 14:44:04 site power: -1757W
[lp-1  ] DEBUG 2023/03/19 14:44:04 charger status: A
[lp-1  ] DEBUG 2023/03/19 14:44:04 next soc poll remaining time: 59m51s
[eebus ] DEBUG 2023/03/19 14:44:12 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to NodeManagement notify 26 NodeManagementUseCaseData
[eebus ] DEBUG 2023/03/19 14:44:12 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to NodeManagement notify 27 NodeManagementDetailedDiscoveryData
[eebus ] INFO 2023/03/19 14:44:12 ev connected
[eebus ] DEBUG 2023/03/19 14:44:12 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 call 15 NodeManagementSubscriptionRequestCall
[eebus ] DEBUG 2023/03/19 14:44:12 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 call 16 NodeManagementSubscriptionRequestCall
[eebus ] DEBUG 2023/03/19 14:44:12 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 call 17 NodeManagementSubscriptionRequestCall
[eebus ] DEBUG 2023/03/19 14:44:12 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 call 18 NodeManagementSubscriptionRequestCall
[eebus ] DEBUG 2023/03/19 14:44:12 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 call 19 NodeManagementSubscriptionRequestCall
[eebus ] DEBUG 2023/03/19 14:44:12 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 call 20 NodeManagementSubscriptionRequestCall
[eebus ] DEBUG 2023/03/19 14:44:12 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 call 21 NodeManagementSubscriptionRequestCall
[eebus ] DEBUG 2023/03/19 14:44:12 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 call 22 NodeManagementBindingRequestCall
[eebus ] DEBUG 2023/03/19 14:44:12 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 read 23 DeviceConfigurationKeyValueDescriptionListData
[eebus ] DEBUG 2023/03/19 14:44:12 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 read 24 DeviceClassificationManufacturerData
[eebus ] DEBUG 2023/03/19 14:44:12 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 read 25 DeviceDiagnosisStateData
[eebus ] DEBUG 2023/03/19 14:44:12 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 read 26 ElectricalConnectionDescriptionListData
[eebus ] DEBUG 2023/03/19 14:44:12 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 read 27 ElectricalConnectionParameterDescriptionListData
[eebus ] DEBUG 2023/03/19 14:44:12 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 read 28 MeasurementDescriptionListData
[eebus ] DEBUG 2023/03/19 14:44:12 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 read 29 IdentificationListData
[eebus ] DEBUG 2023/03/19 14:44:12 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 read 30 LoadControlLimitDescriptionListData
[eebus ] DEBUG 2023/03/19 14:44:12 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to NodeManagement result 29 15 ResultData 0
[eebus ] DEBUG 2023/03/19 14:44:12 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to NodeManagement result 32 16 ResultData 0
[eebus ] DEBUG 2023/03/19 14:44:12 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to DeviceConfiguration notify 34 DeviceConfigurationKeyValueListData
[eebus ] DEBUG 2023/03/19 14:44:12 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to NodeManagement result 36 17 ResultData 0
[eebus ] DEBUG 2023/03/19 14:44:12 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to NodeManagement result 41 18 ResultData 0
[eebus ] DEBUG 2023/03/19 14:44:12 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to DeviceConfiguration notify 37 DeviceConfigurationKeyValueListData
[eebus ] DEBUG 2023/03/19 14:44:12 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to NodeManagement result 44 19 ResultData 0
[eebus ] DEBUG 2023/03/19 14:44:12 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to ElectricalConnection notify 43 ElectricalConnectionPermittedValueSetListData
[eebus ] DEBUG 2023/03/19 14:44:13 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to NodeManagement result 47 20 ResultData 0
[eebus ] DEBUG 2023/03/19 14:44:13 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to ElectricalConnection notify 48 ElectricalConnectionPermittedValueSetListData
[eebus ] DEBUG 2023/03/19 14:44:13 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to NodeManagement result 50 21 ResultData 0
[eebus ] DEBUG 2023/03/19 14:44:13 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to ElectricalConnection notify 51 ElectricalConnectionPermittedValueSetListData
[eebus ] DEBUG 2023/03/19 14:44:13 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to DeviceDiagnosis read 54 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:44:13 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 result 31 54 ResultData 7
[eebus ] DEBUG 2023/03/19 14:44:13 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to DeviceConfiguration notify 55 DeviceConfigurationKeyValueListData
[eebus ] DEBUG 2023/03/19 14:44:13 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to NodeManagement call 56 NodeManagementSubscriptionRequestCall
[eebus ] DEBUG 2023/03/19 14:44:13 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 result 32 56 ResultData 1
[eebus ] DEBUG 2023/03/19 14:44:13 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to DeviceDiagnosis read 58 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:44:13 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 reply 33 58 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:44:13 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 result 34 58 ResultData 0
[eebus ] DEBUG 2023/03/19 14:44:13 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to DeviceConfiguration notify 57 DeviceConfigurationKeyValueListData
[eebus ] DEBUG 2023/03/19 14:44:13 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to NodeManagement call 59 NodeManagementSubscriptionRequestCall
[eebus ] DEBUG 2023/03/19 14:44:13 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 result 35 59 ResultData 0
[eebus ] DEBUG 2023/03/19 14:44:13 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to ElectricalConnection notify 60 ElectricalConnectionPermittedValueSetListData
[eebus ] DEBUG 2023/03/19 14:44:13 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to NodeManagement result 61 22 ResultData 0
[eebus ] DEBUG 2023/03/19 14:44:13 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to DeviceConfiguration reply 66 23 DeviceConfigurationKeyValueDescriptionListData
[eebus ] DEBUG 2023/03/19 14:44:13 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 read 36 DeviceConfigurationKeyValueListData
[eebus ] DEBUG 2023/03/19 14:44:13 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to ElectricalConnection notify 62 ElectricalConnectionPermittedValueSetListData
[eebus ] DEBUG 2023/03/19 14:44:13 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to DeviceClassification reply 69 24 DeviceClassificationManufacturerData
[eebus ] DEBUG 2023/03/19 14:44:13 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to ElectricalConnection notify 71 ElectricalConnectionPermittedValueSetListData
[eebus ] DEBUG 2023/03/19 14:44:13 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to DeviceDiagnosis reply 74 25 DeviceDiagnosisStateData
[eebus ] DEBUG 2023/03/19 14:44:13 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to ElectricalConnection reply 78 26 ElectricalConnectionDescriptionListData
[eebus ] DEBUG 2023/03/19 14:44:13 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to ElectricalConnection reply 80 27 ElectricalConnectionParameterDescriptionListData
[eebus ] DEBUG 2023/03/19 14:44:13 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 read 37 ElectricalConnectionPermittedValueSetListData
[eebus ] DEBUG 2023/03/19 14:44:13 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to Measurement reply 82 28 MeasurementDescriptionListData
[eebus ] DEBUG 2023/03/19 14:44:13 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 read 38 MeasurementListData
[eebus ] DEBUG 2023/03/19 14:44:13 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to Identification reply 85 29 IdentificationListData
[eebus ] DEBUG 2023/03/19 14:44:14 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to LoadControl reply 88 30 LoadControlLimitDescriptionListData
[eebus ] DEBUG 2023/03/19 14:44:14 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 read 39 LoadControlLimitListData
[eebus ] DEBUG 2023/03/19 14:44:14 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to DeviceConfiguration notify 91 DeviceConfigurationKeyValueListData
[eebus ] DEBUG 2023/03/19 14:44:14 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 40 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:44:14 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to DeviceDiagnosis read 92 DeviceDiagnosisStateData
[eebus ] DEBUG 2023/03/19 14:44:14 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 reply 41 92 DeviceDiagnosisStateData
[eebus ] DEBUG 2023/03/19 14:44:14 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 result 42 92 ResultData 0
[eebus ] DEBUG 2023/03/19 14:44:14 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to DeviceConfiguration notify 93 DeviceConfigurationKeyValueListData
[site  ] DEBUG 2023/03/19 14:44:14 ----
[lp-1  ] DEBUG 2023/03/19 14:44:14 charge power: 0W
[eebus ] DEBUG 2023/03/19 14:44:14 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to DeviceConfiguration reply 95 36 DeviceConfigurationKeyValueListData
[site  ] DEBUG 2023/03/19 14:44:14 pv power: 2036W
[site  ] DEBUG 2023/03/19 14:44:14 battery soc: 98%
[site  ] DEBUG 2023/03/19 14:44:14 battery power: -1814W
[site  ] DEBUG 2023/03/19 14:44:14 grid power: -5W
[site  ] DEBUG 2023/03/19 14:44:14 site power: -1769W
[lp-1  ] DEBUG 2023/03/19 14:44:14 charger status: B
[lp-1  ] INFO 2023/03/19 14:44:14 car connected
[lp-1  ] DEBUG 2023/03/19 14:44:14 pv timer elapse
[lp-1  ] DEBUG 2023/03/19 14:44:14 pv timer inactive
[lp-1  ] DEBUG 2023/03/19 14:44:14 vehicle status: A
[lp-1  ] DEBUG 2023/03/19 14:44:14 vehicle soc: 83%
[lp-1  ] DEBUG 2023/03/19 14:44:14 vehicle soc limit: 100%
[lp-1  ] DEBUG 2023/03/19 14:44:14 vehicle range: 275km
[lp-1  ] DEBUG 2023/03/19 14:44:14 targetSoc reached: 83.0% > 80%
[eebus ] DEBUG 2023/03/19 14:44:14 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to ElectricalConnection notify 97 ElectricalConnectionPermittedValueSetListData
[eebus ] DEBUG 2023/03/19 14:44:14 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to ElectricalConnection reply 98 37 ElectricalConnectionPermittedValueSetListData
[eebus ] DEBUG 2023/03/19 14:44:14 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to Measurement reply 101 38 MeasurementListData
[eebus ] DEBUG 2023/03/19 14:44:14 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to ElectricalConnection notify 100 ElectricalConnectionPermittedValueSetListData
[eebus ] DEBUG 2023/03/19 14:44:14 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to LoadControl reply 103 39 LoadControlLimitListData
[eebus ] DEBUG 2023/03/19 14:44:14 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to ElectricalConnection notify 105 ElectricalConnectionPermittedValueSetListData
[eebus ] DEBUG 2023/03/19 14:44:14 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to Measurement notify 107 MeasurementListData
[eebus ] DEBUG 2023/03/19 14:44:15 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 43 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:44:15 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 44 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:44:16 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 45 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:44:17 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 46 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:44:18 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 47 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:44:19 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 48 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:44:19 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 49 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:44:20 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 50 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:44:21 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 51 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:44:22 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 52 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:44:23 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 53 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:44:23 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 54 DeviceDiagnosisHeartbeatData
[site  ] DEBUG 2023/03/19 14:44:24 ----
[lp-1  ] DEBUG 2023/03/19 14:44:24 charge power: 0W
[site  ] DEBUG 2023/03/19 14:44:24 pv power: 1987W
[site  ] DEBUG 2023/03/19 14:44:24 battery soc: 98%
[site  ] DEBUG 2023/03/19 14:44:24 battery power: 1861W
[site  ] DEBUG 2023/03/19 14:44:24 grid power: 462W
[site  ] DEBUG 2023/03/19 14:44:24 site power: 2373W
[lp-1  ] DEBUG 2023/03/19 14:44:24 charger status: C
[lp-1  ] INFO 2023/03/19 14:44:24 start charging ->
[lp-1  ] DEBUG 2023/03/19 14:44:24 soc estimated: 83.00% (vehicle: 83.00%)
[lp-1  ] DEBUG 2023/03/19 14:44:24 vehicle soc: 83%
[lp-1  ] DEBUG 2023/03/19 14:44:24 vehicle soc limit: 100%
[lp-1  ] DEBUG 2023/03/19 14:44:24 vehicle range: 275km
[lp-1  ] WARN 2023/03/19 14:44:24 charger out of sync: expected disabled, got enabled
[eebus ] DEBUG 2023/03/19 14:44:24 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 write 55 LoadControlLimitListData
[lp-1  ] DEBUG 2023/03/19 14:44:24 targetSoc reached: 83.0% > 80%
[eebus ] DEBUG 2023/03/19 14:44:24 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to LoadControl notify 122 LoadControlLimitListData
[eebus ] DEBUG 2023/03/19 14:44:24 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 56 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:44:24 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to LoadControl result 123 55 ResultData 0
[eebus ] DEBUG 2023/03/19 14:44:25 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to Measurement notify 125 MeasurementListData
[eebus ] DEBUG 2023/03/19 14:44:25 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 57 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:44:26 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 58 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:44:27 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 59 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:44:27 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 60 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:44:28 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 61 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:44:29 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to DeviceConfiguration notify 131 DeviceConfigurationKeyValueListData
[eebus ] DEBUG 2023/03/19 14:44:29 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to DeviceConfiguration notify 132 DeviceConfigurationKeyValueListData
[eebus ] DEBUG 2023/03/19 14:44:29 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 62 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:44:29 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to ElectricalConnection notify 133 ElectricalConnectionPermittedValueSetListData
[eebus ] DEBUG 2023/03/19 14:44:29 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to ElectricalConnection notify 135 ElectricalConnectionPermittedValueSetListData
[eebus ] DEBUG 2023/03/19 14:44:29 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to ElectricalConnection notify 136 ElectricalConnectionPermittedValueSetListData
[eebus ] DEBUG 2023/03/19 14:44:30 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 63 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:44:31 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 64 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:44:31 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 65 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:44:32 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 66 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:44:33 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 67 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:44:34 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 68 DeviceDiagnosisHeartbeatData

...

[lp-1  ] DEBUG 2023/03/19 14:50:44 charge power: 4140W
[site  ] DEBUG 2023/03/19 14:50:44 pv power: 2162W
[site  ] DEBUG 2023/03/19 14:50:44 battery soc: 95%
[site  ] DEBUG 2023/03/19 14:50:44 battery power: 4994W
[site  ] DEBUG 2023/03/19 14:50:44 grid power: -2994W
[site  ] DEBUG 2023/03/19 14:50:44 site power: 2050W
[lp-1  ] DEBUG 2023/03/19 14:50:44 charger status: C
[lp-1  ] DEBUG 2023/03/19 14:50:44 soc estimated: 84.18% (vehicle: 84.00%)
[lp-1  ] DEBUG 2023/03/19 14:50:44 vehicle soc: 84%
[lp-1  ] DEBUG 2023/03/19 14:50:44 vehicle soc limit: 100%
[lp-1  ] DEBUG 2023/03/19 14:50:44 vehicle range: 278km
[lp-1  ] DEBUG 2023/03/19 14:50:44 pv charge current: 3.03A = 6A + -2.97A (2050W @ 3p)
[eebus ] DEBUG 2023/03/19 14:50:44 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 539 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:50:45 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 540 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:50:46 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 541 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:50:47 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 542 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:50:47 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 543 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:50:48 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 544 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:50:49 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 545 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:50:50 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 546 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:50:51 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 547 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:50:51 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 548 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:50:52 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 549 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:50:53 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 550 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:50:54 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 551 DeviceDiagnosisHeartbeatData
[site  ] DEBUG 2023/03/19 14:50:54 ----
[lp-1  ] DEBUG 2023/03/19 14:50:54 charge power: 4140W
[site  ] DEBUG 2023/03/19 14:50:54 pv power: 2354W
[site  ] DEBUG 2023/03/19 14:50:54 battery soc: 95%
[site  ] DEBUG 2023/03/19 14:50:54 battery power: 1946W
[site  ] DEBUG 2023/03/19 14:50:54 grid power: -143W
[site  ] DEBUG 2023/03/19 14:50:54 site power: 1853W
[lp-1  ] DEBUG 2023/03/19 14:50:54 charger status: C
[lp-1  ] DEBUG 2023/03/19 14:50:54 soc estimated: 84.20% (vehicle: 84.00%)
[lp-1  ] DEBUG 2023/03/19 14:50:54 vehicle soc: 84%
[lp-1  ] DEBUG 2023/03/19 14:50:54 vehicle soc limit: 100%
[lp-1  ] DEBUG 2023/03/19 14:50:54 vehicle range: 278km
[lp-1  ] DEBUG 2023/03/19 14:50:54 pv charge current: 3.31A = 6A + -2.69A (1853W @ 3p)
[eebus ] DEBUG 2023/03/19 14:50:55 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 552 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:50:55 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 553 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:50:56 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 554 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:50:57 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 555 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:50:58 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 556 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:50:59 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 557 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:50:59 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to NodeManagement notify 679 NodeManagementUseCaseData
[eebus ] DEBUG 2023/03/19 14:50:59 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to NodeManagement notify 680 NodeManagementDetailedDiscoveryData
[eebus ] INFO 2023/03/19 14:50:59 ev disconnected
[eebus ] DEBUG 2023/03/19 14:50:59 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 558 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:51:00 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 559 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:51:01 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 560 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:51:02 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 561 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:51:03 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 562 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:51:03 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 563 DeviceDiagnosisHeartbeatData
[site  ] DEBUG 2023/03/19 14:51:04 ----
[lp-1  ] DEBUG 2023/03/19 14:51:04 charge power: 4140W
[site  ] DEBUG 2023/03/19 14:51:04 pv power: 2392W
[site  ] DEBUG 2023/03/19 14:51:04 battery soc: 95%
[site  ] DEBUG 2023/03/19 14:51:04 battery power: -1708W
[site  ] DEBUG 2023/03/19 14:51:04 grid power: -506W
[site  ] DEBUG 2023/03/19 14:51:04 site power: -2164W
[lp-1  ] DEBUG 2023/03/19 14:51:04 charger status: A
[lp-1  ] INFO 2023/03/19 14:51:04 stop charging <-
[lp-1  ] INFO 2023/03/19 14:51:04 car disconnected
[lp-1  ] DEBUG 2023/03/19 14:51:04 set charge mode: pv
[lp-1  ] DEBUG 2023/03/19 14:51:04 set max current: 16
[lp-1  ] DEBUG 2023/03/19 14:51:04 set min soc: 30
[lp-1  ] DEBUG 2023/03/19 14:51:04 set target soc: 80
[lp-1  ] DEBUG 2023/03/19 14:51:04 soc estimated: 84.22% (vehicle: 84.00%)
[lp-1  ] DEBUG 2023/03/19 14:51:04 vehicle soc: 84%
[lp-1  ] DEBUG 2023/03/19 14:51:04 vehicle soc limit: 100%
[lp-1  ] DEBUG 2023/03/19 14:51:04 vehicle range: 278km
[lp-1  ] WARN 2023/03/19 14:51:04 charger out of sync: expected enabled, got disabled
[lp-1  ] ERROR 2023/03/19 14:51:04 charger: can not enable charging as ev is unplugged
[lp-1  ] DEBUG 2023/03/19 14:51:04 charger disable: contactor delay 12m54s
[site  ] DEBUG 2023/03/19 14:51:04 ----
[lp-1  ] DEBUG 2023/03/19 14:51:04 charge power: 0W
[eebus ] DEBUG 2023/03/19 14:51:04 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 564 DeviceDiagnosisHeartbeatData
[site  ] DEBUG 2023/03/19 14:51:04 pv power: 2398W
[site  ] DEBUG 2023/03/19 14:51:04 battery soc: 95%
[site  ] DEBUG 2023/03/19 14:51:04 battery power: -1708W
[site  ] DEBUG 2023/03/19 14:51:04 grid power: -506W
[site  ] DEBUG 2023/03/19 14:51:04 site power: -2164W
[lp-1  ] DEBUG 2023/03/19 14:51:04 charger status: A
[lp-1  ] DEBUG 2023/03/19 14:51:04 next soc poll remaining time: 59m59s
[lp-1  ] WARN 2023/03/19 14:51:04 charger out of sync: expected enabled, got disabled
[lp-1  ] ERROR 2023/03/19 14:51:04 charger: can not enable charging as ev is unplugged
[lp-1  ] DEBUG 2023/03/19 14:51:04 charger disable: contactor delay 12m54s
[eebus ] DEBUG 2023/03/19 14:51:05 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 565 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:51:06 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 566 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:51:07 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 567 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:51:07 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 568 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:51:08 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 569 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:51:09 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 570 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:51:10 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 571 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:51:11 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 572 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:51:11 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 573 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:51:12 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 574 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:51:13 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 575 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:51:14 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 576 DeviceDiagnosisHeartbeatData
[site  ] DEBUG 2023/03/19 14:51:14 ----
[lp-1  ] DEBUG 2023/03/19 14:51:14 charge power: 0W
[site  ] DEBUG 2023/03/19 14:51:14 pv power: 2407W
[site  ] DEBUG 2023/03/19 14:51:14 battery soc: 95%
[site  ] DEBUG 2023/03/19 14:51:14 battery power: -2182W
[site  ] DEBUG 2023/03/19 14:51:14 grid power: -41W
[site  ] DEBUG 2023/03/19 14:51:14 site power: -2173W
[lp-1  ] DEBUG 2023/03/19 14:51:14 charger status: A
[lp-1  ] DEBUG 2023/03/19 14:51:14 next soc poll remaining time: 59m50s
[lp-1  ] WARN 2023/03/19 14:51:14 charger out of sync: expected enabled, got disabled
[lp-1  ] ERROR 2023/03/19 14:51:14 charger: can not enable charging as ev is unplugged
[lp-1  ] DEBUG 2023/03/19 14:51:14 charger disable: contactor delay 12m44s
[eebus ] DEBUG 2023/03/19 14:51:15 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 577 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:51:15 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 578 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:51:16 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 579 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:51:17 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 580 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:51:18 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 581 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:51:19 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 582 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:51:19 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 583 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:51:20 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 584 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:51:21 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 585 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:51:22 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 586 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:51:23 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 587 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:51:23 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 588 DeviceDiagnosisHeartbeatData
[site  ] DEBUG 2023/03/19 14:51:24 ----
[lp-1  ] DEBUG 2023/03/19 14:51:24 charge power: 0W
[site  ] DEBUG 2023/03/19 14:51:24 pv power: 2409W
[site  ] DEBUG 2023/03/19 14:51:24 battery soc: 95%
[site  ] DEBUG 2023/03/19 14:51:24 battery power: -2225W
[site  ] DEBUG 2023/03/19 14:51:24 grid power: -2W
[site  ] DEBUG 2023/03/19 14:51:24 site power: -2177W
[lp-1  ] DEBUG 2023/03/19 14:51:24 charger status: A
[lp-1  ] DEBUG 2023/03/19 14:51:24 next soc poll remaining time: 59m40s
[lp-1  ] WARN 2023/03/19 14:51:24 charger out of sync: expected enabled, got disabled
[lp-1  ] ERROR 2023/03/19 14:51:24 charger: can not enable charging as ev is unplugged
[lp-1  ] DEBUG 2023/03/19 14:51:24 charger disable: contactor delay 12m34s
[eebus ] DEBUG 2023/03/19 14:51:24 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 589 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:51:25 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 590 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:51:26 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 591 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:51:27 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 592 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:51:27 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 593 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:51:28 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 594 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:51:29 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 595 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:51:30 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 596 DeviceDiagnosisHeartbeatData
[eebus ] DEBUG 2023/03/19 14:51:31 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 notify 597 DeviceDiagnosisHeartbeatData

What type of operating system are you running?

Linux

Version

evcc version 0.114.1

andig commented 1 year ago

/cc @DerAndereAndi

DerAndereAndi commented 1 year ago

Die Wallbox meldet das EV scheinbar als nicht verbunden:

[eebus ] DEBUG 2023/03/19 14:50:59 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to NodeManagement notify 679 NodeManagementUseCaseData
[eebus ] DEBUG 2023/03/19 14:50:59 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to NodeManagement notify 680 NodeManagementDetailedDiscoveryData
[eebus ] INFO 2023/03/19 14:50:59 ev disconnected

Bitte mal den Log Level von eebus auf trace stellen. Dann sieht man auch die Verbindungsversuche von evcc aus und ob die Verbindungsversuche von der Wallbox aus überhaupt kommen.

Eine WLAN Verbindung wird bei EEBUS immer zu Problemen führen können, wenn die Verbindung auch nur kurz weg ist, ist auch die Kontrolle von evcc weg und muss neu aufgebaut werden. Oft stürzt dabei der EEBUS Server auf der Wallbox ab, so dass das nicht immer funktioniert. Diese Probleme haben mehrere Personen gemeldet, doch in allen Logs zeigt das bisher auf ein Problem der Wallbox hin und nicht auf evcc und damit haben wir hier keinen Einfluss. Die besten Ergebnisse werden mit einer LAN Verbindung erzielt, so wie ich es hier bei mir installiert habe und damit überhaupt keine Verbindungsprobleme habe.

TobiasSt78 commented 1 year ago

Danke!

Hier kommt der erste Trace - von „EVCC Starten nicht möglich“, da die Kopplung fehlschlägt - und ohne etwas zu tun - nach 30 min funktioniert es dann. Das ist schon auffallend lang, oder?

10 m lan Kabel und 40 cm langer Bohrer sind bestellt… die Umstellung auf lan ist etwas aufwändiger. Werde berichten…

`pi@PI-NEU:~ $ sudo journalctl -fau evcc -- Journal begins at Fri 2023-03-10 21:55:13 CET. -- Mar 19 17:54:47 PI-NEU evcc[2404811]: [main ] INFO 2023/03/19 17:54:47 starting ui and api at :7070 Mar 19 17:54:47 PI-NEU evcc[2404811]: [db ] INFO 2023/03/19 17:54:47 using sqlite database: /root/.evcc/evcc.db Mar 19 17:54:47 PI-NEU evcc[2404811]: [eebus ] INFO 2023/03/19 17:54:47 Local SKI: f40ae61b52537cfe39ce285ed0ece43a2253be4d Mar 19 17:54:47 PI-NEU evcc[2404811]: [eebus ] DEBUG 2023/03/19 17:54:47 mdns: announce Mar 19 17:54:47 PI-NEU evcc[2404811]: [eebus ] DEBUG 2023/03/19 17:54:47 mdns: using avahi Mar 19 17:54:47 PI-NEU evcc[2404811]: [eebus ] DEBUG 2023/03/19 17:54:47 starting websocket server on :4712 Mar 19 17:54:48 PI-NEU evcc[2404811]: [eebus ] TRACE 2023/03/19 17:54:48 registering ski: 9c8e73d2eb540792384d0edcba40a53537402735 Mar 19 17:54:48 PI-NEU evcc[2404811]: [eebus ] DEBUG 2023/03/19 17:54:48 mdns: start search Mar 19 17:55:18 PI-NEU evcc[2404811]: [main ] FATAL 2023/03/19 17:55:18 cannot create charger 'wallbox_garage': cannot create charger 'template': cannot create charger 'eebus': i/o timeout Mar 19 17:55:18 PI-NEU evcc[2404811]: [main ] FATAL 2023/03/19 17:55:18 will attempt restart in: 5m0s Mar 19 18:00:18 PI-NEU evcc[2404811]: [eebus ] DEBUG 2023/03/19 18:00:18 mdns: stop announcement Mar 19 18:00:18 PI-NEU systemd[1]: evcc.service: Main process exited, code=exited, status=1/FAILURE Mar 19 18:00:18 PI-NEU systemd[1]: evcc.service: Failed with result 'exit-code'. Mar 19 18:00:23 PI-NEU systemd[1]: evcc.service: Scheduled restart job, restart counter is at 10. Mar 19 18:00:23 PI-NEU systemd[1]: Stopped evcc. Mar 19 18:00:23 PI-NEU systemd[1]: Started evcc. Mar 19 18:00:24 PI-NEU evcc[2406346]: [main ] INFO 2023/03/19 18:00:24 evcc 0.114.1 Mar 19 18:00:24 PI-NEU evcc[2406346]: [main ] INFO 2023/03/19 18:00:24 using config file: /etc/evcc.yaml Mar 19 18:00:24 PI-NEU evcc[2406346]: [main ] INFO 2023/03/19 18:00:24 starting ui and api at :7070 Mar 19 18:00:24 PI-NEU evcc[2406346]: [db ] INFO 2023/03/19 18:00:24 using sqlite database: /root/.evcc/evcc.db Mar 19 18:00:24 PI-NEU evcc[2406346]: [eebus ] INFO 2023/03/19 18:00:24 Local SKI: f40ae61b52537cfe39ce285ed0ece43a2253be4d Mar 19 18:00:24 PI-NEU evcc[2406346]: [eebus ] DEBUG 2023/03/19 18:00:24 mdns: announce Mar 19 18:00:24 PI-NEU evcc[2406346]: [eebus ] DEBUG 2023/03/19 18:00:24 mdns: using avahi Mar 19 18:00:24 PI-NEU evcc[2406346]: [eebus ] DEBUG 2023/03/19 18:00:24 starting websocket server on :4712 Mar 19 18:00:26 PI-NEU evcc[2406346]: [eebus ] DEBUG 2023/03/19 18:00:26 incoming connection request from 9c8e73d2eb540792384d0edcba40a53537402735 Mar 19 18:00:26 PI-NEU evcc[2406346]: [eebus ] DEBUG 2023/03/19 18:00:26 ski 9c8e73d2eb540792384d0edcba40a53537402735 is not paired, closing the connection Mar 19 18:00:26 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:00:26 registering ski: 9c8e73d2eb540792384d0edcba40a53537402735 Mar 19 18:00:26 PI-NEU evcc[2406346]: [eebus ] DEBUG 2023/03/19 18:00:26 mdns: start search Mar 19 18:00:56 PI-NEU evcc[2406346]: [main ] FATAL 2023/03/19 18:00:56 cannot create charger 'wallbox_garage': cannot create charger 'template': cannot create charger 'eebus': i/o timeout Mar 19 18:00:56 PI-NEU evcc[2406346]: [main ] FATAL 2023/03/19 18:00:56 will attempt restart in: 5m0s Mar 19 18:04:14 PI-NEU evcc[2406346]: [eebus ] DEBUG 2023/03/19 18:04:14 incoming connection request from 9c8e73d2eb540792384d0edcba40a53537402735 Mar 19 18:04:14 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:14 Send: 9c8e73d2eb540792384d0edcba40a53537402735 {"connectionHello":[{"phase":"ready"},{"waiting":60000}]} Mar 19 18:04:14 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:14 Recv: 9c8e73d2eb540792384d0edcba40a53537402735 {"connectionHello":[{"phase":"ready"},{"waiting":60000}]} Mar 19 18:04:14 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:14 Recv: 9c8e73d2eb540792384d0edcba40a53537402735 {"messageProtocolHandshake":[{"handshakeType":"announceMax"},{"version":[{"major":1},{"minor":0}]},{"formats":[{"format":["JSON-UTF8"]}]}]} Mar 19 18:04:14 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:14 Send: 9c8e73d2eb540792384d0edcba40a53537402735 {"messageProtocolHandshake":[{"handshakeType":"select"},{"version":[{"major":1},{"minor":0}]},{"formats":[{"format":["JSON-UTF8"]}]}]} Mar 19 18:04:14 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:14 Recv: 9c8e73d2eb540792384d0edcba40a53537402735 {"messageProtocolHandshake":[{"handshakeType":"select"},{"version":[{"major":1},{"minor":0}]},{"formats":[{"format":["JSON-UTF8"]}]}]} Mar 19 18:04:14 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:14 Send: 9c8e73d2eb540792384d0edcba40a53537402735 {"connectionPinState":[{"pinState":"none"}]} Mar 19 18:04:14 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:14 Recv: 9c8e73d2eb540792384d0edcba40a53537402735 {"connectionPinState":[{"pinState":"none"}]} Mar 19 18:04:14 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:14 Send: 9c8e73d2eb540792384d0edcba40a53537402735 {"accessMethodsRequest":[]} Mar 19 18:04:14 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:14 Recv: 9c8e73d2eb540792384d0edcba40a53537402735 {"accessMethodsRequest":[]} Mar 19 18:04:14 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:14 Send: 9c8e73d2eb540792384d0edcba40a53537402735 {"accessMethods":[{"id":"EVCC-6531383766356435"}]} Mar 19 18:04:14 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:14 Recv: 9c8e73d2eb540792384d0edcba40a53537402735 {"accessMethods":[{"id":"Elli-Wallbox-2045A11IB1"},{"dnsSd_mDns":[]}]} Mar 19 18:04:14 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:14 !! onConnect invoked on ski 9c8e73d2eb540792384d0edcba40a53537402735 Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] DEBUG 2023/03/19 18:04:15 Send: read 1 NodeManagementDetailedDiscoveryData Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:15 Send: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.1.1"},{"addressSource":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"addressDestination":[{"entity":[0]},{"feature":0}]},{"msgCounter":1},{"cmdClassifier":"read"}]},{"payload":[{"cmd":[[{"nodeManagementDetailedDiscoveryData":[]}]]}]}]}}]} Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:15 Recv: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.3.0"},{"addressSource":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[0]},{"feature":0}]},{"addressDestination":[{"entity":[0]},{"feature":0}]},{"msgCounter":3524},{"cmdClassifier":"read"},{"ackRequest":true}]},{"payload":[{"cmd":[[{"nodeManagementDetailedDiscoveryData":[]}]]}]}]}}]} Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] DEBUG 2023/03/19 18:04:15 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to NodeManagement read 3524 NodeManagementDetailedDiscoveryData Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] DEBUG 2023/03/19 18:04:15 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 reply 2 3524 NodeManagementDetailedDiscoveryData Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] DEBUG 2023/03/19 18:04:15 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 result 3 3524 ResultData 0 Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:15 Send: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.1.1"},{"addressSource":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"addressDestination":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[0]},{"feature":0}]},{"msgCounter":2},{"msgCounterReference":3524},{"cmdClassifier":"reply"}]},{"payload":[{"cmd":[[{"nodeManagementDetailedDiscoveryData":[{"specificationVersionList":[{"specificationVersion":["1.1.1"]}]},{"deviceInformation":[{"description":[{"deviceAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"}]},{"deviceType":"EnergyManagementSystem"},{"networkFeatureSet":"smart"}]}]},{"entityInformation":[[{"description":[{"entityAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]}]},{"entityType":"DeviceInformation"}]}],[{"description":[{"entityAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]}]},{"entityType":"CEM"}]}]]},{"featureInformation":[[{"description":[{"featureAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"featureType":"NodeManagement"},{"role":"special"},{"supportedFunction":[[{"function":"nodeManagementSubscriptionData"},{"possibleOperations":[{"read":[]}]}],[{"function":"nodeManagementSubscriptionDeleteCall"},{"possibleOperations":[]}],[{"function":"nodeManagementBindingDeleteCall"},{"possibleOperations":[]}],[{"function":"nodeManagementDetailedDiscoveryData"},{"possibleOperations":[{"read":[]}]}],[{"function":"nodeManagementUseCaseData"},{"possibleOperations":[{"read":[]}]}],[{"function":"nodeManagementSubscriptionRequestCall"},{"possibleOperations":[]}],[{"function":"nodeManagementBindingData"},{"possibleOperations":[{"read":[]}]}],[{"function":"nodeManagementBindingRequestCall"},{"possibleOperations":[]}],[{"function":"nodeManagementDestinationListData"},{"possibleOperations":[{"read":[]}]}]]}]}],[{"description":[{"featureAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":1}]},{"featureType":"DeviceClassification"},{"role":"server"},{"supportedFunction":[[{"function":"deviceClassificationManufacturerData"},{"possibleOperations":[{"read":[]}]}]]}]}],[{"description":[{"featureAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]},{"feature":1}]},{"featureType":"DeviceConfiguration"},{"role":"client"},{"description":"Device Configuration Client"}]}],[{"description":[{"featureAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]},{"feature":2}]},{"featureType":"DeviceClassification"},{"role":"client"},{"description":"Device Classification Client"}]}],[{"description":[{"featureAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]},{"feature":3}]},{"featureType":"DeviceDiagnosis"},{"role":"client"},{"description":"Device Diagnosis Client"}]}],[{"description":[{"featureAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]},{"feature":4}]},{"featureType":"DeviceDiagnosis"},{"role":"server"},{"supportedFunction":[[{"function":"deviceDiagnosisStateData"},{"possibleOperations":[{"read":[]}]}],[{"function":"deviceDiagnosisHeartbeatData"},{"possibleOperations":[{"read":[]}]}]]},{"description":"Device Diagnosis Server"}]}],[{"description":[{"featureAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]},{"feature":5}]},{"featureType":"ElectricalConnection"},{"role":"client"},{"description":"Electrical Connection Client"}]}],[{"description":[{"featureAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]},{"feature":6}]},{"featureType":"Measurement"},{"role":"client"},{"description":"Measurement Client"}]}],[{"description":[{"featureAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]},{"feature":7}]},{"featureType":"Identification"},{"role":"client"},{"description":"Identification Client"}]}],[{"description":[{"featureAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]},{"feature":8}]},{"featureType":"LoadControl"},{"role":"client"},{"description":"LoadControl Client"}]}]]}]}]]}]}]}}]} Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:15 Send: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.1.1"},{"addressSource":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"addressDestination":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[0]},{"feature":0}]},{"msgCounter":3},{"msgCounterReference":3524},{"cmdClassifier":"result"}]},{"payload":[{"cmd":[[{"resultData":[{"errorNumber":0}]}]]}]}]}}]} Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:15 Recv: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.3.0"},{"addressSource":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[0]},{"feature":0}]},{"addressDestination":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"msgCounter":3526},{"msgCounterReference":1},{"cmdClassifier":"reply"}]},{"payload":[{"cmd":[[{"nodeManagementDetailedDiscoveryData":[{"specificationVersionList":[{"specificationVersion":["1.3.0"]}]},{"deviceInformation":[{"description":[{"deviceAddress":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"}]},{"deviceType":"Generic"},{"networkFeatureSet":"smart"},{"lastStateChange":"added"}]}]},{"entityInformation":[[{"description":[{"entityAddress":[{"entity":[0]}]},{"entityType":"DeviceInformation"}]}],[{"description":[{"entityAddress":[{"entity":[1]}]},{"entityType":"EVSE"}]}],[{"description":[{"entityAddress":[{"entity":[1,1]}]},{"entityType":"EV"}]}]]},{"featureInformation":[[{"description":[{"featureAddress":[{"entity":[0]},{"feature":0}]},{"featureType":"NodeManagement"},{"role":"special"},{"supportedFunction":[[{"function":"nodeManagementBindingData"},{"possibleOperations":[{"read":[]}]}],[{"function":"nodeManagementBindingDeleteCall"},{"possibleOperations":[]}],[{"function":"nodeManagementBindingRequestCall"},{"possibleOperations":[]}],[{"function":"nodeManagementDetailedDiscoveryData"},{"possibleOperations":[{"read":[]}]}],[{"function":"nodeManagementSubscriptionData"},{"possibleOperations":[{"read":[]}]}],[{"function":"nodeManagementSubscriptionDeleteCall"},{"possibleOperations":[]}],[{"function":"nodeManagementSubscriptionRequestCall"},{"possibleOperations":[]}],[{"function":"nodeManagementUseCaseData"},{"possibleOperations":[{"read":[]}]}]]}]}],[{"description":[{"featureAddress":[{"entity":[0]},{"feature":1}]},{"featureType":"DeviceClassification"},{"role":"server"},{"supportedFunction":[[{"function":"deviceClassificationManufacturerData"},{"possibleOperations":[{"read":[]}]}]]}]}],[{"description":[{"featureAddress":[{"entity":[1]},{"feature":4}]},{"featureType":"DeviceClassification"},{"role":"server"},{"supportedFunction":[[{"function":"deviceClassificationManufacturerData"},{"possibleOperations":[{"read":[{"partial":[]}]}]}]]}]}],[{"description":[{"featureAddress":[{"entity":[1]},{"feature":29}]},{"featureType":"Bill"},{"role":"server"},{"supportedFunction":[[{"function":"billConstraintsListData"},{"possibleOperations":[{"read":[{"partial":[]}]}]}],[{"function":"billDescriptionListData"},{"possibleOperations":[{"read":[{"partial":[]}]}]}],[{"function":"billListData"},{"possibleOperations":[{"read":[{"partial":[]}]},{"write":[{"partial":[]}]}]}]]}]}],[{"description":[{"featureAddress":[{"entity":[1]},{"feature":1000}]},{"featureType":"DeviceDiagnosis"},{"role":"server"},{"supportedFunction":[[{"function":"deviceDiagnosisHeartbeatData"},{"possibleOperations":[{"read":[]}]}],[{"function":"deviceDiagnosisStateData"},{"possibleOperations":[{"read":[]}]}]]},{"description":"Device diagnosis server feature"}]}],[{"description":[{"featureAddress":[{"entity":[1,1]},{"feature":4}]},{"featureType":"DeviceClassification"},{"role":"server"},{"supportedFunction":[[{"function":"deviceClassificationManufacturerData"},{"possibleOperations":[{"read":[{"partial":[]}]}]}]]}]}],[{"description":[{"featureAddress":[{"entity":[1,1]},{"feature":5}]},{"featureType":"DeviceDiagnosis"},{"role":"server"},{"supportedFunction":[[{"function":"deviceDiagnosisStateData"},{"possibleOperations":[{"read":[{"partial":[]}]}]}]]}]}],[{"description":[{"featureAddress":[{"entity":[1,1]},{"feature":7}]},{"featureType":"ElectricalConnection"},{"role":"server"},{"supportedFunction":[[{"function":"electricalConnectionParameterDescriptionListData"},{"possibleOperations":[{"read":[{"partial":[]}]}]}],[{"function":"electricalConnectionPermittedValueSetListData"},{"possibleOperations":[{"read":[{"partial":[]}]}]}],[{"function":"electricalConnectionDescriptionListData"},{"possibleOperations":[{"read":[{"partial":[]}]}]}]]}]}],[{"description":[{"featureAddress":[{"entity":[1,1]},{"feature":10}]},{"featureType":"LoadControl"},{"role":"server"},{"supportedFunction":[[{"function":"loadControlLimitDescriptionListData"},{"possibleOperations":[{"read":[{"partial":[]}]}]}],[{"function":"loadControlLimitListData"},{"possibleOperations":[{"read":[{"partial":[]}]},{"write":[{"partial":[]}]}]}]]}]}],[{"description":[{"featureAddress":[{"entity":[1,1]},{"feature":11}]},{"featureType":"Measurement"},{"role":"server"},{"supportedFunction":[[{"function":"measurementConstraintsListData"},{"possibleOperations":[{"read":[{"partial":[]}]}]}],[{"function":"measurementDescriptionListData"},{"possibleOperations":[{"read":[{"partial":[]}]}]}],[{"function":"measurementListData"},{"possibleOperations":[{"read":[{"partial":[]}]}]}]]}]}],[{"description":[{"featureAddress":[{"entity":[1,1]},{"feature":24}]},{"featureType":"DeviceConfiguration"},{"role":"server"},{"supportedFunction":[[{"function":"deviceConfigurationKeyValueDescriptionListData"},{"possibleOperations":[{"read":[{"partial":[]}]}]}],[{"function":"deviceConfigurationKeyValueListData"},{"possibleOperations":[{"read":[{"partial":[]}]}]}]]}]}],[{"description":[{"featureAddress":[{"entity":[1,1]},{"feature":26}]},{"featureType":"TimeSeries"},{"role":"server"},{"supportedFunction":[[{"function":"timeSeriesConstraintsListData"},{"possibleOperations":[{"read":[{"partial":[]}]}]}],[{"function":"timeSeriesDescriptionListData"},{"possibleOperations":[{"read":[{"partial":[]}]}]}],[{"function":"timeSeriesListData"},{"possibleOperations":[{"read":[{"partial":[]}]},{"write":[{"partial":[]}]}]}]]}]}],[{"description":[{"featureAddress":[{"entity":[1,1]},{"feature":28}]},{"featureType":"IncentiveTable"},{"role":"server"},{"supportedFunction":[[{"function":"incentiveTableConstraintsData"},{"possibleOperations":[{"read":[{"partial":[]}]}]}],[{"function":"incentiveTableData"},{"possibleOperations":[{"read":[{"partial":[]}]},{"write":[{"partial":[]}]}]}],[{"function":"incentiveTableDescriptionData"},{"possibleOperations":[{"read":[{"partial":[]}]},{"write":[{"partial":[]}]}]}]]}]}],[{"description":[{"featureAddress":[{"entity":[1,1]},{"feature":30}]},{"featureType":"Identification"},{"role":"server"},{"supportedFunction":[[{"function":"identificationListData"},{"possibleOperations":[{"read":[{"partial":[]}]}]}]]}]}],[{"description":[{"featureAddress":[{"entity":[1,1]},{"feature":1001}]},{"featureType":"Generic"},{"role":"client"},{"description":"Heartbeat device diagnosis client feature"}]}]]}]}]]}]}]}}]} Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] DEBUG 2023/03/19 18:04:15 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to NodeManagement reply 3526 1 NodeManagementDetailedDiscoveryData Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] INFO 2023/03/19 18:04:15 ev connected Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] DEBUG 2023/03/19 18:04:15 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 read 6 DeviceClassificationManufacturerData Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] DEBUG 2023/03/19 18:04:15 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 call 5 NodeManagementSubscriptionRequestCall Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] DEBUG 2023/03/19 18:04:15 Send: call 4 NodeManagementSubscriptionRequestCall Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] DEBUG 2023/03/19 18:04:15 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 read 7 DeviceDiagnosisStateData Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] DEBUG 2023/03/19 18:04:15 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 call 8 NodeManagementSubscriptionRequestCall Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:15 Send: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.1.1"},{"addressSource":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]},{"feature":2}]},{"addressDestination":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[1]},{"feature":4}]},{"msgCounter":6},{"cmdClassifier":"read"}]},{"payload":[{"cmd":[[{"deviceClassificationManufacturerData":[]}]]}]}]}}]} Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:15 Send: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.1.1"},{"addressSource":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"addressDestination":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[0]},{"feature":0}]},{"msgCounter":5},{"cmdClassifier":"call"},{"ackRequest":true}]},{"payload":[{"cmd":[[{"nodeManagementSubscriptionRequestCall":[{"subscriptionRequest":[{"clientAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]},{"feature":2}]},{"serverAddress":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[1,1]},{"feature":4}]},{"serverFeatureType":"DeviceClassification"}]}]}]]}]}]}}]} Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] DEBUG 2023/03/19 18:04:15 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 call 9 NodeManagementSubscriptionRequestCall Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:15 Send: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.1.1"},{"addressSource":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]},{"feature":3}]},{"addressDestination":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[1]},{"feature":1000}]},{"msgCounter":7},{"cmdClassifier":"read"}]},{"payload":[{"cmd":[[{"deviceDiagnosisStateData":[]}]]}]}]}}]} Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:15 Send: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.1.1"},{"addressSource":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"addressDestination":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[0]},{"feature":0}]},{"msgCounter":8},{"cmdClassifier":"call"},{"ackRequest":true}]},{"payload":[{"cmd":[[{"nodeManagementSubscriptionRequestCall":[{"subscriptionRequest":[{"clientAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]},{"feature":1}]},{"serverAddress":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[1,1]},{"feature":24}]},{"serverFeatureType":"DeviceConfiguration"}]}]}]]}]}]}}]} Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] DEBUG 2023/03/19 18:04:15 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 read 10 NodeManagementUseCaseData Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:15 Send: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.1.1"},{"addressSource":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"addressDestination":[{"entity":[0]},{"feature":0}]},{"msgCounter":4},{"cmdClassifier":"call"},{"ackRequest":true}]},{"payload":[{"cmd":[[{"nodeManagementSubscriptionRequestCall":[{"subscriptionRequest":[{"clientAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"serverAddress":[{"entity":[0]},{"feature":0}]},{"serverFeatureType":"NodeManagement"}]}]}]]}]}]}}]} Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] DEBUG 2023/03/19 18:04:15 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 call 11 NodeManagementSubscriptionRequestCall Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:15 Send: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.1.1"},{"addressSource":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"addressDestination":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[0]},{"feature":0}]},{"msgCounter":9},{"cmdClassifier":"call"},{"ackRequest":true}]},{"payload":[{"cmd":[[{"nodeManagementSubscriptionRequestCall":[{"subscriptionRequest":[{"clientAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]},{"feature":3}]},{"serverAddress":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[1,1]},{"feature":5}]},{"serverFeatureType":"DeviceDiagnosis"}]}]}]]}]}]}}]} Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] DEBUG 2023/03/19 18:04:15 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 call 12 NodeManagementSubscriptionRequestCall Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:15 Send: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.1.1"},{"addressSource":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"addressDestination":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[0]},{"feature":0}]},{"msgCounter":11},{"cmdClassifier":"call"},{"ackRequest":true}]},{"payload":[{"cmd":[[{"nodeManagementSubscriptionRequestCall":[{"subscriptionRequest":[{"clientAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]},{"feature":5}]},{"serverAddress":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[1,1]},{"feature":7}]},{"serverFeatureType":"ElectricalConnection"}]}]}]]}]}]}}]} Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:15 Send: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.1.1"},{"addressSource":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"addressDestination":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[0]},{"feature":0}]},{"msgCounter":10},{"cmdClassifier":"read"}]},{"payload":[{"cmd":[[{"nodeManagementUseCaseData":[]}]]}]}]}}]} Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] DEBUG 2023/03/19 18:04:15 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 call 13 NodeManagementSubscriptionRequestCall Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:15 Send: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.1.1"},{"addressSource":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"addressDestination":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[0]},{"feature":0}]},{"msgCounter":12},{"cmdClassifier":"call"},{"ackRequest":true}]},{"payload":[{"cmd":[[{"nodeManagementSubscriptionRequestCall":[{"subscriptionRequest":[{"clientAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]},{"feature":6}]},{"serverAddress":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[1,1]},{"feature":11}]},{"serverFeatureType":"Measurement"}]}]}]]}]}]}}]} Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] DEBUG 2023/03/19 18:04:15 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 call 14 NodeManagementSubscriptionRequestCall Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:15 Send: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.1.1"},{"addressSource":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"addressDestination":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[0]},{"feature":0}]},{"msgCounter":13},{"cmdClassifier":"call"},{"ackRequest":true}]},{"payload":[{"cmd":[[{"nodeManagementSubscriptionRequestCall":[{"subscriptionRequest":[{"clientAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]},{"feature":7}]},{"serverAddress":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[1,1]},{"feature":30}]},{"serverFeatureType":"Identification"}]}]}]]}]}]}}]} Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] DEBUG 2023/03/19 18:04:15 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 call 15 NodeManagementBindingRequestCall Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:15 Send: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.1.1"},{"addressSource":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"addressDestination":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[0]},{"feature":0}]},{"msgCounter":14},{"cmdClassifier":"call"},{"ackRequest":true}]},{"payload":[{"cmd":[[{"nodeManagementSubscriptionRequestCall":[{"subscriptionRequest":[{"clientAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]},{"feature":8}]},{"serverAddress":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[1,1]},{"feature":10}]},{"serverFeatureType":"LoadControl"}]}]}]]}]}]}}]} Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] DEBUG 2023/03/19 18:04:15 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 read 16 DeviceConfigurationKeyValueDescriptionListData Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:15 Send: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.1.1"},{"addressSource":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"addressDestination":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[0]},{"feature":0}]},{"msgCounter":15},{"cmdClassifier":"call"},{"ackRequest":true}]},{"payload":[{"cmd":[[{"nodeManagementBindingRequestCall":[{"bindingRequest":[{"clientAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]},{"feature":8}]},{"serverAddress":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[1,1]},{"feature":10}]},{"serverFeatureType":"LoadControl"}]}]}]]}]}]}}]} Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] DEBUG 2023/03/19 18:04:15 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 read 17 DeviceClassificationManufacturerData Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:15 Send: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.1.1"},{"addressSource":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]},{"feature":1}]},{"addressDestination":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[1,1]},{"feature":24}]},{"msgCounter":16},{"cmdClassifier":"read"}]},{"payload":[{"cmd":[[{"deviceConfigurationKeyValueDescriptionListData":[]}]]}]}]}}]} Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] DEBUG 2023/03/19 18:04:15 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 read 18 DeviceDiagnosisStateData Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:15 Send: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.1.1"},{"addressSource":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]},{"feature":2}]},{"addressDestination":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[1,1]},{"feature":4}]},{"msgCounter":17},{"cmdClassifier":"read"}]},{"payload":[{"cmd":[[{"deviceClassificationManufacturerData":[]}]]}]}]}}]} Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] DEBUG 2023/03/19 18:04:15 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 read 19 ElectricalConnectionDescriptionListData Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:15 Send: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.1.1"},{"addressSource":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]},{"feature":3}]},{"addressDestination":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[1,1]},{"feature":5}]},{"msgCounter":18},{"cmdClassifier":"read"}]},{"payload":[{"cmd":[[{"deviceDiagnosisStateData":[]}]]}]}]}}]} Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] DEBUG 2023/03/19 18:04:15 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 read 20 ElectricalConnectionParameterDescriptionListData Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:15 Send: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.1.1"},{"addressSource":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]},{"feature":5}]},{"addressDestination":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[1,1]},{"feature":7}]},{"msgCounter":19},{"cmdClassifier":"read"}]},{"payload":[{"cmd":[[{"electricalConnectionDescriptionListData":[]}]]}]}]}}]} Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] DEBUG 2023/03/19 18:04:15 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 read 21 MeasurementDescriptionListData Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:15 Send: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.1.1"},{"addressSource":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]},{"feature":5}]},{"addressDestination":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[1,1]},{"feature":7}]},{"msgCounter":20},{"cmdClassifier":"read"}]},{"payload":[{"cmd":[[{"electricalConnectionParameterDescriptionListData":[]}]]}]}]}}]} Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] DEBUG 2023/03/19 18:04:15 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 read 22 IdentificationListData Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:15 Send: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.1.1"},{"addressSource":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]},{"feature":6}]},{"addressDestination":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[1,1]},{"feature":11}]},{"msgCounter":21},{"cmdClassifier":"read"}]},{"payload":[{"cmd":[[{"measurementDescriptionListData":[]}]]}]}]}}]} Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] DEBUG 2023/03/19 18:04:15 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 read 23 LoadControlLimitDescriptionListData Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:15 Send: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.1.1"},{"addressSource":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]},{"feature":7}]},{"addressDestination":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[1,1]},{"feature":30}]},{"msgCounter":22},{"cmdClassifier":"read"}]},{"payload":[{"cmd":[[{"identificationListData":[]}]]}]}]}}]} Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:15 Send: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.1.1"},{"addressSource":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]},{"feature":8}]},{"addressDestination":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[1,1]},{"feature":10}]},{"msgCounter":23},{"cmdClassifier":"read"}]},{"payload":[{"cmd":[[{"loadControlLimitDescriptionListData":[]}]]}]}]}}]} Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:15 Recv: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.3.0"},{"addressSource":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[0]},{"feature":0}]},{"addressDestination":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"msgCounter":3529},{"cmdClassifier":"call"},{"ackRequest":true}]},{"payload":[{"cmd":[[{"nodeManagementSubscriptionRequestCall":[{"subscriptionRequest":[{"clientAddress":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[0]},{"feature":0}]},{"serverAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"serverFeatureType":"NodeManagement"}]}]}]]}]}]}}]} Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] DEBUG 2023/03/19 18:04:15 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to NodeManagement call 3529 NodeManagementSubscriptionRequestCall Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] DEBUG 2023/03/19 18:04:15 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 result 24 3529 ResultData 0 Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:15 Send: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.1.1"},{"addressSource":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"addressDestination":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[0]},{"feature":0}]},{"msgCounter":24},{"msgCounterReference":3529},{"cmdClassifier":"result"}]},{"payload":[{"cmd":[[{"resultData":[{"errorNumber":0}]}]]}]}]}}]} Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:15 Recv: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.3.0"},{"addressSource":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[1]},{"feature":4}]},{"addressDestination":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]},{"feature":2}]},{"msgCounter":3531},{"msgCounterReference":6},{"cmdClassifier":"reply"}]},{"payload":[{"cmd":[[{"deviceClassificationManufacturerData":[{"deviceName":"Elli-Wallbox-2045A11IB1"},{"serialNumber":"2045A11IB1"},{"vendorName":"Elli"},{"vendorCode":"3210"},{"brandName":"Elli"}]}]]}]}]}}]} Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] DEBUG 2023/03/19 18:04:15 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to DeviceClassification reply 3531 6 DeviceClassificationManufacturerData Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:15 Recv: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.3.0"},{"addressSource":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[0]},{"feature":0}]},{"addressDestination":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"msgCounter":3537},{"msgCounterReference":5},{"cmdClassifier":"result"}]},{"payload":[{"cmd":[[{"resultData":[{"errorNumber":0}]}]]}]}]}}]} Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] DEBUG 2023/03/19 18:04:15 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to NodeManagement result 3537 5 ResultData 0 Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:15 Recv: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.3.0"},{"addressSource":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[1]},{"feature":1000}]},{"addressDestination":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]},{"feature":3}]},{"msgCounter":3539},{"msgCounterReference":7},{"cmdClassifier":"reply"}]},{"payload":[{"cmd":[[{"deviceDiagnosisStateData":[{"operatingState":"normalOperation"}]}]]}]}]}}]} Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] DEBUG 2023/03/19 18:04:15 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to DeviceDiagnosis reply 3539 7 DeviceDiagnosisStateData Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:15 Recv: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.3.0"},{"addressSource":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[0]},{"feature":0}]},{"addressDestination":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"msgCounter":3541},{"msgCounterReference":8},{"cmdClassifier":"result"}]},{"payload":[{"cmd":[[{"resultData":[{"errorNumber":0}]}]]}]}]}}]} Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] DEBUG 2023/03/19 18:04:15 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to NodeManagement result 3541 8 ResultData 0 Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:15 Recv: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.3.0"},{"addressSource":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[0]},{"feature":0}]},{"addressDestination":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"msgCounter":3543},{"msgCounterReference":4},{"cmdClassifier":"result"}]},{"payload":[{"cmd":[[{"resultData":[{"errorNumber":0}]}]]}]}]}}]} Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] DEBUG 2023/03/19 18:04:15 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to NodeManagement result 3543 4 ResultData 0 Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:15 Recv: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.3.0"},{"addressSource":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[0]},{"feature":0}]},{"addressDestination":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"msgCounter":3547},{"msgCounterReference":9},{"cmdClassifier":"result"}]},{"payload":[{"cmd":[[{"resultData":[{"errorNumber":0}]}]]}]}]}}]} Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] DEBUG 2023/03/19 18:04:15 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to NodeManagement result 3547 9 ResultData 0 Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:15 Recv: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.3.0"},{"addressSource":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[0]},{"feature":0}]},{"addressDestination":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"msgCounter":3549},{"msgCounterReference":11},{"cmdClassifier":"result"}]},{"payload":[{"cmd":[[{"resultData":[{"errorNumber":0}]}]]}]}]}}]} Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] DEBUG 2023/03/19 18:04:15 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to NodeManagement result 3549 11 ResultData 0 Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:15 Recv: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.3.0"},{"addressSource":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[0]},{"feature":0}]},{"addressDestination":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"msgCounter":3555},{"msgCounterReference":10},{"cmdClassifier":"reply"}]},{"payload":[{"cmd":[[{"nodeManagementUseCaseData":[{"useCaseInformation":[[{"address":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"}]},{"actor":"EVSE"},{"useCaseSupport":[[{"useCaseName":"evseCommissioningAndConfiguration"},{"useCaseVersion":"1.0.1"},{"scenarioSupport":[1,2]}],[{"useCaseName":"evChargingSummary"},{"useCaseVersion":"1.0.1"},{"scenarioSupport":[1]}]]}],[{"address":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"}]},{"actor":"EV"},{"useCaseSupport":[[{"useCaseName":"evCommissioningAndConfiguration"},{"useCaseVersion":"1.0.1"},{"scenarioSupport":[1,2,3,4,5,6,7,8]}],[{"useCaseName":"overloadProtectionByEvChargingCurrentCurtailment"},{"useCaseVersion":"1.0.1"},{"scenarioSupport":[1,2,3]}],[{"useCaseName":"coordinatedEvCharging"},{"useCaseVersion":"1.0.1"},{"scenarioSupport":[1,2,3,4,5,6,7,8]}],[{"useCaseName":"measurementOfElectricityDuringEvCharging"},{"useCaseVersion":"1.0.1"},{"scenarioSupport":[1,2,3]}],[{"useCaseName":"optimizationOfSelfConsumptionDuringEvCharging"},{"useCaseVersion":"1.0.1"},{"scenarioSupport":[1,2,3]}]]}]]}]}]]}]}]}}]} Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] DEBUG 2023/03/19 18:04:15 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to NodeManagement reply 3555 10 NodeManagementUseCaseData Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:15 Recv: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.3.0"},{"addressSource":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[0]},{"feature":0}]},{"addressDestination":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"msgCounter":3558},{"msgCounterReference":12},{"cmdClassifier":"result"}]},{"payload":[{"cmd":[[{"resultData":[{"errorNumber":0}]}]]}]}]}}]} Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] DEBUG 2023/03/19 18:04:15 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to NodeManagement result 3558 12 ResultData 0 Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:15 Recv: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.3.0"},{"addressSource":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[0]},{"feature":0}]},{"addressDestination":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"msgCounter":3561},{"msgCounterReference":13},{"cmdClassifier":"result"}]},{"payload":[{"cmd":[[{"resultData":[{"errorNumber":0}]}]]}]}]}}]} Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] DEBUG 2023/03/19 18:04:15 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to NodeManagement result 3561 13 ResultData 0 Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:15 Recv: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.3.0"},{"addressSource":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[0]},{"feature":0}]},{"addressDestination":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"msgCounter":3562},{"msgCounterReference":14},{"cmdClassifier":"result"}]},{"payload":[{"cmd":[[{"resultData":[{"errorNumber":0}]}]]}]}]}}]} Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] DEBUG 2023/03/19 18:04:15 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to NodeManagement result 3562 14 ResultData 0 Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] DEBUG 2023/03/19 18:04:15 9c8e73d2eb540792384d0edcba40a53537402735 websocket read error: websocket: close 1006 (abnormal closure): unexpected EOF Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] TRACE 2023/03/19 18:04:15 !! onDisconnect invoked on ski 9c8e73d2eb540792384d0edcba40a53537402735 Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] INFO 2023/03/19 18:04:15 ev disconnected Mar 19 18:04:15 PI-NEU evcc[2406346]: [eebus ] DEBUG 2023/03/19 18:04:15 restarting mdns search Mar 19 18:05:56 PI-NEU evcc[2406346]: [eebus ] DEBUG 2023/03/19 18:05:56 mdns: stop announcement Mar 19 18:05:56 PI-NEU systemd[1]: evcc.service: Main process exited, code=exited, status=1/FAILURE Mar 19 18:05:56 PI-NEU systemd[1]: evcc.service: Failed with result 'exit-code'. Mar 19 18:05:56 PI-NEU systemd[1]: evcc.service: Consumed 1.182s CPU time. Mar 19 18:06:01 PI-NEU systemd[1]: evcc.service: Scheduled restart job, restart counter is at 11. Mar 19 18:06:01 PI-NEU systemd[1]: Stopped evcc. Mar 19 18:06:01 PI-NEU systemd[1]: evcc.service: Consumed 1.182s CPU time. Mar 19 18:06:01 PI-NEU systemd[1]: Started evcc. Mar 19 18:06:01 PI-NEU evcc[2407854]: [main ] INFO 2023/03/19 18:06:01 evcc 0.114.1 Mar 19 18:06:01 PI-NEU evcc[2407854]: [main ] INFO 2023/03/19 18:06:01 using config file: /etc/evcc.yaml Mar 19 18:06:01 PI-NEU evcc[2407854]: [main ] INFO 2023/03/19 18:06:01 starting ui and api at :7070 Mar 19 18:06:01 PI-NEU evcc[2407854]: [db ] INFO 2023/03/19 18:06:01 using sqlite database: /root/.evcc/evcc.db Mar 19 18:06:01 PI-NEU evcc[2407854]: [eebus ] INFO 2023/03/19 18:06:01 Local SKI: f40ae61b52537cfe39ce285ed0ece43a2253be4d Mar 19 18:06:01 PI-NEU evcc[2407854]: [eebus ] DEBUG 2023/03/19 18:06:01 mdns: announce Mar 19 18:06:01 PI-NEU evcc[2407854]: [eebus ] DEBUG 2023/03/19 18:06:01 mdns: using avahi Mar 19 18:06:01 PI-NEU evcc[2407854]: [eebus ] DEBUG 2023/03/19 18:06:01 starting websocket server on :4712 Mar 19 18:06:03 PI-NEU evcc[2407854]: [eebus ] TRACE 2023/03/19 18:06:03 registering ski: 9c8e73d2eb540792384d0edcba40a53537402735 Mar 19 18:06:03 PI-NEU evcc[2407854]: [eebus ] DEBUG 2023/03/19 18:06:03 mdns: start search Mar 19 18:06:33 PI-NEU evcc[2407854]: [main ] FATAL 2023/03/19 18:06:33 cannot create charger 'wallbox_garage': cannot create charger 'template': cannot create charger 'eebus': i/o timeout Mar 19 18:06:33 PI-NEU evcc[2407854]: [main ] FATAL 2023/03/19 18:06:33 will attempt restart in: 5m0s Mar 19 18:11:33 PI-NEU evcc[2407854]: [eebus ] DEBUG 2023/03/19 18:11:33 mdns: stop announcement Mar 19 18:11:33 PI-NEU systemd[1]: evcc.service: Main process exited, code=exited, status=1/FAILURE Mar 19 18:11:33 PI-NEU systemd[1]: evcc.service: Failed with result 'exit-code'. Mar 19 18:11:38 PI-NEU systemd[1]: evcc.service: Scheduled restart job, restart counter is at 12. Mar 19 18:11:38 PI-NEU systemd[1]: Stopped evcc. Mar 19 18:11:38 PI-NEU systemd[1]: Started evcc. Mar 19 18:11:38 PI-NEU evcc[2409344]: [main ] INFO 2023/03/19 18:11:38 evcc 0.114.1 Mar 19 18:11:38 PI-NEU evcc[2409344]: [main ] INFO 2023/03/19 18:11:38 using config file: /etc/evcc.yaml Mar 19 18:11:38 PI-NEU evcc[2409344]: [main ] INFO 2023/03/19 18:11:38 starting ui and api at :7070 Mar 19 18:11:38 PI-NEU evcc[2409344]: [db ] INFO 2023/03/19 18:11:38 using sqlite database: /root/.evcc/evcc.db Mar 19 18:11:39 PI-NEU evcc[2409344]: [eebus ] INFO 2023/03/19 18:11:39 Local SKI: f40ae61b52537cfe39ce285ed0ece43a2253be4d Mar 19 18:11:39 PI-NEU evcc[2409344]: [eebus ] DEBUG 2023/03/19 18:11:39 mdns: announce Mar 19 18:11:39 PI-NEU evcc[2409344]: [eebus ] DEBUG 2023/03/19 18:11:39 mdns: using avahi Mar 19 18:11:39 PI-NEU evcc[2409344]: [eebus ] DEBUG 2023/03/19 18:11:39 starting websocket server on :4712 Mar 19 18:11:40 PI-NEU evcc[2409344]: [eebus ] TRACE 2023/03/19 18:11:40 registering ski: 9c8e73d2eb540792384d0edcba40a53537402735 Mar 19 18:11:40 PI-NEU evcc[2409344]: [eebus ] DEBUG 2023/03/19 18:11:40 mdns: start search Mar 19 18:12:10 PI-NEU evcc[2409344]: [main ] FATAL 2023/03/19 18:12:10 cannot create charger 'wallbox_garage': cannot create charger 'template': cannot create charger 'eebus': i/o timeout Mar 19 18:12:10 PI-NEU evcc[2409344]: [main ] FATAL 2023/03/19 18:12:10 will attempt restart in: 5m0s Mar 19 18:17:10 PI-NEU evcc[2409344]: [eebus ] DEBUG 2023/03/19 18:17:10 mdns: stop announcement Mar 19 18:17:10 PI-NEU systemd[1]: evcc.service: Main process exited, code=exited, status=1/FAILURE Mar 19 18:17:10 PI-NEU systemd[1]: evcc.service: Failed with result 'exit-code'. Mar 19 18:17:15 PI-NEU systemd[1]: evcc.service: Scheduled restart job, restart counter is at 13. Mar 19 18:17:15 PI-NEU systemd[1]: Stopped evcc. Mar 19 18:17:15 PI-NEU systemd[1]: Started evcc. Mar 19 18:17:15 PI-NEU evcc[2410875]: [main ] INFO 2023/03/19 18:17:15 evcc 0.114.1 Mar 19 18:17:15 PI-NEU evcc[2410875]: [main ] INFO 2023/03/19 18:17:15 using config file: /etc/evcc.yaml Mar 19 18:17:15 PI-NEU evcc[2410875]: [main ] INFO 2023/03/19 18:17:15 starting ui and api at :7070 Mar 19 18:17:15 PI-NEU evcc[2410875]: [db ] INFO 2023/03/19 18:17:15 using sqlite database: /root/.evcc/evcc.db Mar 19 18:17:16 PI-NEU evcc[2410875]: [eebus ] INFO 2023/03/19 18:17:16 Local SKI: f40ae61b52537cfe39ce285ed0ece43a2253be4d Mar 19 18:17:16 PI-NEU evcc[2410875]: [eebus ] DEBUG 2023/03/19 18:17:16 mdns: announce Mar 19 18:17:16 PI-NEU evcc[2410875]: [eebus ] DEBUG 2023/03/19 18:17:16 mdns: using avahi Mar 19 18:17:16 PI-NEU evcc[2410875]: [eebus ] DEBUG 2023/03/19 18:17:16 starting websocket server on :4712 Mar 19 18:17:17 PI-NEU evcc[2410875]: [eebus ] TRACE 2023/03/19 18:17:17 registering ski: 9c8e73d2eb540792384d0edcba40a53537402735 Mar 19 18:17:17 PI-NEU evcc[2410875]: [eebus ] DEBUG 2023/03/19 18:17:17 mdns: start search Mar 19 18:17:47 PI-NEU evcc[2410875]: [main ] FATAL 2023/03/19 18:17:47 cannot create charger 'wallbox_garage': cannot create charger 'template': cannot create charger 'eebus': i/o timeout Mar 19 18:17:47 PI-NEU evcc[2410875]: [main ] FATAL 2023/03/19 18:17:47 will attempt restart in: 5m0s Mar 19 18:17:51 PI-NEU evcc[2410875]: [main ] FATAL 2023/03/19 18:17:51 evcc was stopped. OS should restart the service. Or restart manually. Mar 19 18:17:51 PI-NEU evcc[2410875]: [eebus ] DEBUG 2023/03/19 18:17:51 mdns: stop announcement Mar 19 18:17:51 PI-NEU systemd[1]: evcc.service: Main process exited, code=exited, status=1/FAILURE Mar 19 18:17:51 PI-NEU systemd[1]: evcc.service: Failed with result 'exit-code'. Mar 19 18:17:51 PI-NEU systemd[1]: evcc.service: Consumed 1.161s CPU time. Mar 19 18:17:56 PI-NEU systemd[1]: evcc.service: Scheduled restart job, restart counter is at 14. Mar 19 18:17:56 PI-NEU systemd[1]: Stopped evcc. Mar 19 18:17:56 PI-NEU systemd[1]: evcc.service: Consumed 1.161s CPU time. Mar 19 18:17:56 PI-NEU systemd[1]: Started evcc. Mar 19 18:17:57 PI-NEU evcc[2411049]: [main ] INFO 2023/03/19 18:17:57 evcc 0.114.1 Mar 19 18:17:57 PI-NEU evcc[2411049]: [main ] INFO 2023/03/19 18:17:57 using config file: /etc/evcc.yaml Mar 19 18:17:57 PI-NEU evcc[2411049]: [main ] INFO 2023/03/19 18:17:57 starting ui and api at :7070 Mar 19 18:17:57 PI-NEU evcc[2411049]: [db ] INFO 2023/03/19 18:17:57 using sqlite database: /root/.evcc/evcc.db Mar 19 18:17:57 PI-NEU evcc[2411049]: [eebus ] INFO 2023/03/19 18:17:57 Local SKI: f40ae61b52537cfe39ce285ed0ece43a2253be4d Mar 19 18:17:57 PI-NEU evcc[2411049]: [eebus ] DEBUG 2023/03/19 18:17:57 mdns: announce Mar 19 18:17:57 PI-NEU evcc[2411049]: [eebus ] DEBUG 2023/03/19 18:17:57 mdns: using avahi Mar 19 18:17:57 PI-NEU evcc[2411049]: [eebus ] DEBUG 2023/03/19 18:17:57 starting websocket server on :4712 Mar 19 18:17:58 PI-NEU evcc[2411049]: [eebus ] TRACE 2023/03/19 18:17:58 registering ski: 9c8e73d2eb540792384d0edcba40a53537402735 Mar 19 18:17:58 PI-NEU evcc[2411049]: [eebus ] DEBUG 2023/03/19 18:17:58 mdns: start search Mar 19 18:18:28 PI-NEU evcc[2411049]: [main ] FATAL 2023/03/19 18:18:28 cannot create charger 'wallbox_garage': cannot create charger 'template': cannot create charger 'eebus': i/o timeout Mar 19 18:18:28 PI-NEU evcc[2411049]: [main ] FATAL 2023/03/19 18:18:28 will attempt restart in: 5m0s Mar 19 18:23:28 PI-NEU evcc[2411049]: [eebus ] DEBUG 2023/03/19 18:23:28 mdns: stop announcement Mar 19 18:23:28 PI-NEU systemd[1]: evcc.service: Main process exited, code=exited, status=1/FAILURE Mar 19 18:23:28 PI-NEU systemd[1]: evcc.service: Failed with result 'exit-code'. Mar 19 18:23:33 PI-NEU systemd[1]: evcc.service: Scheduled restart job, restart counter is at 15. Mar 19 18:23:33 PI-NEU systemd[1]: Stopped evcc. Mar 19 18:23:33 PI-NEU systemd[1]: Started evcc. Mar 19 18:23:34 PI-NEU evcc[2412558]: [main ] INFO 2023/03/19 18:23:34 evcc 0.114.1 Mar 19 18:23:34 PI-NEU evcc[2412558]: [main ] INFO 2023/03/19 18:23:34 using config file: /etc/evcc.yaml Mar 19 18:23:34 PI-NEU evcc[2412558]: [main ] INFO 2023/03/19 18:23:34 starting ui and api at :7070 Mar 19 18:23:34 PI-NEU evcc[2412558]: [db ] INFO 2023/03/19 18:23:34 using sqlite database: /root/.evcc/evcc.db Mar 19 18:23:34 PI-NEU evcc[2412558]: [eebus ] INFO 2023/03/19 18:23:34 Local SKI: f40ae61b52537cfe39ce285ed0ece43a2253be4d Mar 19 18:23:34 PI-NEU evcc[2412558]: [eebus ] DEBUG 2023/03/19 18:23:34 mdns: announce Mar 19 18:23:34 PI-NEU evcc[2412558]: [eebus ] DEBUG 2023/03/19 18:23:34 mdns: using avahi Mar 19 18:23:34 PI-NEU evcc[2412558]: [eebus ] DEBUG 2023/03/19 18:23:34 starting websocket server on :4712 Mar 19 18:23:35 PI-NEU evcc[2412558]: [eebus ] TRACE 2023/03/19 18:23:35 registering ski: 9c8e73d2eb540792384d0edcba40a53537402735 Mar 19 18:23:35 PI-NEU evcc[2412558]: [eebus ] DEBUG 2023/03/19 18:23:35 mdns: start search Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] DEBUG 2023/03/19 18:23:36 incoming connection request from 9c8e73d2eb540792384d0edcba40a53537402735 Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] TRACE 2023/03/19 18:23:36 Send: 9c8e73d2eb540792384d0edcba40a53537402735 {"connectionHello":[{"phase":"ready"},{"waiting":60000}]} Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] TRACE 2023/03/19 18:23:36 Recv: 9c8e73d2eb540792384d0edcba40a53537402735 {"connectionHello":[{"phase":"ready"},{"waiting":60000}]} Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] TRACE 2023/03/19 18:23:36 Recv: 9c8e73d2eb540792384d0edcba40a53537402735 {"messageProtocolHandshake":[{"handshakeType":"announceMax"},{"version":[{"major":1},{"minor":0}]},{"formats":[{"format":["JSON-UTF8"]}]}]} Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] TRACE 2023/03/19 18:23:36 Send: 9c8e73d2eb540792384d0edcba40a53537402735 {"messageProtocolHandshake":[{"handshakeType":"select"},{"version":[{"major":1},{"minor":0}]},{"formats":[{"format":["JSON-UTF8"]}]}]} Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] TRACE 2023/03/19 18:23:36 Recv: 9c8e73d2eb540792384d0edcba40a53537402735 {"messageProtocolHandshake":[{"handshakeType":"select"},{"version":[{"major":1},{"minor":0}]},{"formats":[{"format":["JSON-UTF8"]}]}]} Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] TRACE 2023/03/19 18:23:36 Send: 9c8e73d2eb540792384d0edcba40a53537402735 {"connectionPinState":[{"pinState":"none"}]} Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] TRACE 2023/03/19 18:23:36 Recv: 9c8e73d2eb540792384d0edcba40a53537402735 {"connectionPinState":[{"pinState":"none"}]} Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] TRACE 2023/03/19 18:23:36 Send: 9c8e73d2eb540792384d0edcba40a53537402735 {"accessMethodsRequest":[]} Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] TRACE 2023/03/19 18:23:36 Recv: 9c8e73d2eb540792384d0edcba40a53537402735 {"accessMethodsRequest":[]} Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] TRACE 2023/03/19 18:23:36 Send: 9c8e73d2eb540792384d0edcba40a53537402735 {"accessMethods":[{"id":"EVCC-6531383766356435"}]} Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] TRACE 2023/03/19 18:23:36 Recv: 9c8e73d2eb540792384d0edcba40a53537402735 {"accessMethods":[{"id":"Elli-Wallbox-2045A11IB1"},{"dnsSd_mDns":[]}]} Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] TRACE 2023/03/19 18:23:36 !! onConnect invoked on ski 9c8e73d2eb540792384d0edcba40a53537402735 Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] DEBUG 2023/03/19 18:23:36 Send: read 1 NodeManagementDetailedDiscoveryData Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] TRACE 2023/03/19 18:23:36 Send: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.1.1"},{"addressSource":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"addressDestination":[{"entity":[0]},{"feature":0}]},{"msgCounter":1},{"cmdClassifier":"read"}]},{"payload":[{"cmd":[[{"nodeManagementDetailedDiscoveryData":[]}]]}]}]}}]} Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] TRACE 2023/03/19 18:23:36 Recv: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.3.0"},{"addressSource":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[0]},{"feature":0}]},{"addressDestination":[{"entity":[0]},{"feature":0}]},{"msgCounter":1},{"cmdClassifier":"read"},{"ackRequest":true}]},{"payload":[{"cmd":[[{"nodeManagementDetailedDiscoveryData":[]}]]}]}]}}]} Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] DEBUG 2023/03/19 18:23:36 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to NodeManagement read 1 NodeManagementDetailedDiscoveryData Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] DEBUG 2023/03/19 18:23:36 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 reply 2 1 NodeManagementDetailedDiscoveryData Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] DEBUG 2023/03/19 18:23:36 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 result 3 1 ResultData 0 Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] TRACE 2023/03/19 18:23:36 Send: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.1.1"},{"addressSource":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"addressDestination":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[0]},{"feature":0}]},{"msgCounter":2},{"msgCounterReference":1},{"cmdClassifier":"reply"}]},{"payload":[{"cmd":[[{"nodeManagementDetailedDiscoveryData":[{"specificationVersionList":[{"specificationVersion":["1.1.1"]}]},{"deviceInformation":[{"description":[{"deviceAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"}]},{"deviceType":"EnergyManagementSystem"},{"networkFeatureSet":"smart"}]}]},{"entityInformation":[[{"description":[{"entityAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]}]},{"entityType":"DeviceInformation"}]}],[{"description":[{"entityAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]}]},{"entityType":"CEM"}]}]]},{"featureInformation":[[{"description":[{"featureAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"featureType":"NodeManagement"},{"role":"special"},{"supportedFunction":[[{"function":"nodeManagementSubscriptionData"},{"possibleOperations":[{"read":[]}]}],[{"function":"nodeManagementSubscriptionDeleteCall"},{"possibleOperations":[]}],[{"function":"nodeManagementBindingDeleteCall"},{"possibleOperations":[]}],[{"function":"nodeManagementDestinationListData"},{"possibleOperations":[{"read":[]}]}],[{"function":"nodeManagementDetailedDiscoveryData"},{"possibleOperations":[{"read":[]}]}],[{"function":"nodeManagementUseCaseData"},{"possibleOperations":[{"read":[]}]}],[{"function":"nodeManagementSubscriptionRequestCall"},{"possibleOperations":[]}],[{"function":"nodeManagementBindingData"},{"possibleOperations":[{"read":[]}]}],[{"function":"nodeManagementBindingRequestCall"},{"possibleOperations":[]}]]}]}],[{"description":[{"featureAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":1}]},{"featureType":"DeviceClassification"},{"role":"server"},{"supportedFunction":[[{"function":"deviceClassificationManufacturerData"},{"possibleOperations":[{"read":[]}]}]]}]}],[{"description":[{"featureAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]},{"feature":1}]},{"featureType":"DeviceConfiguration"},{"role":"client"},{"description":"Device Configuration Client"}]}],[{"description":[{"featureAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]},{"feature":2}]},{"featureType":"DeviceClassification"},{"role":"client"},{"description":"Device Classification Client"}]}],[{"description":[{"featureAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]},{"feature":3}]},{"featureType":"DeviceDiagnosis"},{"role":"client"},{"description":"Device Diagnosis Client"}]}],[{"description":[{"featureAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]},{"feature":4}]},{"featureType":"DeviceDiagnosis"},{"role":"server"},{"supportedFunction":[[{"function":"deviceDiagnosisStateData"},{"possibleOperations":[{"read":[]}]}],[{"function":"deviceDiagnosisHeartbeatData"},{"possibleOperations":[{"read":[]}]}]]},{"description":"Device Diagnosis Server"}]}],[{"description":[{"featureAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]},{"feature":5}]},{"featureType":"ElectricalConnection"},{"role":"client"},{"description":"Electrical Connection Client"}]}],[{"description":[{"featureAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]},{"feature":6}]},{"featureType":"Measurement"},{"role":"client"},{"description":"Measurement Client"}]}],[{"description":[{"featureAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]},{"feature":7}]},{"featureType":"Identification"},{"role":"client"},{"description":"Identification Client"}]}],[{"description":[{"featureAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]},{"feature":8}]},{"featureType":"LoadControl"},{"role":"client"},{"description":"LoadControl Client"}]}]]}]}]]}]}]}}]} Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] TRACE 2023/03/19 18:23:36 Send: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.1.1"},{"addressSource":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"addressDestination":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[0]},{"feature":0}]},{"msgCounter":3},{"msgCounterReference":1},{"cmdClassifier":"result"}]},{"payload":[{"cmd":[[{"resultData":[{"errorNumber":0}]}]]}]}]}}]} Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] TRACE 2023/03/19 18:23:36 Recv: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.3.0"},{"addressSource":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[0]},{"feature":0}]},{"addressDestination":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"msgCounter":3},{"msgCounterReference":1},{"cmdClassifier":"reply"}]},{"payload":[{"cmd":[[{"nodeManagementDetailedDiscoveryData":[{"specificationVersionList":[{"specificationVersion":["1.3.0"]}]},{"deviceInformation":[{"description":[{"deviceAddress":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"}]},{"deviceType":"Generic"},{"networkFeatureSet":"smart"},{"lastStateChange":"added"}]}]},{"entityInformation":[[{"description":[{"entityAddress":[{"entity":[0]}]},{"entityType":"DeviceInformation"}]}],[{"description":[{"entityAddress":[{"entity":[1]}]},{"entityType":"EVSE"}]}]]},{"featureInformation":[[{"description":[{"featureAddress":[{"entity":[0]},{"feature":0}]},{"featureType":"NodeManagement"},{"role":"special"},{"supportedFunction":[[{"function":"nodeManagementBindingData"},{"possibleOperations":[{"read":[]}]}],[{"function":"nodeManagementBindingDeleteCall"},{"possibleOperations":[]}],[{"function":"nodeManagementBindingRequestCall"},{"possibleOperations":[]}],[{"function":"nodeManagementDetailedDiscoveryData"},{"possibleOperations":[{"read":[]}]}],[{"function":"nodeManagementSubscriptionData"},{"possibleOperations":[{"read":[]}]}],[{"function":"nodeManagementSubscriptionDeleteCall"},{"possibleOperations":[]}],[{"function":"nodeManagementSubscriptionRequestCall"},{"possibleOperations":[]}],[{"function":"nodeManagementUseCaseData"},{"possibleOperations":[{"read":[]}]}]]}]}],[{"description":[{"featureAddress":[{"entity":[0]},{"feature":1}]},{"featureType":"DeviceClassification"},{"role":"server"},{"supportedFunction":[[{"function":"deviceClassificationManufacturerData"},{"possibleOperations":[{"read":[]}]}]]}]}],[{"description":[{"featureAddress":[{"entity":[1]},{"feature":4}]},{"featureType":"DeviceClassification"},{"role":"server"},{"supportedFunction":[[{"function":"deviceClassificationManufacturerData"},{"possibleOperations":[{"read":[{"partial":[]}]}]}]]}]}],[{"description":[{"featureAddress":[{"entity":[1]},{"feature":29}]},{"featureType":"Bill"},{"role":"server"},{"supportedFunction":[[{"function":"billConstraintsListData"},{"possibleOperations":[{"read":[{"partial":[]}]}]}],[{"function":"billDescriptionListData"},{"possibleOperations":[{"read":[{"partial":[]}]}]}],[{"function":"billListData"},{"possibleOperations":[{"read":[{"partial":[]}]},{"write":[{"partial":[]}]}]}]]}]}],[{"description":[{"featureAddress":[{"entity":[1]},{"feature":1000}]},{"featureType":"DeviceDiagnosis"},{"role":"server"},{"supportedFunction":[[{"function":"deviceDiagnosisHeartbeatData"},{"possibleOperations":[{"read":[]}]}],[{"function":"deviceDiagnosisStateData"},{"possibleOperations":[{"read":[]}]}]]},{"description":"Device diagnosis server feature"}]}]]}]}]]}]}]}}]} Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] DEBUG 2023/03/19 18:23:36 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to NodeManagement reply 3 1 NodeManagementDetailedDiscoveryData Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] DEBUG 2023/03/19 18:23:36 Send: call 4 NodeManagementSubscriptionRequestCall Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] DEBUG 2023/03/19 18:23:36 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 read 5 DeviceClassificationManufacturerData Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] DEBUG 2023/03/19 18:23:36 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 read 6 NodeManagementUseCaseData Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] TRACE 2023/03/19 18:23:36 Send: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.1.1"},{"addressSource":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"addressDestination":[{"entity":[0]},{"feature":0}]},{"msgCounter":4},{"cmdClassifier":"call"},{"ackRequest":true}]},{"payload":[{"cmd":[[{"nodeManagementSubscriptionRequestCall":[{"subscriptionRequest":[{"clientAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"serverAddress":[{"entity":[0]},{"feature":0}]},{"serverFeatureType":"NodeManagement"}]}]}]]}]}]}}]} Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] TRACE 2023/03/19 18:23:36 Send: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.1.1"},{"addressSource":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"addressDestination":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[0]},{"feature":0}]},{"msgCounter":6},{"cmdClassifier":"read"}]},{"payload":[{"cmd":[[{"nodeManagementUseCaseData":[]}]]}]}]}}]} Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] DEBUG 2023/03/19 18:23:36 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 read 7 DeviceDiagnosisStateData Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] TRACE 2023/03/19 18:23:36 Send: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.1.1"},{"addressSource":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]},{"feature":2}]},{"addressDestination":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[1]},{"feature":4}]},{"msgCounter":5},{"cmdClassifier":"read"}]},{"payload":[{"cmd":[[{"deviceClassificationManufacturerData":[]}]]}]}]}}]} Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] TRACE 2023/03/19 18:23:36 Send: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.1.1"},{"addressSource":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]},{"feature":3}]},{"addressDestination":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[1]},{"feature":1000}]},{"msgCounter":7},{"cmdClassifier":"read"}]},{"payload":[{"cmd":[[{"deviceDiagnosisStateData":[]}]]}]}]}}]} Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] TRACE 2023/03/19 18:23:36 Recv: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.3.0"},{"addressSource":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[0]},{"feature":0}]},{"addressDestination":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"msgCounter":5},{"cmdClassifier":"call"},{"ackRequest":true}]},{"payload":[{"cmd":[[{"nodeManagementSubscriptionRequestCall":[{"subscriptionRequest":[{"clientAddress":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[0]},{"feature":0}]},{"serverAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"serverFeatureType":"NodeManagement"}]}]}]]}]}]}}]} Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] DEBUG 2023/03/19 18:23:36 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to NodeManagement call 5 NodeManagementSubscriptionRequestCall Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] DEBUG 2023/03/19 18:23:36 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 result 8 5 ResultData 0 Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] TRACE 2023/03/19 18:23:36 Send: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.1.1"},{"addressSource":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"addressDestination":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[0]},{"feature":0}]},{"msgCounter":8},{"msgCounterReference":5},{"cmdClassifier":"result"}]},{"payload":[{"cmd":[[{"resultData":[{"errorNumber":0}]}]]}]}]}}]} Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] TRACE 2023/03/19 18:23:36 Recv: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.3.0"},{"addressSource":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[0]},{"feature":0}]},{"addressDestination":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"msgCounter":9},{"msgCounterReference":4},{"cmdClassifier":"result"}]},{"payload":[{"cmd":[[{"resultData":[{"errorNumber":0}]}]]}]}]}}]} Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] DEBUG 2023/03/19 18:23:36 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to NodeManagement result 9 4 ResultData 0 Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] TRACE 2023/03/19 18:23:36 Recv: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.3.0"},{"addressSource":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[0]},{"feature":0}]},{"addressDestination":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"msgCounter":12},{"msgCounterReference":6},{"cmdClassifier":"reply"}]},{"payload":[{"cmd":[[{"nodeManagementUseCaseData":[{"useCaseInformation":[[{"address":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"}]},{"actor":"EVSE"},{"useCaseSupport":[[{"useCaseName":"evseCommissioningAndConfiguration"},{"useCaseVersion":"1.0.1"},{"scenarioSupport":[1,2]}],[{"useCaseName":"evChargingSummary"},{"useCaseVersion":"1.0.1"},{"scenarioSupport":[1]}]]}]]}]}]]}]}]}}]} Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] DEBUG 2023/03/19 18:23:36 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to NodeManagement reply 12 6 NodeManagementUseCaseData Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] TRACE 2023/03/19 18:23:36 Recv: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.3.0"},{"addressSource":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[1]},{"feature":4}]},{"addressDestination":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]},{"feature":2}]},{"msgCounter":14},{"msgCounterReference":5},{"cmdClassifier":"reply"}]},{"payload":[{"cmd":[[{"deviceClassificationManufacturerData":[{"deviceName":"Elli-Wallbox-2045A11IB1"},{"serialNumber":"2045A11IB1"},{"vendorName":"Elli"},{"vendorCode":"3210"},{"brandName":"Elli"}]}]]}]}]}}]} Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] DEBUG 2023/03/19 18:23:36 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to DeviceClassification reply 14 5 DeviceClassificationManufacturerData Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] TRACE 2023/03/19 18:23:36 Recv: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.3.0"},{"addressSource":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[1]},{"feature":1000}]},{"addressDestination":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]},{"feature":3}]},{"msgCounter":16},{"msgCounterReference":7},{"cmdClassifier":"reply"}]},{"payload":[{"cmd":[[{"deviceDiagnosisStateData":[{"operatingState":"normalOperation"}]}]]}]}]}}]} Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] DEBUG 2023/03/19 18:23:36 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to DeviceDiagnosis reply 16 7 DeviceDiagnosisStateData Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] TRACE 2023/03/19 18:23:36 Recv: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.3.0"},{"addressSource":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[0]},{"feature":0}]},{"addressDestination":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"msgCounter":17},{"cmdClassifier":"read"},{"ackRequest":true}]},{"payload":[{"cmd":[[{"nodeManagementDetailedDiscoveryData":[]}]]}]}]}}]} Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] DEBUG 2023/03/19 18:23:36 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to NodeManagement read 17 NodeManagementDetailedDiscoveryData Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] DEBUG 2023/03/19 18:23:36 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 reply 9 17 NodeManagementDetailedDiscoveryData Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] DEBUG 2023/03/19 18:23:36 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 result 10 17 ResultData 0 Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] TRACE 2023/03/19 18:23:36 Send: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.1.1"},{"addressSource":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"addressDestination":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[0]},{"feature":0}]},{"msgCounter":9},{"msgCounterReference":17},{"cmdClassifier":"reply"}]},{"payload":[{"cmd":[[{"nodeManagementDetailedDiscoveryData":[{"specificationVersionList":[{"specificationVersion":["1.1.1"]}]},{"deviceInformation":[{"description":[{"deviceAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"}]},{"deviceType":"EnergyManagementSystem"},{"networkFeatureSet":"smart"}]}]},{"entityInformation":[[{"description":[{"entityAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]}]},{"entityType":"DeviceInformation"}]}],[{"description":[{"entityAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]}]},{"entityType":"CEM"}]}]]},{"featureInformation":[[{"description":[{"featureAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"featureType":"NodeManagement"},{"role":"special"},{"supportedFunction":[[{"function":"nodeManagementUseCaseData"},{"possibleOperations":[{"read":[]}]}],[{"function":"nodeManagementSubscriptionRequestCall"},{"possibleOperations":[]}],[{"function":"nodeManagementBindingData"},{"possibleOperations":[{"read":[]}]}],[{"function":"nodeManagementBindingRequestCall"},{"possibleOperations":[]}],[{"function":"nodeManagementBindingDeleteCall"},{"possibleOperations":[]}],[{"function":"nodeManagementDestinationListData"},{"possibleOperations":[{"read":[]}]}],[{"function":"nodeManagementDetailedDiscoveryData"},{"possibleOperations":[{"read":[]}]}],[{"function":"nodeManagementSubscriptionDeleteCall"},{"possibleOperations":[]}],[{"function":"nodeManagementSubscriptionData"},{"possibleOperations":[{"read":[]}]}]]}]}],[{"description":[{"featureAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":1}]},{"featureType":"DeviceClassification"},{"role":"server"},{"supportedFunction":[[{"function":"deviceClassificationManufacturerData"},{"possibleOperations":[{"read":[]}]}]]}]}],[{"description":[{"featureAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]},{"feature":1}]},{"featureType":"DeviceConfiguration"},{"role":"client"},{"description":"Device Configuration Client"}]}],[{"description":[{"featureAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]},{"feature":2}]},{"featureType":"DeviceClassification"},{"role":"client"},{"description":"Device Classification Client"}]}],[{"description":[{"featureAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]},{"feature":3}]},{"featureType":"DeviceDiagnosis"},{"role":"client"},{"description":"Device Diagnosis Client"}]}],[{"description":[{"featureAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]},{"feature":4}]},{"featureType":"DeviceDiagnosis"},{"role":"server"},{"supportedFunction":[[{"function":"deviceDiagnosisStateData"},{"possibleOperations":[{"read":[]}]}],[{"function":"deviceDiagnosisHeartbeatData"},{"possibleOperations":[{"read":[]}]}]]},{"description":"Device Diagnosis Server"}]}],[{"description":[{"featureAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]},{"feature":5}]},{"featureType":"ElectricalConnection"},{"role":"client"},{"description":"Electrical Connection Client"}]}],[{"description":[{"featureAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]},{"feature":6}]},{"featureType":"Measurement"},{"role":"client"},{"description":"Measurement Client"}]}],[{"description":[{"featureAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]},{"feature":7}]},{"featureType":"Identification"},{"role":"client"},{"description":"Identification Client"}]}],[{"description":[{"featureAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[1]},{"feature":8}]},{"featureType":"LoadControl"},{"role":"client"},{"description":"LoadControl Client"}]}]]}]}]]}]}]}}]} Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] TRACE 2023/03/19 18:23:36 Send: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.1.1"},{"addressSource":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"addressDestination":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[0]},{"feature":0}]},{"msgCounter":10},{"msgCounterReference":17},{"cmdClassifier":"result"}]},{"payload":[{"cmd":[[{"resultData":[{"errorNumber":0}]}]]}]}]}}]} Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] TRACE 2023/03/19 18:23:36 Recv: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.3.0"},{"addressSource":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[0]},{"feature":0}]},{"addressDestination":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"msgCounter":18},{"cmdClassifier":"read"},{"ackRequest":true}]},{"payload":[{"cmd":[[{"nodeManagementDestinationListData":[]}]]}]}]}}]} Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] DEBUG 2023/03/19 18:23:36 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to NodeManagement read 18 NodeManagementDestinationListData Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] DEBUG 2023/03/19 18:23:36 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 reply 11 18 NodeManagementDestinationListData Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] DEBUG 2023/03/19 18:23:36 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 result 12 18 ResultData 0 Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] TRACE 2023/03/19 18:23:36 Send: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.1.1"},{"addressSource":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"addressDestination":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[0]},{"feature":0}]},{"msgCounter":11},{"msgCounterReference":18},{"cmdClassifier":"reply"}]},{"payload":[{"cmd":[[{"nodeManagementDestinationListData":[{"nodeManagementDestinationData":[[{"deviceDescription":[{"deviceAddress":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"}]},{"deviceType":"EnergyManagementSystem"},{"networkFeatureSet":"smart"}]}]]}]}]]}]}]}}]} Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] TRACE 2023/03/19 18:23:36 Send: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.1.1"},{"addressSource":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"addressDestination":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[0]},{"feature":0}]},{"msgCounter":12},{"msgCounterReference":18},{"cmdClassifier":"result"}]},{"payload":[{"cmd":[[{"resultData":[{"errorNumber":0}]}]]}]}]}}]} Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] TRACE 2023/03/19 18:23:36 Recv: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.3.0"},{"addressSource":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[0]},{"feature":0}]},{"addressDestination":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"msgCounter":20},{"cmdClassifier":"read"},{"ackRequest":true}]},{"payload":[{"cmd":[[{"nodeManagementUseCaseData":[]}]]}]}]}}]} Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] DEBUG 2023/03/19 18:23:36 Recv: d:_i:47859_Elli-Wallbox-2045A11IB1: to NodeManagement read 20 NodeManagementUseCaseData Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] DEBUG 2023/03/19 18:23:36 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 reply 13 20 NodeManagementUseCaseData Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] DEBUG 2023/03/19 18:23:36 Send: d:_i:47859_Elli-Wallbox-2045A11IB1 result 14 20 ResultData 0 Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] TRACE 2023/03/19 18:23:36 Send: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.1.1"},{"addressSource":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"addressDestination":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[0]},{"feature":0}]},{"msgCounter":13},{"msgCounterReference":20},{"cmdClassifier":"reply"}]},{"payload":[{"cmd":[[{"nodeManagementUseCaseData":[{"useCaseInformation":[[{"actor":"CEM"},{"useCaseSupport":[[{"useCaseName":"evseCommissioningAndConfiguration"},{"useCaseVersion":"1.0.1"},{"scenarioSupport":[1,2]}],[{"useCaseName":"evCommissioningAndConfiguration"},{"useCaseVersion":"1.0.1"},{"scenarioSupport":[1,2,3,4,5,6,7,8]}],[{"useCaseName":"measurementOfElectricityDuringEvCharging"},{"useCaseVersion":"1.0.1"},{"scenarioSupport":[1,2,3]}],[{"useCaseName":"overloadProtectionByEvChargingCurrentCurtailment"},{"useCaseVersion":"1.0.1b"},{"scenarioSupport":[1,2,3]}],[{"useCaseName":"evStateOfCharge"},{"useCaseVersion":"1.0.0"},{"scenarioSupport":[1,2,3,4]}],[{"useCaseName":"optimizationOfSelfConsumptionDuringEvCharging"},{"useCaseVersion":"1.0.1b"},{"scenarioSupport":[1,2,3]}],[{"useCaseName":"coordinatedEvCharging"},{"useCaseVersion":"1.0.1"},{"scenarioSupport":[1,2,3,4,5,6,7,8]}]]}]]}]}]]}]}]}}]} Mar 19 18:23:36 PI-NEU evcc[2412558]: [eebus ] TRACE 2023/03/19 18:23:36 Send: 9c8e73d2eb540792384d0edcba40a53537402735 {"data":[{"header":[{"protocolId":"ee1.0"}]},{"payload":{"datagram":[{"header":[{"specificationVersion":"1.1.1"},{"addressSource":[{"device":"d:_i:EVCC_HEMS-EVCC-6531383766356435"},{"entity":[0]},{"feature":0}]},{"addressDestination":[{"device":"d:_i:47859_Elli-Wallbox-2045A11IB1"},{"entity":[0]},{"feature":0}]},{"msgCounter":14},{"msgCounterReference":20},{"cmdClassifier":"result"}]},{"payload":[{"cmd":[[{"resultData":[{"errorNumber":0}]}]]}]}]}}]} Mar 19 18:23:39 PI-NEU evcc[2412558]: [lp-1 ] WARN 2023/03/19 18:23:39 poll mode '{always 1h0m0s}' may deplete your battery or lead to API misuse. USE AT YOUR OWN RISK. Mar 19 18:23:39 PI-NEU evcc[2412558]: [site ] INFO 2023/03/19 18:23:39 site config: Mar 19 18:23:39 PI-NEU evcc[2412558]: [site ] INFO 2023/03/19 18:23:39 meters: grid ✓ pv ✓ battery ✓ Mar 19 18:23:39 PI-NEU evcc[2412558]: [site ] INFO 2023/03/19 18:23:39 grid: power ✓ energy ✗ currents ✗ Mar 19 18:23:39 PI-NEU evcc[2412558]: [site ] INFO 2023/03/19 18:23:39 pv 1: power ✓ energy ✗ currents ✗ Mar 19 18:23:39 PI-NEU evcc[2412558]: [site ] INFO 2023/03/19 18:23:39 battery 1: power ✓ energy ✗ currents ✗ soc ✓ capacity ✗ Mar 19 18:23:39 PI-NEU evcc[2412558]: [site ] INFO 2023/03/19 18:23:39 vehicles: Mar 19 18:23:39 PI-NEU evcc[2412558]: [site ] INFO 2023/03/19 18:23:39 vehicle 1: range ✓ finish ✓ status ✓ climate ✓ wakeup ✗ Mar 19 18:23:39 PI-NEU evcc[2412558]: [lp-1 ] INFO 2023/03/19 18:23:39 loadpoint 1: Mar 19 18:23:39 PI-NEU evcc[2412558]: [lp-1 ] INFO 2023/03/19 18:23:39 mode: pv Mar 19 18:23:39 PI-NEU evcc[2412558]: [lp-1 ] INFO 2023/03/19 18:23:39 charger: power ✗ energy ✗ currents ✗ phases ✗ wakeup ✗ Mar 19 18:23:39 PI-NEU evcc[2412558]: [lp-1 ] INFO 2023/03/19 18:23:39 meters: charge ✗ Mar 19 18:23:39 PI-NEU evcc[2412558]: [lp-1 ] INFO 2023/03/19 18:23:39 vehicle updated: unknown -> ID.3 Mar 19 18:23:40 PI-NEU evcc[2412558]: [lp-1 ] INFO 2023/03/19 18:23:40 car disconnected

`

andig commented 1 year ago

Bitte formatieren

DerAndereAndi commented 1 year ago

Der springende Punkt ist das hier, welches sich wiederholt:

[main ] FATAL 2023/03/19 18:00:56 cannot create charger 'wallbox_garage': cannot create charger 'template': cannot create charger 'eebus': i/o timeout
[main ] FATAL 2023/03/19 18:00:56 will attempt restart in: 5m0s

evcc erwartet dass die Wallbox innerhalb von 30 Sekunden korrekt reagiert. Aber die Wallbox reagiert eben nicht, der Fehler zeigt dass die Wallbox gar nicht reagiert, weil evtl. der EEBUS DIenst dort startet und ne Weile braucht. Und dann startet evcc nach 5 Minuten automatisch neu um es nochmal zu versuchen.

Und dann kommt das hier:

[eebus ] DEBUG 2023/03/19 18:04:15 9c8e73d2eb540792384d0edcba40a53537402735 websocket read error: websocket: close 1006 (abnormal closure): unexpected EOF

Der EEBUS Dienst auf der Wallbox ist abgestürzt und damit wiederholt sich das Spiel und es funktioniert letztendlich.

Wie schon Anfangs vermutet: Das Problem ist 100% auf der Wallbox Seite und nicht in evcc und in meinem EEBUS Code.

andig commented 1 year ago

Dann machen wir hier mal zu.... Danke @DerAndereAndi fürs rein schauen.

TobiasSt78 commented 1 year ago

Ok, vielen Dank fürs prüfen

TobiasSt78 commented 1 year ago

Ich habe nun seit gut 2 Wochen die ELLI-Wallbox per LAN direkt an der Fritzbox und nicht mehr per WLAN dran. Seither sind die Abstürze des eeBus tatsächlich komplett weg und EVCC läuft nun stabil.

Vielen Dank!

Was ich parallel noch geändert habe, und was einen positiven Einfluss haben könnte: Das SWAP File war mit 100 MB ständig am Anschlag. Nach Vergrößerung auf 300 MB sind nun "nur" noch 2/3 ständig belegt. Auf dem RPI3 läuft in Docker Raspberrymatic parallel und entweder Docker oder Raspberrymatic braucht offenbar viel RAM - ist also nicht direkt ein EVCC Problem ;-)