evcc-io / evcc

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

Runtime Error bei refreshToken in mercedes template #15036

Closed phartwig74 closed 3 months ago

phartwig74 commented 3 months ago

Describe the bug

Bis zur 0.128.2 nightly lief noch alles mit dem mercedes template und gültigen tokens. Seit 0.128.3 nightly kommt der runtime error nach dem token refresh des mercedes template. Gestern neuer build auf 0.128.4 nightly und folgender Fehler:

panic: runtime error: invalid memory address or nil pointer dereference [signal SIGSEGV: segmentation violation code=0x1 addr=0x30 pc=0x524ead2]

ohne tokens in der evcc.yaml kommt kein runtime error. Ebenso kein runtime error wenn die tokens ungültig werden, bzw. der refreshToken nicht mehr funktioniert.

token Generierung funktioniert fehlerfrei.

Zum Test habe ich mal die Config aus der evcc.yaml in die DB migriert wie in der UI beschrieben mit "evcc migrate". Vehicle mit neu generierten Tokens versucht anzulegen ... die Prüfung schlägt jedoch fehl und im Log erscheint auch ein runtime error (hab ich hier jedoch nicht dokumentiert, da bisher die config aus der evcc.yaml verwendet wurde).

Wie kann ich zur Problemlösung beitragen ?

Steps to reproduce

  1. mercedes vehicle token erzeugen und in der evcc.yaml eintragen -> evcc Neustart -> runtime error
  2. tokens aus der evcc.yaml ggf. aus den evcc.db settings entfernen -> evcc Neustart -> kein runtime error
  3. neue vehicle token erzeugen und in der evcc.yaml eintragen -> evcc Neustart -> runtime error

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: trace
levels:
  cache: error
  ocpp: trace 

# database configuration for persisting charge sessions and settings
database:
  type: sqlite
  dsn: /usr/local/share/evcc/evcc.db

# unique installation id
plant: ***

interval: 15s # control cycle interval

tariffs:
  grid:
    type: fixed
    price: 0.34
  feedin:
    type: fixed
    price: 0.00
  co2:
    type: template
    template: grünstromindex
    zip: 53474

meters:
- type: template
  template: openems 
  usage: grid  
  host: 10.1.90.214  
  password: user  
  name: grid1
- type: template
  template: openems 
  usage: pv  
  host: 10.1.90.214  
  password: user  
  name: pv2
- type: template
  template: openems 
  usage: battery  
  host: 10.1.90.214  
  password: user  
  name: battery3

chargers:
- type: template
  template: ocpp 
  stationid: LP00B45F  
  connector: 1
  idtag: evcc  
  timeout: 2m  
  name: wallbox4

loadpoints:
- title: eBox Pro
  charger: wallbox4
  mode: off
  soc:
    poll:   
      mode: charging
      interval: 60m
    estimate: true
  enable:
    delay: 3m
    threshold: 0
  disable:
    delay: 5m
    threshold: 0

site:
  title: expee Home
  meters:
    grid: grid1
    pv:
    - pv2
    battery:
    - battery3
  residualPower: 100
  maxGridSupplyWhileBatteryCharging: 50

vehicles:
- name: EQV300
  type: template
  template: mercedes
  title: EQV300
  icon: car
  user: ***
  region: EMEA
  vin: *** 
  capacity: 90
  accesstoken: ***
  refreshtoken: ***

Log details

[main  ] INFO 2024/07/24 19:07:17 evcc 0.128.4 (5e608fb6)
[main  ] INFO 2024/07/24 19:07:17 using config file: /usr/local/share/evcc/evcc.yaml
[db    ] INFO 2024/07/24 19:07:17 using sqlite database: /usr/local/share/evcc/evcc.db
[db    ] TRACE 2024/07/24 19:07:17 SELECT count(*) FROM sqlite_master WHERE type='table' AND name="settings" -1 <nil>
[db    ] TRACE 2024/07/24 19:07:17 SELECT sql FROM sqlite_master WHERE type IN ("table","index") AND tbl_name = "settings" AND sql IS NOT NULL order by type = "table" desc 1 <nil>
[db    ] TRACE 2024/07/24 19:07:17 SELECT * FROM `settings` LIMIT 1 -1 <nil>
[db    ] TRACE 2024/07/24 19:07:17 SELECT * FROM `settings` 15 <nil>
[db    ] TRACE 2024/07/24 19:07:17 SELECT count(*) FROM sqlite_master WHERE type='table' AND name="devices" -1 <nil>
[db    ] TRACE 2024/07/24 19:07:17 SELECT count(*) FROM sqlite_master WHERE type='table' AND name="device_details" -1 <nil>
[db    ] TRACE 2024/07/24 19:07:17 SELECT count(*) FROM sqlite_master WHERE type='table' AND name="configs" -1 <nil>
[db    ] TRACE 2024/07/24 19:07:17 SELECT sql FROM sqlite_master WHERE type IN ("table","index") AND tbl_name = "configs" AND sql IS NOT NULL order by type = "table" desc 1 <nil>
[db    ] TRACE 2024/07/24 19:07:17 SELECT * FROM `configs` LIMIT 1 -1 <nil>
[db    ] TRACE 2024/07/24 19:07:17 SELECT count(*) FROM sqlite_master WHERE type='table' AND name="config_details" -1 <nil>
[db    ] TRACE 2024/07/24 19:07:17 SELECT sql FROM sqlite_master WHERE type IN ("table","index") AND tbl_name = "config_details" AND sql IS NOT NULL order by type = "table" desc 2 <nil>
[db    ] TRACE 2024/07/24 19:07:17 SELECT * FROM `config_details` LIMIT 1 -1 <nil>
[db    ] TRACE 2024/07/24 19:07:17 SELECT count(*) FROM sqlite_master WHERE type = "table" AND tbl_name = "config_details" AND (sql LIKE "%CONSTRAINT ""fk_configs_details"" %" OR sql LIKE "%CONSTRAINT fk_configs_details %" OR sql LIKE "%CONSTRAINT `fk_configs_details`%" OR sql LIKE "%CONSTRAINT [fk_configs_details]%" OR sql LIKE "%CONSTRAINT     fk_configs_details  %") -1 <nil>
[db    ] TRACE 2024/07/24 19:07:17 SELECT count(*) FROM sqlite_master WHERE type = "index" AND tbl_name = "config_details" AND name = "idx_unique" -1 <nil>
[db    ] TRACE 2024/07/24 19:07:17 SELECT count(*) FROM sqlite_master WHERE type = "table" AND tbl_name = "config_details" AND (sql LIKE "%CONSTRAINT ""fk_devices_details"" %" OR sql LIKE "%CONSTRAINT fk_devices_details %" OR sql LIKE "%CONSTRAINT `fk_devices_details`%" OR sql LIKE "%CONSTRAINT [fk_devices_details]%" OR sql LIKE "%CONSTRAINT     fk_devices_details  %") -1 <nil>
[db    ] TRACE 2024/07/24 19:07:17 SELECT count(*) FROM sqlite_master WHERE type = "table" AND tbl_name = "config_details" AND (sql LIKE "%""device_id"" %" OR sql LIKE "%device_id %" OR sql LIKE "%`device_id`%" OR sql LIKE "%[device_id]%" OR sql LIKE "%   device_id   %") -1 <nil>
[main  ] INFO 2024/07/24 19:07:17 listening at :7070
[db    ] TRACE 2024/07/24 19:07:17 SELECT * FROM `configs` WHERE `configs`.`class` = 2 ORDER BY id 0 <nil>
[db    ] TRACE 2024/07/24 19:07:17 SELECT * FROM `configs` WHERE `configs`.`class` = 1 ORDER BY id 0 <nil>
[LP00B45F-1] DEBUG 2024/07/24 19:07:17 waiting for chargepoint: 5m0s
[ocpp  ] DEBUG 2024/07/24 19:07:22 charge point connected: LP00B45F
[ocpp  ] TRACE 2024/07/24 19:07:23 send LP00B45F: [2,"1354327849","GetConfiguration",{}]
[ocpp  ] TRACE 2024/07/24 19:07:23 recv LP00B45F: [3,"1354327849",{"configurationKey":[{"key":"ConnectionTimeOut","readonly":false,"value":"180"},
...
{"key":"GetConfigurationMaxKeys","readonly":true,"value":"187"}]}]
[LP00B45F-1] TRACE 2024/07/24 19:07:23 AccessPointName (r/w): 
[LP00B45F-1] TRACE 2024/07/24 19:07:23 AccessPointPassword (r/w): 
[LP00B45F-1] TRACE 2024/07/24 19:07:23 AccessPointUser (r/w): 
[LP00B45F-1] TRACE 2024/07/24 19:07:23 AllowOfflineTxForUnknownId (r/w): true
[LP00B45F-1] TRACE 2024/07/24 19:07:23 AuthorizationCacheEnabled (r/w): true
[LP00B45F-1] TRACE 2024/07/24 19:07:23 AuthorizationKey (r/w): 
[LP00B45F-1] TRACE 2024/07/24 19:07:23 AuthorizeRemoteTxRequests (r/o): false
[LP00B45F-1] TRACE 2024/07/24 19:07:23 CellID (r/o): 4473
[LP00B45F-1] TRACE 2024/07/24 19:07:23 CentralSystemURL (r/w): ws://10.1.90.11:8887/
[LP00B45F-1] TRACE 2024/07/24 19:07:23 ChargeBoxId (r/w): LP00B45F
[LP00B45F-1] TRACE 2024/07/24 19:07:23 ChargeBoxSerialNumber (r/o): LP00B45F
[LP00B45F-1] TRACE 2024/07/24 19:07:23 ChargeProfileMaxStackLevel (r/o): 32
[LP00B45F-1] TRACE 2024/07/24 19:07:23 ChargingScheduleAllowedChargingRateUnit (r/o): A
[LP00B45F-1] TRACE 2024/07/24 19:07:23 ChargingScheduleMaxPeriods (r/o): 672
[LP00B45F-1] TRACE 2024/07/24 19:07:23 ClockAlignedDataInterval (r/w): 0
[LP00B45F-1] TRACE 2024/07/24 19:07:23 ConnectionTimeOut (r/w): 180
[LP00B45F-1] TRACE 2024/07/24 19:07:23 ConnectorPhaseRotation (r/w): RST
[LP00B45F-1] TRACE 2024/07/24 19:07:23 ConnectorSwitch3to1PhaseSupported (r/o): false
[LP00B45F-1] TRACE 2024/07/24 19:07:23 EVSEId (r/w): 
[LP00B45F-1] TRACE 2024/07/24 19:07:23 EVSEMaxCurrent (r/w): 32
[LP00B45F-1] TRACE 2024/07/24 19:07:23 EVSEPhases (r/w): 3
[LP00B45F-1] TRACE 2024/07/24 19:07:23 EVreadyMode (r/w): false
[LP00B45F-1] TRACE 2024/07/24 19:07:23 ExclusiveProviderID (r/w): 
[LP00B45F-1] TRACE 2024/07/24 19:07:23 FNNCurrentLimitA (r/w): 100
[LP00B45F-1] TRACE 2024/07/24 19:07:23 FNNCurrentLimitB (r/w): 60
[LP00B45F-1] TRACE 2024/07/24 19:07:23 FNNCurrentLimitC (r/w): 30
[LP00B45F-1] TRACE 2024/07/24 19:07:23 FNNCurrentLimitD (r/w): 0
[LP00B45F-1] TRACE 2024/07/24 19:07:23 FreeCharging (r/w): false
[LP00B45F-1] TRACE 2024/07/24 19:07:23 FreeChargingOffline (r/w): false
[LP00B45F-1] TRACE 2024/07/24 19:07:23 FreeChargingUID (r/w): zero
[LP00B45F-1] TRACE 2024/07/24 19:07:23 GetConfigurationMaxKeys (r/o): 187
[LP00B45F-1] TRACE 2024/07/24 19:07:23 HeartbeatInterval (r/w): 60
[LP00B45F-1] TRACE 2024/07/24 19:07:23 ICCID (r/o): 89882390000348249619
[LP00B45F-1] TRACE 2024/07/24 19:07:23 IMEI (r/o): 354033098000808
[LP00B45F-1] TRACE 2024/07/24 19:07:23 IMSI (r/o): 901280007947406
[LP00B45F-1] TRACE 2024/07/24 19:07:23 LAC (r/o): 297
[LP00B45F-1] TRACE 2024/07/24 19:07:23 LdpSignRingConfigCharging (r/w): c0000000003E8p0d00rFF
[LP00B45F-1] TRACE 2024/07/24 19:07:23 LdpSignRingConfigChargingEka (r/w): c0000000003E8p1d14r00c000000000000p1d14rFF
[LP00B45F-1] TRACE 2024/07/24 19:07:23 LdpSignRingConfigInoperative (r/w): c000000000000p0d00rFF
[LP00B45F-1] TRACE 2024/07/24 19:07:23 LdpSignRingConfigInterlockClosed (r/w): c0000000003E8p1d32r00c000000000000p1d32rF
[LP00B45F-1] TRACE 2024/07/24 19:07:23 LdpSignRingConfigPlugged (r/w): c026103E80311p0d0ArFF
[LP00B45F-1] TRACE 2024/07/24 19:07:23 LdpSignRingConfigRfidDetected (r/w): c026103E80311p0d08r00c000000000000p0d04r00
[LP00B45F-1] TRACE 2024/07/24 19:07:23 LdpSignRingConfigRfidRejected (r/w): c000000000000p0d04r00c03E800000000p0d14r00
[LP00B45F-1] TRACE 2024/07/24 19:07:23 LdpSignRingConfigStandby (r/w): c000000000000p0d0ArFF
[LP00B45F-1] TRACE 2024/07/24 19:07:23 LdpSignRingInoperativeRadar (r/w): 1
[LP00B45F-1] TRACE 2024/07/24 19:07:23 LdpSignRingRfidSequenceTime (r/w): 2
[LP00B45F-1] TRACE 2024/07/24 19:07:23 LocalAuthListEnabled (r/w): true
[LP00B45F-1] TRACE 2024/07/24 19:07:23 LocalAuthListMaxLength (r/o): 10000
[LP00B45F-1] TRACE 2024/07/24 19:07:23 LocalAuthorizeOffline (r/w): true
[LP00B45F-1] TRACE 2024/07/24 19:07:23 LocalPreAuthorize (r/w): true
[LP00B45F-1] TRACE 2024/07/24 19:07:23 LogLevel (r/w): 1
[LP00B45F-1] TRACE 2024/07/24 19:07:23 MCC (r/o): 262
[LP00B45F-1] TRACE 2024/07/24 19:07:23 MNC (r/o): 02
[LP00B45F-1] TRACE 2024/07/24 19:07:23 MaxChargingProfilesInstalled (r/o): 1
[LP00B45F-1] TRACE 2024/07/24 19:07:23 MessageQueueMaxLength (r/w): 5000
[LP00B45F-1] TRACE 2024/07/24 19:07:23 MeterPublicKey (r/o): N/A
[LP00B45F-1] TRACE 2024/07/24 19:07:23 MeterSerialNumber (r/o): N/A
[LP00B45F-1] TRACE 2024/07/24 19:07:23 MeterStartValueRelative (r/w): true
[LP00B45F-1] TRACE 2024/07/24 19:07:23 MeterType (r/o): Internal
[LP00B45F-1] TRACE 2024/07/24 19:07:23 MeterValueSampleInterval (r/w): 900
[LP00B45F-1] TRACE 2024/07/24 19:07:23 MeterValuesAlignedData (r/w): Energy.Active.Import.Register
[LP00B45F-1] TRACE 2024/07/24 19:07:23 MeterValuesAlignedDataMaxLength (r/o): 10
[LP00B45F-1] TRACE 2024/07/24 19:07:23 MeterValuesSampledData (r/w): Energy.Active.Import.Register
[LP00B45F-1] TRACE 2024/07/24 19:07:23 MeterValuesSampledDataMaxLength (r/o): 10
[LP00B45F-1] TRACE 2024/07/24 19:07:23 ModbusClientActive (r/w): false
[LP00B45F-1] TRACE 2024/07/24 19:07:23 ModbusClientNetInterface (r/w): net2
[LP00B45F-1] TRACE 2024/07/24 19:07:23 ModbusClientPort (r/w): 502
[LP00B45F-1] TRACE 2024/07/24 19:07:23 ModbusClientTCPActive (r/w): true
[LP00B45F-1] TRACE 2024/07/24 19:07:23 ModbusFallbackTimeout (r/w): 60
[LP00B45F-1] TRACE 2024/07/24 19:07:23 NetworkDnsServerIpv4 (r/w): 
[LP00B45F-1] TRACE 2024/07/24 19:07:23 NetworkStaticGateway (r/w): 
[LP00B45F-1] TRACE 2024/07/24 19:07:23 NumberOfConnectors (r/o): 1
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PUK (r/o): jahg3yee
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PWMpause (r/w): 0
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiAmbilightPwm1 (r/w): 50
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiAmbilightPwm2 (r/w): 70
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiAmbilightPwm3 (r/w): 80
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiAmbilightPwm4 (r/w): 90
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiAmbilightPwm5 (r/w): 100
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiAuthAcceptedColor (r/w): 000000
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiAuthAcceptedDuration (r/w): 180
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiAuthAcceptedPulseOn (r/w): 0
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiAuthInoperativeColor (r/w): ff0000
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiAuthInoperativePulseOn (r/w): 0
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiAuthInoperativeRadarOn (r/w): 1
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiAuthLedNumber (r/w): 7
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiAuthPossibleColor (r/w): afe8ff
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiAuthPossiblePulseOn (r/w): 0
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiAuthReadingColor (r/w): afe8ff
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiAuthReadingPulseOn (r/w): 0
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiAuthRejectedColor (r/w): afe8ff
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiAuthRejectedDuration (r/w): 5
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiAuthRejectedPulseOn (r/w): 0
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiAuthWithoutColor (r/w): 000000
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiAuthWithoutDuration (r/w): 0
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiAuthWithoutPulseOn (r/w): 0
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiBrightCommand1 (r/w): a0
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiBrightCommand2 (r/w): 01
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiBrightIntensity1 (r/w): 70
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiBrightIntensity1Top (r/w): 00
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiBrightIntensity2 (r/w): 70
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiBrightIntensity2Top (r/w): 00
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiBrightIntensity3 (r/w): 70
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiBrightIntensity3Top (r/w): 00
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiBrightIntensity4 (r/w): 90
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiBrightIntensity4Top (r/w): 00
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiBrightIntensity5 (r/w): 99
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiBrightIntensity5Top (r/w): 00
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiBrightRange1 (r/w): 02
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiBrightRange2 (r/w): 06
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiBrightRange3 (r/w): 11
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiBrightRange4 (r/w): 32
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiBrightRange5 (r/w): ff
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiBtAvailableColor (r/w): afe8ff
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiBtAvailablePulseOn (r/w): 0
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiBtButtonNumber (r/w): 2
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiBtConnectedColor (r/w): 0019ff
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiBtConnectedPulseOn (r/w): 0
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiBtErrorColor (r/w): ff0000
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiBtErrorDuration (r/w): 5
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiBtErrorPulseOn (r/w): 1
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiBtLedNumber (r/w): 2
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiBtPressedDuration (r/w): 3
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiBtTrustingColor (r/w): 0019ff
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiBtTrustingPulseOn (r/w): 1
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiCapsenseConfig (r/w): 410000000000000000100000307F7F7F7F7F647F0000000000000000030000000000000000000100050000020002000000000000001E0000001E00000000010100FFFFFFFF000000000000002402015900370600000A000000000000000000000000000000000000000000000000000000000000000000000000000000003E31
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiLedLogInterval (r/w): 3600
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiPlugChargingColor (r/w): 000000
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiPlugChargingPulseOn (r/w): 0
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiPlugChargingRadarOn (r/w): 1
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiPlugInoperativeColor (r/w): ff0000
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiPlugInoperativePulseOn (r/w): 0
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiPlugInoperativeRadarOn (r/w): 1
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiPlugInterlockClosedColor (r/w): 0000ff
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiPlugInterlockClosedPulseOn (r/w): 0
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiPlugLedNumber (r/w): 5
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiPlugNoneColor (r/w): afe8ff
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiPlugNonePulseOn (r/w): 0
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiPlugPluggedPulseOn (r/w): 0
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiPlugPluggedRadarOn (r/w): 1
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiPlugStandbyColor (r/w): 0019ff
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiPlugStandbyPulseOn (r/w): 1
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiPlugStandbyRadarOn (r/w): 1
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiPlugWaitingColor (r/w): afe8ff
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiPlugWaitingPulseOn (r/w): 0
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiPluggedColor (r/w): 000000
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiPulsePeriodMs (r/w): 2000
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiUiboardButtonVersionOld (r/w): 0
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PeripheryUiUserLeaveDelay (r/w): 180
[LP00B45F-1] TRACE 2024/07/24 19:07:23 PreferedProviderID (r/w): 26202
[LP00B45F-1] TRACE 2024/07/24 19:07:23 ProviderMode (r/w): exclusive
[LP00B45F-1] TRACE 2024/07/24 19:07:23 RFIDBlockingTime (r/w): 10
[LP00B45F-1] TRACE 2024/07/24 19:07:23 RSSI (r/o): 0
[LP00B45F-1] TRACE 2024/07/24 19:07:23 ReserveConnectorZeroSupported (r/o): true
[LP00B45F-1] TRACE 2024/07/24 19:07:23 ResetRetries (r/w): 0
[LP00B45F-1] TRACE 2024/07/24 19:07:23 SendLocalListMaxLength (r/o): 10000
[LP00B45F-1] TRACE 2024/07/24 19:07:23 StopTransactionOnEVSideDisconnect (r/o): true
[LP00B45F-1] TRACE 2024/07/24 19:07:23 StopTransactionOnInvalidId (r/w): false
[LP00B45F-1] TRACE 2024/07/24 19:07:23 StopTxnAlignedData (r/w): 
[LP00B45F-1] TRACE 2024/07/24 19:07:23 StopTxnAlignedDataMaxLength (r/o): 0
[LP00B45F-1] TRACE 2024/07/24 19:07:23 StopTxnSampledData (r/w): 
[LP00B45F-1] TRACE 2024/07/24 19:07:23 StopTxnSampledDataMaxLength (r/o): 0
[LP00B45F-1] TRACE 2024/07/24 19:07:23 SupportedFeatureProfiles (r/o): Core,FirmwareManagement,LocalAuthListManagement,Reservation,SmartCharging,RemoteTrigger
[LP00B45F-1] TRACE 2024/07/24 19:07:23 SupportedFileTransferProtocols (r/o): ftp,sftp
[LP00B45F-1] TRACE 2024/07/24 19:07:23 TARactive (r/w): true
[LP00B45F-1] TRACE 2024/07/24 19:07:23 TimestampMilliseconds (r/w): false
[LP00B45F-1] TRACE 2024/07/24 19:07:23 TransactionMessageAttempts (r/w): 3
[LP00B45F-1] TRACE 2024/07/24 19:07:23 TransactionMessageRetryInterval (r/w): 30
[LP00B45F-1] TRACE 2024/07/24 19:07:23 UkRegulationsMaxChargeDelay (r/w): 600
[LP00B45F-1] TRACE 2024/07/24 19:07:23 UnlockConnectorOnEVSideDisconnect (r/o): true
[LP00B45F-1] TRACE 2024/07/24 19:07:23 WIFIChannel (r/w): 6
[LP00B45F-1] TRACE 2024/07/24 19:07:23 WIFIDhcpV4Enabled (r/w): false
[LP00B45F-1] TRACE 2024/07/24 19:07:23 WIFIEapIdentity (r/w): eap_id
[LP00B45F-1] TRACE 2024/07/24 19:07:23 WIFIEapMethod (r/w): PEAP_MSCHAPV2
[LP00B45F-1] TRACE 2024/07/24 19:07:23 WIFIEapPassword (r/w): secure_eap_pw
[LP00B45F-1] TRACE 2024/07/24 19:07:23 WIFIEnabled (r/w): false
[LP00B45F-1] TRACE 2024/07/24 19:07:23 WIFIEncryptionType (r/w): wpa2
[LP00B45F-1] TRACE 2024/07/24 19:07:23 WIFIMode (r/w): wan
[LP00B45F-1] TRACE 2024/07/24 19:07:23 WIFIOperationMode (r/w): sta
[LP00B45F-1] TRACE 2024/07/24 19:07:23 WIFIPsk (r/w): J!D|y31naC02%?dYUlQ6
[LP00B45F-1] TRACE 2024/07/24 19:07:23 WIFISecurityType (r/w): psk
[LP00B45F-1] TRACE 2024/07/24 19:07:23 WIFISsid (r/w): app_ssid
[LP00B45F-1] TRACE 2024/07/24 19:07:23 WIFIStaticNetBridge (r/w): net1
[LP00B45F-1] TRACE 2024/07/24 19:07:23 WIFIStaticNetConfEnabled (r/w): true
[LP00B45F-1] TRACE 2024/07/24 19:07:23 WIFIStaticNetConfIpAdress (r/w): 
[LP00B45F-1] TRACE 2024/07/24 19:07:23 WIFIStaticNetConfNetmask (r/w): 24
[LP00B45F-1] TRACE 2024/07/24 19:07:23 WebSocketPingInterval (r/w): 240
[ocpp  ] TRACE 2024/07/24 19:07:23 send LP00B45F: [2,"3234682373","TriggerMessage",{"requestedMessage":"MeterValues","connectorId":1}]
[ocpp  ] TRACE 2024/07/24 19:07:23 recv LP00B45F: [3,"3234682373",{"status":"Accepted"}]
[ocpp  ] TRACE 2024/07/24 19:07:24 recv LP00B45F: [2,"tGaIFApKivyO79LPDzm3eqsXJHo16U02lnwB","MeterValues",{"connectorId":1,"meterValue":[{"sampledValue":[{"measurand":"Energy.Active.Import.Register","unit":"Wh","value":"690146.8"}],"timestamp":"2024-07-24T17:07:22Z"}]}]
[ocpp  ] TRACE 2024/07/24 19:07:24 send LP00B45F: [3,"tGaIFApKivyO79LPDzm3eqsXJHo16U02lnwB",{}]
[ocpp  ] TRACE 2024/07/24 19:08:22 recv LP00B45F: [2,"IaznQdKewjAVyuqMCgvWbtxYJ7os1O6c3lpT","Heartbeat",{}]
[ocpp  ] TRACE 2024/07/24 19:08:22 send LP00B45F: [3,"IaznQdKewjAVyuqMCgvWbtxYJ7os1O6c3lpT",{"currentTime":"2024-07-24T17:08:22Z"}]
[ocpp  ] TRACE 2024/07/24 19:08:23 send LP00B45F: [2,"3419347749","TriggerMessage",{"requestedMessage":"StatusNotification","connectorId":1}]
[ocpp  ] TRACE 2024/07/24 19:08:23 recv LP00B45F: [3,"3419347749",{"status":"Accepted"}]
[ocpp  ] TRACE 2024/07/24 19:08:24 recv LP00B45F: [2,"yGjuzRKM70ZNprbFAtJwO4xvheSodDWcs15Y","StatusNotification",{"connectorId":1,"errorCode":"NoError","status":"Preparing","timestamp":"2024-07-24T17:08:22Z"}]
[ocpp  ] TRACE 2024/07/24 19:08:24 send LP00B45F: [3,"yGjuzRKM70ZNprbFAtJwO4xvheSodDWcs15Y",{}]
[db    ] TRACE 2024/07/24 19:08:24 SELECT * FROM `configs` WHERE `configs`.`class` = 3 ORDER BY id 0 <nil>
[mercedes] DEBUG 2024/07/24 19:08:24 identity.NewIdentity - token not valid - Add expiry
[mercedes] DEBUG 2024/07/24 19:08:24 identity.NewIdentity - token not valid - database token check started
[mercedes] DEBUG 2024/07/24 19:08:24 identity.NewIdentity - token not valid - refreshToken started
[mercedes] TRACE 2024/07/24 19:08:24 POST https://id.mercedes-benz.com/as/token.oauth2
[mercedes] TRACE 2024/07/24 19:08:24 grant_type=refresh_token&refresh_token=***
--
{"access_token":"eyJhbGciOiJkaXIiLCJlbmMiOiJBMjU2Q0JDLUhTNTEyIiwiY3R5IjoiSldUIiwia2lkIjoiQ0lBTVNZTSIsInBpLmF0bSI6Imh4M2UifQ..f8nOsr_Wes-E3-BE7tL_MA.6Pmhw-H3J0TA1M3XZjyn-3qCfJVHrnMlIMSbGXqXTMmVRwxPEkIq5NH4hn5S5ca4hh7VqpCSPcbLm4SrXUV2rQd80lkZ8pK9dDyZDqyILrXkAT5gACEuSd0WIPYLSot3VFL8SDFEYEs8ed_BbdtA85VLt1YLDcVSccfBmFrb0z3rzao7xIcnMn3TvZb44NKScD1rkTn8qXDBRFaVX9dxFvDx4xOuSCnrryOMZCyrhV3tpYfzBMgXeJ68a72V_wtHHSAO0SpOY-yaT4pdc5Iga83UF6lSB3kCHRWK-HnFo2IfmDkRTYfFIs3t2G5BNKncAr9YeIUzRam2Yg99JLI8KH9qtL1rKSZ0RyjdhLI6yX8bKfnX7-rJCleh-Kxsn-LRSQbWMCMRCFtydgvf8jJB1KDCihSTC3fgtdQVM5m9RHsvVjTINLdnAry8kTMw4SX2VSueVEhBAAR8wffDWwpCmIC5rIwqbZ6fyE4kktnxenNCwHC1nxUHNpY4A7ztJw0gYvLhSNi2-mQYkp831EjC6FfdYgzysNbj8KmFobRvxzLi-XeavL-Fbff--yj-oBqvis7jcNTz_lwJevI9dtgURjHumN39vfAufs41jeIC7eTBL9L7u-fy3yglmbBHwNXp0c_-SX-tZ6MxJDzLW2Dk80oakph0tkXAj-iY-uP3t3WqeGryh42bZxHMuY_ycJP0bbH9jU-UBBIFTi0YH6IelPTBO7ZK8rE15EUMmTobYmVmKVaaj5jYprSQ94AThXnvX0QOP5W2bOOyKVZtMDkDlLgN11x9HpvOb7wt5XSTBP6jeoHtX-8zYAIUWmLA1ScI-iWP8oFYNQzHA3UD2wyA-1Mpeo4qPxvzvO1xnWC2SkVD0pzabuqZfKRr-jkhfh1jpcuifkJNcWpLwtLFml2o93Uv8yqKIFr0YPfjXFgj8lfqKVqDgRVt_-8wHDz04Wq3hd3jQzhER_UqUoeUZGfY-h77CdBuugZsysgGVT9t83puUJe3tQs9m7Z19KqIogJsPILk_4hTIjQ_HuOW3euei0PXXIGnUdHr3Fbtln6m_3s.32ZYRzCsKgSvDROtDKsKBDijOtka_ktGPyxsk8pYG6Q","refresh_token":"lA263ouNsO0HjsbYq2ABM6pZ7JhjZiQfAAj.QhH3GW","token_type":"Bearer","expires_in":14399}
[mercedes] TRACE 2024/07/24 19:08:24 GET https://bff.emea-prod.mobilesdk.mercedes-benz.com/v2/vehicles
[mercedes] TRACE 2024/07/24 19:08:24 {"assignedVehicles":[{"authorizationType":"USER","canReceiveVAC":true,"carline":"447","dealers":{"items":[{"dealerData":{"activities":null,"address":{"city":"Neuwied","countryIsoCode":"DE","street":"Breslauer Straße 84 - 86","zipCode":"56566"},"communication":{"email":"kbm-info@kbm.de","fax":"+49 2631 919191","phone":"+49 2631 9190","website":"https://www.mercedes-benz-kbm.de"},"geoCoordinates":{"latitude":50.43987274169922,"longitude":7.489091873168945},"id":"GS0000576","legalName":"KBM Motorfahrzeuge GmbH & Co. KG","openingHours":{"FRIDAY":{"periods":[{"from":"08:00","until":"18:00"}],"status":"OPEN"},"MONDAY":{"periods":[{"from":"08:00","until":"18:00"}],"status":"OPEN"},"SATURDAY":{"periods":[{"from":"09:00","until":"14:00"}],"status":"OPEN"},"SUNDAY":{"periods":null,"status":"CLOSED"},"THURSDAY":{"periods":[{"from":"08:00","until":"18:00"}],"status":"OPEN"},"TUESDAY":{"periods":[{"from":"08:00","until":"18:00"}],"status":"OPEN"},"WEDNESDAY":{"periods":[{"from":"08:00","until":"18:00"}],"status":"OPEN"}},"region":{"region":"Rheinland-Pfalz","subRegion":"Neuwied"},"spokenLanguages":null},"dealerId":"GS0000576","role":"SALES","updatedAt":"0001-01-01T00:00:00.000Z"},{"dealerData":{"activities":null,"address":{"city":"Neuwied","countryIsoCode":"DE","street":"Breslauer Straße 84 - 86","zipCode":"56566"},"communication":{"email":"kbm-info@kbm.de","fax":"+49 2631 919191","phone":"+49 2631 9190","website":"https://www.mercedes-benz-kbm.de"},"geoCoordinates":{"latitude":50.43987274169922,"longitude":7.489091873168945},"id":"GS0000576","legalName":"KBM Motorfahrzeuge GmbH & Co. KG","openingHours":{"FRIDAY":{"periods":[{"from":"08:00","until":"18:00"}],"status":"OPEN"},"MONDAY":{"periods":[{"from":"08:00","until":"18:00"}],"status":"OPEN"},"SATURDAY":{"periods":[{"from":"09:00","until":"14:00"}],"status":"OPEN"},"SUNDAY":{"periods":null,"status":"CLOSED"},"THURSDAY":{"periods":[{"from":"08:00","until":"18:00"}],"status":"OPEN"},"TUESDAY":{"periods":[{"from":"08:00","until":"18:00"}],"status":"OPEN"},"WEDNESDAY":{"periods":[{"from":"08:00","until":"18:00"}],"status":"OPEN"}},"region":{"region":"Rheinland-Pfalz","subRegion":"Neuwied"},"spokenLanguages":null},"dealerId":"GS0000576","role":"SERVICE","updatedAt":"0001-01-01T00:00:00.000Z"}]},"fin":"W1V44781314153424","isOwner":true,"isTemporarilyAccessible":false,"licensePlate":"AW EQ 300 E","mopf":false,"normalizedProfileControlSupport":"UNSUPPORTED","profileSyncSupport":"SUPPORTED","salesRelatedInformation":{"baumuster":{"baumuster":"4478131","baumusterDescription":"EQV 300 AVANTGARDE Lang"},"line":{"code":"","description":""},"paint":{"code":"7831","description":"graphitgrau metallic dunkel"},"upholstery":{"code":"VX7","description":"Leder Lugano schwarz"}},"tirePressureMonitoringType":"TirePressureMonitoring","trustLevel":3,"vehicleConnectivity":"BUILTIN","vehicleSegment":"EQ","windowsLiftCount":"TwoLift"},{"authorizationType":"USER","carline":"470","dealers":{"items":[{"dealerData":{"activities":null,"address":{"city":"Sinzig","countryIsoCode":"DE","street":"Sandkaulerweg 5","zipCode":"53489"},"communication":{"email":"kbm-info@kbm.de","fax":"+49 2642 9036 13","phone":"+49 2642 9036 0","website":"https://www.mercedes-benz-kbm.de"},"geoCoordinates":{"latitude":50.54128646850586,"longitude":7.265635967254639},"id":"GS0000921","legalName":"KBM Motorfahrzeuge GmbH & Co. KG","openingHours":{"FRIDAY":{"periods":[{"from":"07:30","until":"18:00"}],"status":"OPEN"},"MONDAY":{"periods":[{"from":"07:30","until":"18:00"}],"status":"OPEN"},"SATURDAY":{"periods":[{"from":"07:30","until":"15:30"}],"status":"OPEN"},"SUNDAY":{"periods":null,"status":"CLOSED"},"THURSDAY":{"periods":[{"from":"07:30","until":"18:00"}],"status":"OPEN"},"TUESDAY":{"periods":[{"from":"07:30","until":"18:00"}],"status":"OPEN"},"WEDNESDAY":{"periods":[{"from":"07:30","until":"18:00"}],"status":"OPEN"}},"region":{"region":"Rheinland-Pfalz","subRegion":"Ahrweiler"},"spokenLanguages":null},"dealerId":"GS0000921","role":"SERVICE","updatedAt":"0001-01-01T00:00:00.000Z"},{"dealerData":{"activities":null,"address":{"city":"Neuwied","countryIsoCode":"DE","street":"Breslauer Straße 84 - 86","zipCode":"56566"},"communication":{"email":"kbm-info@kbm.de","fax":"+49 2631 919191","phone":"+49 2631 9190","website":"https://www.mercedes-benz-kbm.de"},"geoCoordinates":{"latitude":50.43987274169922,"longitude":7.489091873168945},"id":"GS0000576","legalName":"KBM Motorfahrzeuge GmbH & Co. KG","openingHours":{"FRIDAY":{"periods":[{"from":"08:00","until":"18:00"}],"status":"OPEN"},"MONDAY":{"periods":[{"from":"08:00","until":"18:00"}],"status":"OPEN"},"SATURDAY":{"periods":[{"from":"09:00","until":"14:00"}],"status":"OPEN"},"SUNDAY":{"periods":null,"status":"CLOSED"},"THURSDAY":{"periods":[{"from":"08:00","until":"18:00"}],"status":"OPEN"},"TUESDAY":{"periods":[{"from":"08:00","until":"18:00"}],"status":"OPEN"},"WEDNESDAY":{"periods":[{"from":"08:00","until":"18:00"}],"status":"OPEN"}},"region":{"region":"Rheinland-Pfalz","subRegion":"Neuwied"},"spokenLanguages":null},"dealerId":"GS0000576","role":"SALES","updatedAt":"0001-01-01T00:00:00.000Z"}]},"fin":"WDF4702521G030179","isOwner":true,"isTemporarilyAccessible":false,"licensePlate":"AW XP 17","mopf":false,"normalizedProfileControlSupport":"SUPPORTED","profileSyncSupport":"SERVICE_NOT_ACTIVE","salesRelatedInformation":{"baumuster":{"baumuster":"4702521","baumusterDescription":"X 4MATIC PROGRESSIVE EDITION"},"line":{"code":"","description":""},"paint":{"code":"7259","description":"felsgrau metallic"},"upholstery":{"code":"S1H","description":"Ledernachbildung ARTICO / Mikrofaser DINAMICA"}},"tirePressureMonitoringType":"TirePressureMonitoring","trustLevel":3,"vehicleConnectivity":"BUILTIN","vehicleSegment":"DEFAULT","windowsLiftCount":"NoLift"}],"fleets":[]}
[db    ] TRACE 2024/07/24 19:08:24 SELECT * FROM `configs` WHERE `configs`.`class` = 5 ORDER BY id 0 <nil>
[gsi   ] TRACE 2024/07/24 19:08:24 GET https://api.corrently.io/v2.0/gsi/prediction?zip=***
[gsi   ] TRACE 2024/07/24 19:08:24 {"support":"If you have any question please contact dev@stromdao.com or visit https://premium.corrently.de/","license":"CC BY-NC-SA 4.0 ( https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode.en )","info":"https://corrently.io/books/stromdao-gmbh/page/fair-use-policy","documentation":"https://corrently.io/books/grunstromindex","commercial":"https://corrently.energy/products/corrently-apis-grunstromindex-abrufe","signee":"0xE7Fe0626D7B8e3F2e5ECD146F9b11daac1DBE447","forecast":[{"epochtime":1721829600,"eevalue":9,"ewind":0,"esolar":0,"ensolar":0,"enwind":0,"sci":25,"gsi":8.549999999999999,"timeStamp":1721829600000,"energyprice":"-0.0045000","co2_g_standard":286,"co2_g_oekostrom":60,"timeframe":{"start":1721829600000,"end":1721833200000},"iat":1721835916722,"zip":"***","signature":"0xceaccaae3176f31abf5d754dffd60a0c45ed97e0c9f6c17eca2cd479be9978c5459ef0bbc9587b46db181b9bb12840e4b46a31fb332226026f7ff647ff81efa31b"},{"epochtime":1721833200,"eevalue":82,"ewind":40,"esolar":33,"ensolar":33,"enwind":40,"sci":42,"gsi":77.89999999999999,"timeStamp":1721833200000,"energyprice":"-0.0410000","co2_g_standard":90,"co2_g_oekostrom":18,"timeframe":{"start":1721833200000,"end":1721836800000},"iat":1721835916725,"zip":"***","signature":"0x8dd37af828e0cf368e9b116c3c53ca674f2be1c0f5a55e0460de4788adf4c4990dc7c051db78523610b69636eced31a232bbddbe43b3a2b0148cc95bf821ab3a1c"},{"epochtime":1721836800,"eevalue":78,"ewind":36,"esolar":33,"ensolar":33,"enwind":36,"sci":42,"gsi":74.1,"timeStamp":1721836800000,"energyprice":"-0.0390000","co2_g_standard":101,"co2_g_oekostrom":21,"timeframe":{"start":1721836800000,"end":1721840400000},"iat":1721835916732,"zip":"***","signature":"0x7b82929b55c4963ebbc7df886682ec465e47eaa05c5a91c5f76a20afc5cbfe4848af825bd3a5966deb99a9520126d453d309da352a0db07fa82ea330f16962801b"},{"epochtime":1721840400,"eevalue":72,"ewind":29,"esolar":34,"ensolar":34,"enwind":29,"sci":42,"gsi":68.39999999999999,"timeStamp":1721840400000,"energyprice":"-0.0360000","co2_g_standard":117,"co2_g_oekostrom":24,"timeframe":{"start":1721840400000,"end":1721844000000},"iat":1721835916736,"zip":"***","signature":"0x49face2fe1853587150a70b5c2cf5141651714d24d5ecf23f86d8798ec35193117d8dc76c836ca1275dbe8b2f41657c0374d9f29da0d000fa53d2318923a1fa21b"},{"epochtime":1721844000,"eevalue":33,"ewind":24,"esolar":0,"ensolar":0,"enwind":24,"sci":25,"gsi":31.349999999999998,"timeStamp":1721844000000,"energyprice":"-0.0165000","co2_g_standard":221,"co2_g_oekostrom":46,"timeframe":{"start":1721844000000,"end":1721847600000},"iat":1721835916738,"zip":"***","signature":"0x138b7c3466b3eb2fa25c6e190e2651df05ec3992e1ff1ad75384f244e537bff42a75795f414d916fe98c6bc991fbca45c29fc0139c611f70a27610d10ea9d2e11c"},{"epochtime":1721847600,"eevalue":33,"ewind":24,"esolar":0,"ensolar":0,"enwind":24,"sci":25,"gsi":31.349999999999998,"timeStamp":1721847600000,"energyprice":"-0.0165000","co2_g_standard":221,"co2_g_oekostrom":46,"timeframe":{"start":1721847600000,"end":1721851200000},"iat":1721835916741,"zip":"***","signature":"0x1f0ca1345237ac17d9eb78eb80a9c0af430aa52dac14f5000930284c7eddc37e3ceb06af77363e2a31933dbd5780197dc4b862a1782703e385c8dc17aaca584b1b"},{"epochtime":1721851200,"eevalue":34,"ewind":25,"esolar":0,"ensolar":0,"enwind":25,"sci":25,"gsi":32.3,"timeStamp":1721851200000,"energyprice":"-0.0170000","co2_g_standard":219,"co2_g_oekostrom":46,"timeframe":{"start":1721851200000,"end":1721854800000},"iat":1721835916744,"zip":"***","signature":"0x8de755ba33fa16b1f5b62dee4a41e164f7bd0817ee0bcefa6949825225c731ff7c132526259cdfa876512070225b812d1df7667b059021903dae2bab20fc789e1c"},{"epochtime":1721854800,"eevalue":40,"ewind":31,"esolar":0,"ensolar":0,"enwind":31,"sci":25,"gsi":38,"timeStamp":1721854800000,"energyprice":"-0.0200000","co2_g_standard":203,"co2_g_oekostrom":42,"timeframe":{"start":1721854800000,"end":1721858400000},"iat":1721835916746,"zip":"***","signature":"0xb29449d48cb81825538f7a632a382da05dd6c70d36873993ce706ab693817ed05225357a739d760ba8c06c30d343c207e9b791b71f2136f1e1c437bd19b2438d1c"},{"epochtime":1721858400,"eevalue":53,"ewind":44,"esolar":0,"ensolar":0,"enwind":44,"sci":25,"gsi":50.349999999999994,"timeStamp":1721858400000,"energyprice":"-0.0265000","co2_g_standard":168,"co2_g_oekostrom":35,"timeframe":{"start":1721858400000,"end":1721862000000},"iat":1721835916748,"zip":"***","signature":"0x2e65c887bedd0331f7386bcc8ace46e7deb66c639d3d905d5fc86df881de2c0e3c580afaa9863b710b14392ceee6506dc0ef28d1c097ed85e41edf11c3d1cfdb1c"},{"epochtime":1721862000,"eevalue":53,"ewind":43,"esolar":0,"ensolar":0,"enwind":43,"sci":25,"gsi":50.349999999999994,"timeStamp":1721862000000,"energyprice":"-0.0265000","co2_g_standard":168,"co2_g_oekostrom":35,"timeframe":{"start":1721862000000,"end":1721865600000},"iat":1721835916749,"zip":"***","signature":"0x37fd1f4f8addfbf19b9aa6294164746da7b24ce5f024710bf56d6773dd8c3c504d5bdd580a5ddc8b1a630f182c7c8dd75f8474f81f61a7e4ccd998d5921fd0411b"},{"epochtime":1721865600,"eevalue":52,"ewind":42,"esolar":0,"ensolar":0,"enwind":42,"sci":25,"gsi":49.4,"timeStamp":1721865600000,"energyprice":"-0.0260000","co2_g_standard":171,"co2_g_oekostrom":35,"timeframe":{"start":1721865600000,"end":1721869200000},"iat":1721835916751,"zip":"***","signature":"0x0fbad0689f9e3ecc80d1dff16fcc337c040ba726cfe539f1012835c66dd5b9d8525907e4f5079633611f1e4e578e969c47345abf478042c26fd24b426b5ba3501b"},{"epochtime":1721869200,"eevalue":54,"ewind":45,"esolar":0,"ensolar":0,"enwind":45,"sci":25,"gsi":51.3,"timeStamp":1721869200000,"energyprice":"-0.0270000","co2_g_standard":165,"co2_g_oekostrom":34,"timeframe":{"start":1721869200000,"end":1721872800000},"iat":1721835916753,"zip":"***","signature":"0x60e199ad458c6d15549e0d0e85c3c66b9c08bf02fb85fd941a2eee59aa474f5a09407866f08ce1bf415c7d91e82a0e12dc05cd63ace7b018b8d7531fe152fb9e1c"},{"epochtime":1721872800,"eevalue":49,"ewind":40,"esolar":0,"ensolar":0,"enwind":40,"sci":25,"gsi":46.55,"timeStamp":1721872800000,"energyprice":"-0.0245000","co2_g_standard":179,"co2_g_oekostrom":37,"timeframe":{"start":1721872800000,"end":1721876400000},"iat":1721835916755,"zip":"***","signature":"0x8a31815945b26b65d85b8a2c574193779cd9925a2b898456a5818cda2dbdacb911e2da418088198c212892e520cf3f94499ee1c057f430829140db281f7741471c"},{"epochtime":1721876400,"eevalue":42,"ewind":33,"esolar":0,"ensolar":0,"enwind":33,"sci":25,"gsi":39.9,"timeStamp":1721876400000,"energyprice":"-0.0210000","co2_g_standard":197,"co2_g_oekostrom":41,"timeframe":{"start":1721876400000,"end":1721880000000},"iat":1721835916756,"zip":"***","signature":"0x85175fb64c82bec3ec1769f280211dc100a430487742ff34cab8fed040cc2f5518df1af4054def414e5573dfcb0757627092b6914383c67f7af89f77ed6967261c"},{"epochtime":1721880000,"eevalue":38,"ewind":28,"esolar":0,"ensolar":0,"enwind":28,"sci":25,"gsi":36.1,"timeStamp":1721880000000,"energyprice":"-0.0190000","co2_g_standard":208,"co2_g_oekostrom":43,"timeframe":{"start":1721880000000,"end":1721883600000},"iat":1721835916758,"zip":"***","signature":"0x3678f2f6222b975c7ddf540ec418eaf2926e2a3312dc6b620aeb71f3e3118f0d38c18775d299c7ece6a32e33750225371732bf2d77abbe622fd59a8f4d3778561b"},{"epochtime":1721883600,"eevalue":38,"ewind":29,"esolar":0,"ensolar":0,"enwind":29,"sci":25,"gsi":36.1,"timeStamp":1721883600000,"energyprice":"-0.0190000","co2_g_standard":208,"co2_g_oekostrom":43,"timeframe":{"start":1721883600000,"end":1721887200000},"iat":1721835916760,"zip":"***","signature":"0xd93bbf3421fe258a5263183b0745e7c4c3886031de064e6b14b9048b0f4acc9147712dcdea4a60e3aa7664bc75af17948078427d065e9ea0e8263f5d0b8973ef1c"},{"epochtime":1721887200,"eevalue":39,"ewind":28,"esolar":1,"ensolar":1,"enwind":28,"sci":26,"gsi":37.05,"timeStamp":1721887200000,"energyprice":"-0.0195000","co2_g_standard":205,"co2_g_oekostrom":43,"timeframe":{"start":1721887200000,"end":1721890800000},"iat":1721835916762,"zip":"***","signature":"0xc97581e2c5d0af4d96daa0da6fb9c75b82d3aec22db0596737fe0413dedb296b1af34b045c838d2203c4fe8f8346da4baa1bed58f7106310c916719f16b321651b"},{"epochtime":1721890800,"eevalue":53,"ewind":33,"esolar":11,"ensolar":11,"enwind":33,"sci":31,"gsi":50.349999999999994,"timeStamp":1721890800000,"energyprice":"-0.0265000","co2_g_standard":168,"co
[db    ] TRACE 2024/07/24 19:08:24 SELECT count(*) FROM sqlite_master WHERE type='table' AND name="sessions" -1 <nil>
[db    ] TRACE 2024/07/24 19:08:24 SELECT sql FROM sqlite_master WHERE type IN ("table","index") AND tbl_name = "sessions" AND sql IS NOT NULL order by type = "table" desc 1 <nil>
[db    ] TRACE 2024/07/24 19:08:24 SELECT * FROM `sessions` LIMIT 1 -1 <nil>
[db    ] TRACE 2024/07/24 19:08:24 SELECT * FROM `sessions` WHERE `Loadpoint` = "eBox Pro" AND `finished` = "0001-01-01 00:00:00+00:00" 0 <nil>
[site  ] INFO 2024/07/24 19:08:25 site config:
[site  ] INFO 2024/07/24 19:08:25   meters:      grid ✓ pv ✓ battery ✓
[site  ] INFO 2024/07/24 19:08:25     grid:      power ✓ energy ✗ currents ✗
[site  ] INFO 2024/07/24 19:08:25     pv 1:      power ✓ energy ✗ currents ✗
[site  ] INFO 2024/07/24 19:08:25     battery 1: power ✓ energy ✗ currents ✗ soc ✓ capacity ✗
[site  ] INFO 2024/07/24 19:08:25   vehicles:
[site  ] INFO 2024/07/24 19:08:25     vehicle 1: range ✓ finish ✓ status ✓ climate ✗ wakeup ✗
[lp-1  ] INFO 2024/07/24 19:08:25 loadpoint 1:
[lp-1  ] INFO 2024/07/24 19:08:25   mode:        off
[lp-1  ] INFO 2024/07/24 19:08:25   charger:     power ✗ energy ✓ currents ✗ phases ✗ wakeup ✗
[lp-1  ] INFO 2024/07/24 19:08:25   meters:      charge ✗
[site  ] DEBUG 2024/07/24 19:08:25 set buffer soc: 95
[site  ] DEBUG 2024/07/24 19:08:25 set buffer start soc: 95
[site  ] DEBUG 2024/07/24 19:08:25 set priority soc: 90
[main  ] TRACE 2024/07/24 19:08:25 GET https://api.github.com/repos/evcc-io/evcc/releases/latest
[lp-1  ] DEBUG 2024/07/24 19:08:25 !! active phases: 3p = min(0p measured 0p vehicle 3p physical 0p charger)
[lp-1  ] DEBUG 2024/07/24 19:08:25 phase timer inactive
[lp-1  ] DEBUG 2024/07/24 19:08:25 pv timer inactive
[site  ] WARN 2024/07/24 19:08:25 interval <30s can lead to unexpected behavior, see https://docs.evcc.io/docs/reference/configuration/interval
[site  ] DEBUG 2024/07/24 19:08:25 ----
[lp-1  ] DEBUG 2024/07/24 19:08:25 charge power: 0W
[http  ] TRACE 2024/07/24 19:08:25 GET http://10.1.90.214/rest/channel/_sum/ProductionActivePower
[http  ] TRACE 2024/07/24 19:08:25 {"address":"_sum/ProductionActivePower","type":"INTEGER","accessMode":"RO","text":"Total production; always positive","unit":"W","value":486}
[site  ] DEBUG 2024/07/24 19:08:25 pv power: 486W
[http  ] TRACE 2024/07/24 19:08:25 GET http://10.1.90.214/rest/channel/_sum/EssDischargePower
[main  ] TRACE 2024/07/24 19:08:25 {"url":"https://api.github.com/repos/evcc-io/evcc/releases/166455447","assets_url":"https://api.github.com/repos/evcc-io/evcc/releases/166455447/assets","upload_url":"https://uploads.github.com/repos/evcc-io/evcc/releases/166455447/assets{?name,label}","html_url":"https://github.com/evcc-io/evcc/releases/tag/0.128.4","id":166455447,"author":{"login":"andig","id":184815,"node_id":"MDQ6VXNlcjE4NDgxNQ==","avatar_url":"https://avatars.githubusercontent.com/u/184815?v=4","gravatar_id":"","url":"https://api.github.com/users/andig","html_url":"https://github.com/andig","followers_url":"https://api.github.com/users/andig/followers","following_url":"https://api.github.com/users/andig/following{/other_user}","gists_url":"https://api.github.com/users/andig/gists{/gist_id}","starred_url":"https://api.github.com/users/andig/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andig/subscriptions","organizations_url":"https://api.github.com/users/andig/orgs","repos_url":"https://api.github.com/users/andig/repos","events_url":"https://api.github.com/users/andig/events{/privacy}","received_events_url":"https://api.github.com/users/andig/received_events","type":"User","site_admin":false},"node_id":"RE_kwDODX4bUs4J6-iX","tag_name":"0.128.4","target_commitish":"master","name":"0.128.4","draft":false,"prerelease":false,"created_at":"2024-07-22T07:01:17Z","published_at":"2024-07-22T07:02:36Z","assets":[{"url":"https://api.github.com/repos/evcc-io/evcc/releases/assets/181041549","id":181041549,"node_id":"RA_kwDODX4bUs4KynmN","name":"checksums.txt","label":"","uploader":{"login":"andig","id":184815,"node_id":"MDQ6VXNlcjE4NDgxNQ==","avatar_url":"https://avatars.githubusercontent.com/u/184815?v=4","gravatar_id":"","url":"https://api.github.com/users/andig","html_url":"https://github.com/andig","followers_url":"https://api.github.com/users/andig/followers","following_url":"https://api.github.com/users/andig/following{/other_user}","gists_url":"https://api.github.com/users/andig/gists{/gist_id}","starred_url":"https://api.github.com/users/andig/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andig/subscriptions","organizations_url":"https://api.github.com/users/andig/orgs","repos_url":"https://api.github.com/users/andig/repos","events_url":"https://api.github.com/users/andig/events{/privacy}","received_events_url":"https://api.github.com/users/andig/received_events","type":"User","site_admin":false},"content_type":"text/plain; charset=utf-8","state":"uploaded","size":754,"download_count":5,"created_at":"2024-07-22T07:12:05Z","updated_at":"2024-07-22T07:12:05Z","browser_download_url":"https://github.com/evcc-io/evcc/releases/download/0.128.4/checksums.txt"},{"url":"https://api.github.com/repos/evcc-io/evcc/releases/assets/181041547","id":181041547,"node_id":"RA_kwDODX4bUs4KynmL","name":"evcc_0.128.4_amd64.deb","label":"","uploader":{"login":"andig","id":184815,"node_id":"MDQ6VXNlcjE4NDgxNQ==","avatar_url":"https://avatars.githubusercontent.com/u/184815?v=4","gravatar_id":"","url":"https://api.github.com/users/andig","html_url":"https://github.com/andig","followers_url":"https://api.github.com/users/andig/followers","following_url":"https://api.github.com/users/andig/following{/other_user}","gists_url":"https://api.github.com/users/andig/gists{/gist_id}","starred_url":"https://api.github.com/users/andig/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andig/subscriptions","organizations_url":"https://api.github.com/users/andig/orgs","repos_url":"https://api.github.com/users/andig/repos","events_url":"https://api.github.com/users/andig/events{/privacy}","received_events_url":"https://api.github.com/users/andig/received_events","type":"User","site_admin":false},"content_type":"application/vnd.debian.binary-package","state":"uploaded","size":24112898,"download_count":5,"created_at":"2024-07-22T07:12:04Z","updated_at":"2024-07-22T07:12:05Z","browser_download_url":"https://github.com/evcc-io/evcc/releases/download/0.128.4/evcc_0.128.4_amd64.deb"},{"url":"https://api.github.com/repos/evcc-io/evcc/releases/assets/181041544","id":181041544,"node_id":"RA_kwDODX4bUs4KynmI","name":"evcc_0.128.4_arm64.deb","label":"","uploader":{"login":"andig","id":184815,"node_id":"MDQ6VXNlcjE4NDgxNQ==","avatar_url":"https://avatars.githubusercontent.com/u/184815?v=4","gravatar_id":"","url":"https://api.github.com/users/andig","html_url":"https://github.com/andig","followers_url":"https://api.github.com/users/andig/followers","following_url":"https://api.github.com/users/andig/following{/other_user}","gists_url":"https://api.github.com/users/andig/gists{/gist_id}","starred_url":"https://api.github.com/users/andig/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andig/subscriptions","organizations_url":"https://api.github.com/users/andig/orgs","repos_url":"https://api.github.com/users/andig/repos","events_url":"https://api.github.com/users/andig/events{/privacy}","received_events_url":"https://api.github.com/users/andig/received_events","type":"User","site_admin":false},"content_type":"application/vnd.debian.binary-package","state":"uploaded","size":22339016,"download_count":2,"created_at":"2024-07-22T07:12:04Z","updated_at":"2024-07-22T07:12:05Z","browser_download_url":"https://github.com/evcc-io/evcc/releases/download/0.128.4/evcc_0.128.4_arm64.deb"},{"url":"https://api.github.com/repos/evcc-io/evcc/releases/assets/181041545","id":181041545,"node_id":"RA_kwDODX4bUs4KynmJ","name":"evcc_0.128.4_armhf.deb","label":"","uploader":{"login":"andig","id":184815,"node_id":"MDQ6VXNlcjE4NDgxNQ==","avatar_url":"https://avatars.githubusercontent.com/u/184815?v=4","gravatar_id":"","url":"https://api.github.com/users/andig","html_url":"https://github.com/andig","followers_url":"https://api.github.com/users/andig/followers","following_url":"https://api.github.com/users/andig/following{/other_user}","gists_url":"https://api.github.com/users/andig/gists{/gist_id}","starred_url":"https://api.github.com/users/andig/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andig/subscriptions","organizations_url":"https://api.github.com/users/andig/orgs","repos_url":"https://api.github.com/users/andig/repos","events_url":"https://api.github.com/users/andig/events{/privacy}","received_events_url":"https://api.github.com/users/andig/received_events","type":"User","site_admin":false},"content_type":"application/vnd.debian.binary-package","state":"uploaded","size":23027544,"download_count":10,"created_at":"2024-07-22T07:12:04Z","updated_at":"2024-07-22T07:12:05Z","browser_download_url":"https://github.com/evcc-io/evcc/releases/download/0.128.4/evcc_0.128.4_armhf.deb"},{"url":"https://api.github.com/repos/evcc-io/evcc/releases/assets/181041536","id":181041536,"node_id":"RA_kwDODX4bUs4KynmA","name":"evcc_0.128.4_linux-amd64.tar.gz","label":"","uploader":{"login":"andig","id":184815,"node_id":"MDQ6VXNlcjE4NDgxNQ==","avatar_url":"https://avatars.githubusercontent.com/u/184815?v=4","gravatar_id":"","url":"https://api.github.com/users/andig","html_url":"https://github.com/andig","followers_url":"https://api.github.com/users/andig/followers","following_url":"https://api.github.com/users/andig/following{/other_user}","gists_url":"https://api.github.com/users/andig/gists{/gist_id}","starred_url":"https://api.github.com/users/andig/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andig/subscriptions","organizations_url":"https://api.github.com/users/andig/orgs","repos_url":"https://api.github.com/users/andig/repos","events_url":"https://api.github.com/users/andig/events{/privacy}","received_events_url":"https://api.github.com/users/andig/received_events","type":"User","site_admin":false},"content_type":"application/gzip","state":"uploaded","size":23998708,"download_count":13,"created_at":"2024-07-22T07:12:02Z","updated_at":"2024-07-22T07:12:03Z","browser_download_url":"https://github.com/evcc-io/evcc/releases/download/0.128.4/evcc_0.128.4_linux-amd64.tar.gz"},{"url":"https://api.github.com/repos/evcc-io/evcc/releases/assets/181041538","id":181041538,"node_id":"RA_kwDODX4bUs4KynmC","name":"
[http  ] TRACE 2024/07/24 19:08:25 {"address":"_sum/EssDischargePower","type":"INTEGER","accessMode":"RO","text":"Actual AC-side battery discharge power of Energy Storage System. Negative values for charge; positive for discharge","unit":"W","value":1208}
[http  ] TRACE 2024/07/24 19:08:25 GET http://10.1.90.214/rest/channel/_sum/EssSoc
[http  ] TRACE 2024/07/24 19:08:25 {"address":"_sum/EssSoc","type":"INTEGER","accessMode":"RO","text":"Range 0..100","unit":"%","value":85}
[site  ] DEBUG 2024/07/24 19:08:25 battery soc: 85%
[site  ] DEBUG 2024/07/24 19:08:25 battery power: 1208W
[http  ] TRACE 2024/07/24 19:08:25 GET http://10.1.90.214/rest/channel/_sum/GridActivePower
[http  ] TRACE 2024/07/24 19:08:25 {"address":"_sum/GridActivePower","type":"INTEGER","accessMode":"RO","text":"Grid exchange power. Negative values for sell-to-grid; positive for buy-from-grid","unit":"W","value":189}
[site  ] DEBUG 2024/07/24 19:08:25 grid meter: 189W
[site  ] DEBUG 2024/07/24 19:08:25 site power: 1497W
[lp-1  ] DEBUG 2024/07/24 19:08:25 !! active phases: 3p = min(0p measured 0p vehicle 3p physical 0p charger)
[lp-1  ] DEBUG 2024/07/24 19:08:25 charger status: B
[lp-1  ] INFO 2024/07/24 19:08:25 car connected
[lp-1  ] DEBUG 2024/07/24 19:08:25 vehicle api refresh
[lp-1  ] DEBUG 2024/07/24 19:08:25 pv timer elapse
[lp-1  ] DEBUG 2024/07/24 19:08:25 pv timer inactive
[lp-1  ] DEBUG 2024/07/24 19:08:25 !! active phases: 3p = min(0p measured 0p vehicle 3p physical 0p charger)
[mercedes] TRACE 2024/07/24 19:08:25 GET https://widget.emea-prod.mobilesdk.mercedes-benz.com/v1/vehicle/W1V447813141*****/vehicleattributes
[mercedes] TRACE 2024/07/24 19:08:25 W1V44781314153*****
doorlockstatusga???P???܍2@Z)
warningbrakeliningwea鉃? ...
...
departuretim??P???܍2? ?????????
panic: runtime error: invalid memory address or nil pointer dereference
[signal SIGSEGV: segmentation violation code=0x1 addr=0x30 pc=0x524ead2]

goroutine 152 [running]:
github.com/evcc-io/evcc/vehicle/mercedes.(*API).Status(0x870dd6380, {0x871526a38, 0x11})
    github.com/evcc-io/evcc/vehicle/mercedes/api.go:103 +0x4f2
github.com/evcc-io/evcc/vehicle/mercedes.NewProvider.func1()
    github.com/evcc-io/evcc/vehicle/mercedes/provider.go:17 +0x78
github.com/evcc-io/evcc/provider.(*cached[...]).Get(0x0)
    github.com/evcc-io/evcc/provider/cache.go:74 +0x124
github.com/evcc-io/evcc/vehicle/mercedes.(*Provider).Status(0x870910f10?)
    github.com/evcc-io/evcc/vehicle/mercedes/provider.go:59 +0x44
github.com/evcc-io/evcc/core/coordinator.(*Coordinator).identifyVehicleByStatus(0x87180ef00, {0x870910f10?, 0x871454408?, 0x5bac500?})
    github.com/evcc-io/evcc/core/coordinator/coordinator.go:139 +0x12e
github.com/evcc-io/evcc/core/coordinator.(*adapter).IdentifyVehicleByStatus(0x870d8a8e8)
    github.com/evcc-io/evcc/core/coordinator/adapter.go:40 +0x45
github.com/evcc-io/evcc/core.(*Loadpoint).identifyVehicleByStatus(0x871454408)
    github.com/evcc-io/evcc/core/loadpoint_vehicle.go:284 +0x5c
github.com/evcc-io/evcc/core.(*Loadpoint).Update(0x871454408, 0x4097640000000000, 0x0, {0x0, 0x0, 0x0}, 0x0, 0x0, 0x0, 0x871f578d8, ...)
    github.com/evcc-io/evcc/core/loadpoint.go:1672 +0x5fb
github.com/evcc-io/evcc/core.(*Site).update(0x871110a80, {0x15c21b0, 0x871454408})
    github.com/evcc-io/evcc/core/site.go:820 +0x70c
github.com/evcc-io/evcc/core.(*Site).Run(0x871110a80, 0x8700fb260, 0x37e11d600)
    github.com/evcc-io/evcc/core/site.go:936 +0x217
github.com/evcc-io/evcc/cmd.runRoot.func4()
    github.com/evcc-io/evcc/cmd/root.go:288 +0x25
created by github.com/evcc-io/evcc/cmd.runRoot in goroutine 1
    github.com/evcc-io/evcc/cmd/root.go:287 +0x1e13

What type of operating system are you running?

Linux

Version

0.128.4 (5e608fb6)

ReneNulschDE commented 3 months ago

Looks like my last PR to get the MaxSoc does not work in your context. What car model do you have? EQV? Could you add the account mb.dev.eu@nulsch.de as a secondary driver of this car in you're MB-Portal? I don't have access to an EQV currently, then I can check this. (tested this with a Hybrid, Diesel, EQB, EQS)

phartwig74 commented 3 months ago

Looks like my last PR to get the MaxSoc does not work in your context. What car model do you have? EQV? Could you add the account mb.dev.eu@nulsch.de as a secondary driver of this car in you're MB-Portal? I don't have access to an EQV currently, then I can check this. (tested this with a Hybrid, Diesel, EQB, EQS)

The car is mercedes EQV300 with 90 kWh Batterie... I added the account for you as requested.

phartwig74 commented 3 months ago

15039 fixed the runtime error in my context.

thank you very much @ReneNulschDE

GrimmiMeloni commented 3 months ago

@phartwig74 meaning you built locally and confirmed #15039 to be working?