Unable to stop charging when writing 0 to number.charger_maximum_current
lodesmets opened this issue · 4 comments
lodesmets commented
Version of the custom_component
V0.5.7
Configuration
Setup through UI
Describe the bug
I have a Wallbox Commander 2, Usually charge speed is set to 6 amps / phase. But when cooking, I stop charging by writing a 0 to number.charger_maximum_current. And afterwards, I write a 6 to number.charger_maximum_current. Often this works, but sometimes it fails.
I have no idea why (because there are no errors). See logs below
I also tried using the service service: ocpp.set_charge_rate. But no difference
Debug log
2024-07-09 19:49:58.012 INFO (MainThread) [ocpp] charger: receive message [2,"119362714","MeterValues",{"meterValue": [{"timestamp": "2024-07-09T17:49:57Z","sampledValue": [{"format": "Raw","location": "Outlet","context": "Sample.Periodic","phase": "L1","measurand": "Current.Export","unit": "A","value": "0"},{"format": "Raw","location": "Outlet","context": "Sample.Periodic","phase": "L2","measurand": "Current.Export","unit": "A","value": "0"},{"format": "Raw","location": "Outlet","context": "Sample.Periodic","phase": "L3","measurand": "Current.Export","unit": "A","value": "0"},{"format": "Raw","location": "Outlet","context": "Sample.Periodic","phase": "L1","measurand": "Current.Import","unit": "A","value": "5.6"},{"format": "Raw","location": "Outlet","context": "Sample.Periodic","phase": "L2","measurand": "Current.Import","unit": "A","value": "5.5"},{"format": "Raw","location": "Outlet","context": "Sample.Periodic","phase": "L3","measurand": "Current.Import","unit": "A","value": "5.5"},{"format": "Raw","location": "Outlet","context": "Sample.Periodic","measurand": "Current.Offered","unit": "A","value": "6"},{"format": "Raw","location": "Outlet","context": "Sample.Periodic","measurand": "Energy.Active.Export.Interval","unit": "Wh","value": "0"},{"format": "Raw","location": "Outlet","context": "Sample.Periodic","measurand": "Energy.Active.Export.Register","unit": "Wh","value": "0"},{"format": "Raw","location": "Outlet","context": "Sample.Periodic","measurand": "Energy.Active.Import.Interval","unit": "Wh","value": "65.0"} ]} ],"connectorId": 1,"transactionId": 1720540578}]
2024-07-09 19:49:58.022 INFO (MainThread) [ocpp] charger: send [3,"119362714",{}]
2024-07-09 19:50:08.256 INFO (MainThread) [ocpp] charger: send [2,"6087ffd3-2e08-49b8-8127-4c7774f65594","GetConfiguration",{"key":["ChargingScheduleAllowedChargingRateUnit"]}]
2024-07-09 19:50:08.313 INFO (MainThread) [ocpp] charger: receive message [3,"6087ffd3-2e08-49b8-8127-4c7774f65594",{"unknownKey": [],"configurationKey": [{"readonly": true,"key": "ChargingScheduleAllowedChargingRateUnit","value": "Current"} ]}]
2024-07-09 19:50:08.314 DEBUG (MainThread) [custom_components.ocpp] Get Configuration for ChargingScheduleAllowedChargingRateUnit: Current
2024-07-09 19:50:08.314 INFO (MainThread) [custom_components.ocpp] Charger supports setting the following units: Current
2024-07-09 19:50:08.314 INFO (MainThread) [custom_components.ocpp] If more than one unit supported default unit is Amps
2024-07-09 19:50:08.315 INFO (MainThread) [ocpp] charger: send [2,"87270e2a-d75f-4974-a2bd-569fc699cfc3","GetConfiguration",{"key":["ChargeProfileMaxStackLevel"]}]
2024-07-09 19:50:08.371 INFO (MainThread) [ocpp] charger: receive message [3,"87270e2a-d75f-4974-a2bd-569fc699cfc3",{"unknownKey": [],"configurationKey": [{"readonly": true,"key": "ChargeProfileMaxStackLevel","value": "1"} ]}]
2024-07-09 19:50:08.372 DEBUG (MainThread) [custom_components.ocpp] Get Configuration for ChargeProfileMaxStackLevel: 1
2024-07-09 19:50:08.373 INFO (MainThread) [ocpp] charger: send [2,"9cdb81cc-53a6-4963-933a-9bb2edf7352a","SetChargingProfile",{"connectorId":0,"csChargingProfiles":{"chargingProfileId":8,"stackLevel":1,"chargingProfileKind":"Relative","chargingProfilePurpose":"ChargePointMaxProfile","chargingSchedule":{"chargingRateUnit":"A","chargingSchedulePeriod":[{"startPeriod":0,"limit":6.0}]}}}]
2024-07-09 19:50:08.453 INFO (MainThread) [ocpp] charger: receive message [3,"9cdb81cc-53a6-4963-933a-9bb2edf7352a",{"status": "Rejected"}]
2024-07-09 19:50:08.453 DEBUG (MainThread) [custom_components.ocpp] ChargePointMaxProfile is not supported by this charger, trying TxDefaultProfile instead...
2024-07-09 19:50:08.454 INFO (MainThread) [ocpp] charger: send [2,"9567c6ae-5919-4ec8-98c8-9876684c381a","SetChargingProfile",{"connectorId":0,"csChargingProfiles":{"chargingProfileId":8,"stackLevel":0,"chargingProfileKind":"Relative","chargingProfilePurpose":"TxDefaultProfile","chargingSchedule":{"chargingRateUnit":"A","chargingSchedulePeriod":[{"startPeriod":0,"limit":6.0}]}}}]
2024-07-09 19:50:08.670 INFO (MainThread) [ocpp] charger: receive message [3,"9567c6ae-5919-4ec8-98c8-9876684c381a",{"status": "Accepted"}]
2024-07-09 19:50:16.400 DEBUG (MainThread) [custom_components.ocpp] Connection latency from 'central' to 'charger': ping=0.0 ms, pong=17.0 ms
2024-07-09 19:50:30.695 INFO (MainThread) [ocpp] charger: send [2,"ac0f0630-96bd-4c9a-82ad-c7138be4679d","GetConfiguration",{"key":["ChargingScheduleAllowedChargingRateUnit"]}]
2024-07-09 19:50:30.731 INFO (MainThread) [ocpp] charger: receive message [3,"ac0f0630-96bd-4c9a-82ad-c7138be4679d",{"unknownKey": [],"configurationKey": [{"readonly": true,"key": "ChargingScheduleAllowedChargingRateUnit","value": "Current"} ]}]
2024-07-09 19:50:30.732 DEBUG (MainThread) [custom_components.ocpp] Get Configuration for ChargingScheduleAllowedChargingRateUnit: Current
2024-07-09 19:50:30.732 INFO (MainThread) [custom_components.ocpp] Charger supports setting the following units: Current
2024-07-09 19:50:30.732 INFO (MainThread) [custom_components.ocpp] If more than one unit supported default unit is Amps
2024-07-09 19:50:30.733 INFO (MainThread) [ocpp] charger: send [2,"b32e6899-0687-456f-89ba-a009787367fd","GetConfiguration",{"key":["ChargeProfileMaxStackLevel"]}]
2024-07-09 19:50:30.760 INFO (MainThread) [ocpp] charger: receive message [3,"b32e6899-0687-456f-89ba-a009787367fd",{"unknownKey": [],"configurationKey": [{"readonly": true,"key": "ChargeProfileMaxStackLevel","value": "1"} ]}]
2024-07-09 19:50:30.761 DEBUG (MainThread) [custom_components.ocpp] Get Configuration for ChargeProfileMaxStackLevel: 1
2024-07-09 19:50:30.762 INFO (MainThread) [ocpp] charger: send [2,"ba125e50-eb9c-4a55-89d6-e89ad419f841","SetChargingProfile",{"connectorId":0,"csChargingProfiles":{"chargingProfileId":8,"stackLevel":1,"chargingProfileKind":"Relative","chargingProfilePurpose":"ChargePointMaxProfile","chargingSchedule":{"chargingRateUnit":"A","chargingSchedulePeriod":[{"startPeriod":0,"limit":15.0}]}}}]
2024-07-09 19:50:30.815 INFO (MainThread) [ocpp] charger: receive message [3,"ba125e50-eb9c-4a55-89d6-e89ad419f841",{"status": "Rejected"}]
2024-07-09 19:50:30.815 DEBUG (MainThread) [custom_components.ocpp] ChargePointMaxProfile is not supported by this charger, trying TxDefaultProfile instead...
2024-07-09 19:50:30.816 INFO (MainThread) [ocpp] charger: send [2,"3e0b349c-85e0-4fea-ad17-8468bbca9491","SetChargingProfile",{"connectorId":0,"csChargingProfiles":{"chargingProfileId":8,"stackLevel":0,"chargingProfileKind":"Relative","chargingProfilePurpose":"TxDefaultProfile","chargingSchedule":{"chargingRateUnit":"A","chargingSchedulePeriod":[{"startPeriod":0,"limit":15.0}]}}}]
2024-07-09 19:50:30.905 INFO (MainThread) [ocpp] charger: receive message [3,"3e0b349c-85e0-4fea-ad17-8468bbca9491",{"status": "Accepted"}]
2024-07-09 19:50:36.410 DEBUG (MainThread) [custom_components.ocpp] Connection latency from 'central' to 'charger': ping=0.0 ms, pong=8.0 ms
2024-07-09 19:50:52.865 INFO (MainThread) [ocpp] charger: send [2,"4bc15dea-5b5f-4c7a-a4be-54633a2aeae4","GetConfiguration",{"key":["ChargingScheduleAllowedChargingRateUnit"]}]
2024-07-09 19:50:52.895 INFO (MainThread) [ocpp] charger: receive message [3,"4bc15dea-5b5f-4c7a-a4be-54633a2aeae4",{"unknownKey": [],"configurationKey": [{"readonly": true,"key": "ChargingScheduleAllowedChargingRateUnit","value": "Current"} ]}]
2024-07-09 19:50:52.895 DEBUG (MainThread) [custom_components.ocpp] Get Configuration for ChargingScheduleAllowedChargingRateUnit: Current
2024-07-09 19:50:52.896 INFO (MainThread) [custom_components.ocpp] Charger supports setting the following units: Current
2024-07-09 19:50:52.896 INFO (MainThread) [custom_components.ocpp] If more than one unit supported default unit is Amps
2024-07-09 19:50:52.896 INFO (MainThread) [ocpp] charger: send [2,"06b0e91a-20e8-4316-a0e0-0e54282b6636","GetConfiguration",{"key":["ChargeProfileMaxStackLevel"]}]
2024-07-09 19:50:52.919 INFO (MainThread) [ocpp] charger: receive message [3,"06b0e91a-20e8-4316-a0e0-0e54282b6636",{"unknownKey": [],"configurationKey": [{"readonly": true,"key": "ChargeProfileMaxStackLevel","value": "1"} ]}]
2024-07-09 19:50:52.920 DEBUG (MainThread) [custom_components.ocpp] Get Configuration for ChargeProfileMaxStackLevel: 1
2024-07-09 19:50:52.921 INFO (MainThread) [ocpp] charger: send [2,"47fe169a-e8ab-49c7-adef-2c5ca4119fcc","SetChargingProfile",{"connectorId":0,"csChargingProfiles":{"chargingProfileId":8,"stackLevel":1,"chargingProfileKind":"Relative","chargingProfilePurpose":"ChargePointMaxProfile","chargingSchedule":{"chargingRateUnit":"A","chargingSchedulePeriod":[{"startPeriod":0,"limit":0.0}]}}}]
2024-07-09 19:50:52.982 INFO (MainThread) [ocpp] charger: receive message [3,"47fe169a-e8ab-49c7-adef-2c5ca4119fcc",{"status": "Rejected"}]
2024-07-09 19:50:52.983 DEBUG (MainThread) [custom_components.ocpp] ChargePointMaxProfile is not supported by this charger, trying TxDefaultProfile instead...
2024-07-09 19:50:52.984 INFO (MainThread) [ocpp] charger: send [2,"cc4abf69-9e60-4de1-8b05-7a95c47a5784","SetChargingProfile",{"connectorId":0,"csChargingProfiles":{"chargingProfileId":8,"stackLevel":0,"chargingProfileKind":"Relative","chargingProfilePurpose":"TxDefaultProfile","chargingSchedule":{"chargingRateUnit":"A","chargingSchedulePeriod":[{"startPeriod":0,"limit":0.0}]}}}]
2024-07-09 19:50:53.063 INFO (MainThread) [ocpp] charger: receive message [3,"cc4abf69-9e60-4de1-8b05-7a95c47a5784",{"status": "Accepted"}]
2024-07-09 19:50:56.477 DEBUG (MainThread) [custom_components.ocpp] Connection latency from 'central' to 'charger': ping=0.0 ms, pong=66.0 ms
2024-07-09 19:50:57.908 INFO (MainThread) [ocpp] charger: receive message [2,"311142833","MeterValues",{"meterValue": [{"timestamp": "2024-07-09T17:50:57Z","sampledValue": [{"format": "Raw","location": "Outlet","context": "Sample.Periodic","phase": "L1","measurand": "Current.Export","unit": "A","value": "0"},{"format": "Raw","location": "Outlet","context": "Sample.Periodic","phase": "L2","measurand": "Current.Export","unit": "A","value": "0"},{"format": "Raw","location": "Outlet","context": "Sample.Periodic","phase": "L3","measurand": "Current.Export","unit": "A","value": "0"},{"format": "Raw","location": "Outlet","context": "Sample.Periodic","phase": "L1","measurand": "Current.Import","unit": "A","value": "5.6"},{"format": "Raw","location": "Outlet","context": "Sample.Periodic","phase": "L2","measurand": "Current.Import","unit": "A","value": "5.6"},{"format": "Raw","location": "Outlet","context": "Sample.Periodic","phase": "L3","measurand": "Current.Import","unit": "A","value": "5.5"},{"format": "Raw","location": "Outlet","context": "Sample.Periodic","measurand": "Current.Offered","unit": "A","value": "6"},{"format": "Raw","location": "Outlet","context": "Sample.Periodic","measurand": "Energy.Active.Export.Interval","unit": "Wh","value": "0"},{"format": "Raw","location": "Outlet","context": "Sample.Periodic","measurand": "Energy.Active.Export.Register","unit": "Wh","value": "0"},{"format": "Raw","location": "Outlet","context": "Sample.Periodic","measurand": "Energy.Active.Import.Interval","unit": "Wh","value": "69.1"} ]} ],"connectorId": 1,"transactionId": 1720540578}]
2024-07-09 19:50:57.911 DEBUG (MainThread) [custom_components.ocpp] process_phases: metric: Current.Export, phase_info: {'unit': 'A', 'L1': 0.0, 'L2': 0.0, 'L3': 0.0} value: 0.000000 unit :A
2024-07-09 19:50:57.911 DEBUG (MainThread) [custom_components.ocpp] process_phases: metric: Current.Import, phase_info: {'unit': 'A', 'L1': 5.6, 'L2': 5.6, 'L3': 5.5} value: 16.700000 unit :A
2024-07-09 19:50:57.918 INFO (MainThread) [ocpp] charger: send [3,"311142833",{}]
lodesmets commented
Any ideas/ suggestions?
drc38 commented
Suggest you ask your charger manufacturer, as the ocpp messages to set current to 0 are accepted.
lodesmets commented
I'm pretty sure the charger supports it, because sometimes it works:
2024-08-21 21:36:09.267 INFO (MainThread) [ocpp] charger: send [2,"eb1ffbee-adbd-4db9-b942-969b90d80f2b","SetChargingProfile",{"connectorId":0,"csChargingProfiles":{"chargingProfileId":8,"stackLevel":1,"chargingProfileKind":"Relative","chargingProfilePurpose":"ChargePointMaxProfile","chargingSchedule":{"chargingRateUnit":"A","chargingSchedulePeriod":[{"startPeriod":0,"limit":6.0}]}}}]
2024-08-21 21:36:09.365 INFO (MainThread) [ocpp] charger: receive message [3,"eb1ffbee-adbd-4db9-b942-969b90d80f2b",{"status": "Rejected"}]
2024-08-21 21:36:09.366 DEBUG (MainThread) [custom_components.ocpp] ChargePointMaxProfile is not supported by this charger, trying TxDefaultProfile instead...
2024-08-21 21:36:09.367 INFO (MainThread) [ocpp] charger: send [2,"4a913ce3-071b-486e-9ad1-59df07c1c4d7","SetChargingProfile",{"connectorId":0,"csChargingProfiles":{"chargingProfileId":8,"stackLevel":0,"chargingProfileKind":"Relative","chargingProfilePurpose":"TxDefaultProfile","chargingSchedule":{"chargingRateUnit":"A","chargingSchedulePeriod":[{"startPeriod":0,"limit":6.0}]}}}]
2024-08-21 21:36:09.538 INFO (MainThread) [ocpp] charger: receive message [3,"4a913ce3-071b-486e-9ad1-59df07c1c4d7",{"status": "Accepted"}]
2024-08-21 21:36:20.339 INFO (MainThread) [ocpp] charger: receive message [2,"11102802","MeterValues",{"meterValue": [{"timestamp": "2024-08-21T19:36:19Z","sampledValue": [{"format": "Raw","location": "Outlet","context": "Sample.Periodic","phase": "L1","measurand": "Current.Export","unit": "A","value": "0"},{"format": "Raw","location": "Outlet","context": "Sample.Periodic","phase": "L2","measurand": "Current.Export","unit": "A","value": "0"},{"format": "Raw","location": "Outlet","context": "Sample.Periodic","phase": "L3","measurand": "Current.Export","unit": "A","value": "0"},{"format": "Raw","location": "Outlet","context": "Sample.Periodic","phase": "L1","measurand": "Current.Import","unit": "A","value": "5.6"},{"format": "Raw","location": "Outlet","context": "Sample.Periodic","phase": "L2","measurand": "Current.Import","unit": "A","value": "1.4"},{"format": "Raw","location": "Outlet","context": "Sample.Periodic","phase": "L3","measurand": "Current.Import","unit": "A","value": "0.0"},{"format": "Raw","location": "Outlet","context": "Sample.Periodic","measurand": "Current.Offered","unit": "A","value": "6"},{"format": "Raw","location": "Outlet","context": "Sample.Periodic","measurand": "Energy.Active.Export.Interval","unit": "Wh","value": "0"},{"format": "Raw","location": "Outlet","context": "Sample.Periodic","measurand": "Energy.Active.Export.Register","unit": "Wh","value": "0"},{"format": "Raw","location": "Outlet","context": "Sample.Periodic","measurand": "Energy.Active.Import.Interval","unit": "Wh","value": "2.5"} ]} ],"connectorId": 1,"transactionId": 1724268742}]
2024-08-21 21:36:20.342 DEBUG (MainThread) [custom_components.ocpp] process_phases: metric: Current.Export, phase_info: {'unit': 'A', 'L1': 0.0, 'L2': 0.0, 'L3': 0.0} value: 0.000000 unit :A
2024-08-21 21:36:20.342 DEBUG (MainThread) [custom_components.ocpp] process_phases: metric: Current.Import, phase_info: {'unit': 'A', 'L1': 5.6, 'L2': 1.4, 'L3': 0.0} value: 7.000000 unit :A
2024-08-21 21:36:20.349 INFO (MainThread) [ocpp] charger: send [3,"11102802",{}]
2024-08-21 21:36:20.792 DEBUG (MainThread) [custom_components.ocpp] Connection latency from 'central' to 'charger': ping=0.0 ms, pong=6.0 ms
2024-08-21 21:36:40.797 DEBUG (MainThread) [custom_components.ocpp] Connection latency from 'central' to 'charger': ping=0.0 ms, pong=3.0 ms
2024-08-21 21:37:00.801 DEBUG (MainThread) [custom_components.ocpp] Connection latency from 'central' to 'charger': ping=0.0 ms, pong=3.0 ms
2024-08-21 21:37:05.959 INFO (MainThread) [ocpp] charger: send [2,"771760ab-7880-458a-a2c9-395859d3b200","GetConfiguration",{"key":["ChargingScheduleAllowedChargingRateUnit"]}]
2024-08-21 21:37:05.980 INFO (MainThread) [ocpp] charger: receive message [3,"771760ab-7880-458a-a2c9-395859d3b200",{"unknownKey": [],"configurationKey": [{"readonly": true,"key": "ChargingScheduleAllowedChargingRateUnit","value": "Current"} ]}]
2024-08-21 21:37:05.980 DEBUG (MainThread) [custom_components.ocpp] Get Configuration for ChargingScheduleAllowedChargingRateUnit: Current
2024-08-21 21:37:05.980 INFO (MainThread) [custom_components.ocpp] Charger supports setting the following units: Current
2024-08-21 21:37:05.980 INFO (MainThread) [custom_components.ocpp] If more than one unit supported default unit is Amps
2024-08-21 21:37:05.981 INFO (MainThread) [ocpp] charger: send [2,"023ad47a-a162-44b4-a1de-c77bdd5da7cf","GetConfiguration",{"key":["ChargeProfileMaxStackLevel"]}]
2024-08-21 21:37:06.009 INFO (MainThread) [ocpp] charger: receive message [3,"023ad47a-a162-44b4-a1de-c77bdd5da7cf",{"unknownKey": [],"configurationKey": [{"readonly": true,"key": "ChargeProfileMaxStackLevel","value": "1"} ]}]
2024-08-21 21:37:06.010 DEBUG (MainThread) [custom_components.ocpp] Get Configuration for ChargeProfileMaxStackLevel: 1
2024-08-21 21:37:06.011 INFO (MainThread) [ocpp] charger: send [2,"57a68fcf-817c-4d21-a3d3-fd1249ba5950","SetChargingProfile",{"connectorId":0,"csChargingProfiles":{"chargingProfileId":8,"stackLevel":1,"chargingProfileKind":"Relative","chargingProfilePurpose":"ChargePointMaxProfile","chargingSchedule":{"chargingRateUnit":"A","chargingSchedulePeriod":[{"startPeriod":0,"limit":0.0}]}}}]
2024-08-21 21:37:06.066 INFO (MainThread) [ocpp] charger: receive message [3,"57a68fcf-817c-4d21-a3d3-fd1249ba5950",{"status": "Rejected"}]
2024-08-21 21:37:06.067 DEBUG (MainThread) [custom_components.ocpp] ChargePointMaxProfile is not supported by this charger, trying TxDefaultProfile instead...
2024-08-21 21:37:06.068 INFO (MainThread) [ocpp] charger: send [2,"169de26c-5867-4ad6-9b2f-67defeb21562","SetChargingProfile",{"connectorId":0,"csChargingProfiles":{"chargingProfileId":8,"stackLevel":0,"chargingProfileKind":"Relative","chargingProfilePurpose":"TxDefaultProfile","chargingSchedule":{"chargingRateUnit":"A","chargingSchedulePeriod":[{"startPeriod":0,"limit":0.0}]}}}]
2024-08-21 21:37:06.166 INFO (MainThread) [ocpp] charger: receive message [3,"169de26c-5867-4ad6-9b2f-67defeb21562",{"status": "Accepted"}]
2024-08-21 21:37:06.605 INFO (MainThread) [ocpp] charger: receive message [2,"1246069874","StatusNotification",{"info": "","vendorId": "com.wallbox","vendorErrorCode": "","connectorId": 1,"errorCode": "NoError","status": "SuspendedEVSE","timestamp": "2024-08-21T19:37:06Z"}]
2024-08-21 21:37:06.612 INFO (MainThread) [ocpp] charger: send [3,"1246069874",{}]
2024-08-21 21:37:06.615 INFO (MainThread) [ocpp] charger: send [2,"f567431b-9f4b-4742-a045-d7c7e6f9d513","GetConfiguration",{"key":["ChargingScheduleAllowedChargingRateUnit"]}]
2024-08-21 21:37:06.664 INFO (MainThread) [ocpp] charger: receive message [3,"f567431b-9f4b-4742-a045-d7c7e6f9d513",{"unknownKey": [],"configurationKey": [{"readonly": true,"key": "ChargingScheduleAllowedChargingRateUnit","value": "Current"} ]}]
2024-08-21 21:37:06.665 DEBUG (MainThread) [custom_components.ocpp] Get Configuration for ChargingScheduleAllowedChargingRateUnit: Current
2024-08-21 21:37:06.665 INFO (MainThread) [custom_components.ocpp] Charger supports setting the following units: Current
2024-08-21 21:37:06.665 INFO (MainThread) [custom_components.ocpp] If more than one unit supported default unit is Amps
2024-08-21 21:37:06.665 INFO (MainThread) [ocpp] charger: send [2,"b30c8f7e-3bee-419c-9171-4d56ab5a3073","GetConfiguration",{"key":["ChargeProfileMaxStackLevel"]}]
2024-08-21 21:37:06.698 INFO (MainThread) [ocpp] charger: receive message [3,"b30c8f7e-3bee-419c-9171-4d56ab5a3073",{"unknownKey": [],"configurationKey": [{"readonly": true,"key": "ChargeProfileMaxStackLevel","value": "1"} ]}]
2024-08-21 21:37:06.699 DEBUG (MainThread) [custom_components.ocpp] Get Configuration for ChargeProfileMaxStackLevel: 1
2024-08-21 21:37:06.700 INFO (MainThread) [ocpp] charger: send [2,"4d63974c-d50e-4f0e-a1cb-a4f28a965f90","SetChargingProfile",{"connectorId":0,"csChargingProfiles":{"chargingProfileId":8,"stackLevel":1,"chargingProfileKind":"Relative","chargingProfilePurpose":"ChargePointMaxProfile","chargingSchedule":{"chargingRateUnit":"A","chargingSchedulePeriod":[{"startPeriod":0,"limit":0.0}]}}}]
2024-08-21 21:37:06.744 INFO (MainThread) [ocpp] charger: receive message [3,"4d63974c-d50e-4f0e-a1cb-a4f28a965f90",{"status": "Rejected"}]
2024-08-21 21:37:06.744 DEBUG (MainThread) [custom_components.ocpp] ChargePointMaxProfile is not supported by this charger, trying TxDefaultProfile instead...
2024-08-21 21:37:06.745 INFO (MainThread) [ocpp] charger: send [2,"dda1d019-85c1-42f1-96e0-5d38e7bc479e","SetChargingProfile",{"connectorId":0,"csChargingProfiles":{"chargingProfileId":8,"stackLevel":0,"chargingProfileKind":"Relative","chargingProfilePurpose":"TxDefaultProfile","chargingSchedule":{"chargingRateUnit":"A","chargingSchedulePeriod":[{"startPeriod":0,"limit":0.0}]}}}]
2024-08-21 21:37:06.831 INFO (MainThread) [ocpp] charger: receive message [3,"dda1d019-85c1-42f1-96e0-5d38e7bc479e",{"status": "Accepted"}]
2024-08-21 21:37:07.674 INFO (MainThread) [ocpp] charger: receive message [2,"473392366","StatusNotification",{"info": "","vendorId": "com.wallbox","vendorErrorCode": "","connectorId": 1,"errorCode": "NoError","status": "SuspendedEV","timestamp": "2024-08-21T19:37:07Z"}]
2024-08-21 21:37:07.680 INFO (MainThread) [ocpp] charger: send [3,"473392366",{}]
2024-08-21 21:37:07.683 INFO (MainThread) [ocpp] charger: send [2,"e12eff2b-9462-45e0-b30c-2b4fb8e37ba1","GetConfiguration",{"key":["ChargingScheduleAllowedChargingRateUnit"]}]
2024-08-21 21:37:07.705 INFO (MainThread) [ocpp] charger: receive message [3,"e12eff2b-9462-45e0-b30c-2b4fb8e37ba1",{"unknownKey": [],"configurationKey": [{"readonly": true,"key": "ChargingScheduleAllowedChargingRateUnit","value": "Current"} ]}]
2024-08-21 21:37:07.706 DEBUG (MainThread) [custom_components.ocpp] Get Configuration for ChargingScheduleAllowedChargingRateUnit: Current
2024-08-21 21:37:07.706 INFO (MainThread) [custom_components.ocpp] Charger supports setting the following units: Current
2024-08-21 21:37:07.706 INFO (MainThread) [custom_components.ocpp] If more than one unit supported default unit is Amps
2024-08-21 21:37:07.706 INFO (MainThread) [ocpp] charger: send [2,"5e26ebc4-e31d-4239-a143-db3e6181bc5c","GetConfiguration",{"key":["ChargeProfileMaxStackLevel"]}]
2024-08-21 21:37:07.736 INFO (MainThread) [ocpp] charger: receive message [3,"5e26ebc4-e31d-4239-a143-db3e6181bc5c",{"unknownKey": [],"configurationKey": [{"readonly": true,"key": "ChargeProfileMaxStackLevel","value": "1"} ]}]
2024-08-21 21:37:07.737 DEBUG (MainThread) [custom_components.ocpp] Get Configuration for ChargeProfileMaxStackLevel: 1
2024-08-21 21:37:07.738 INFO (MainThread) [ocpp] charger: send [2,"4a942b78-348f-44b2-aaf8-8e876db0849c","SetChargingProfile",{"connectorId":0,"csChargingProfiles":{"chargingProfileId":8,"stackLevel":1,"chargingProfileKind":"Relative","chargingProfilePurpose":"ChargePointMaxProfile","chargingSchedule":{"chargingRateUnit":"A","chargingSchedulePeriod":[{"startPeriod":0,"limit":0.0}]}}}]
2024-08-21 21:37:07.792 INFO (MainThread) [ocpp] charger: receive message [3,"4a942b78-348f-44b2-aaf8-8e876db0849c",{"status": "Rejected"}]
2024-08-21 21:37:07.793 DEBUG (MainThread) [custom_components.ocpp] ChargePointMaxProfile is not supported by this charger, trying TxDefaultProfile instead...
2024-08-21 21:37:07.794 INFO (MainThread) [ocpp] charger: send [2,"86025387-3ade-433d-bb07-f3dbd6e26626","SetChargingProfile",{"connectorId":0,"csChargingProfiles":{"chargingProfileId":8,"stackLevel":0,"chargingProfileKind":"Relative","chargingProfilePurpose":"TxDefaultProfile","chargingSchedule":{"chargingRateUnit":"A","chargingSchedulePeriod":[{"startPeriod":0,"limit":0.0}]}}}]
2024-08-21 21:37:07.871 INFO (MainThread) [ocpp] charger: receive message [3,"86025387-3ade-433d-bb07-f3dbd6e26626",{"status": "Accepted"}]
2024-08-21 21:37:08.127 INFO (MainThread) [ocpp] charger: receive message [2,"382238659","StatusNotification",{"info": "","vendorId": "com.wallbox","vendorErrorCode": "","connectorId": 1,"errorCode": "NoError","status": "SuspendedEVSE","timestamp": "2024-08-21T19:37:07Z"}]
2024-08-21 21:37:08.133 INFO (MainThread) [ocpp] charger: send [3,"382238659",{}]
2024-08-21 21:37:08.136 INFO (MainThread) [ocpp] charger: send [2,"9b5399ea-0fe4-45b9-9835-380e15e43fc3","GetConfiguration",{"key":["ChargingScheduleAllowedChargingRateUnit"]}]
2024-08-21 21:37:08.158 INFO (MainThread) [ocpp] charger: receive message [3,"9b5399ea-0fe4-45b9-9835-380e15e43fc3",{"unknownKey": [],"configurationKey": [{"readonly": true,"key": "ChargingScheduleAllowedChargingRateUnit","value": "Current"} ]}]
2024-08-21 21:37:08.158 DEBUG (MainThread) [custom_components.ocpp] Get Configuration for ChargingScheduleAllowedChargingRateUnit: Current
2024-08-21 21:37:08.159 INFO (MainThread) [custom_components.ocpp] Charger supports setting the following units: Current
2024-08-21 21:37:08.159 INFO (MainThread) [custom_components.ocpp] If more than one unit supported default unit is Amps
2024-08-21 21:37:08.159 INFO (MainThread) [ocpp] charger: send [2,"37254ac1-360b-455d-a45f-8ab01866c7db","GetConfiguration",{"key":["ChargeProfileMaxStackLevel"]}]
2024-08-21 21:37:08.179 INFO (MainThread) [ocpp] charger: receive message [3,"37254ac1-360b-455d-a45f-8ab01866c7db",{"unknownKey": [],"configurationKey": [{"readonly": true,"key": "ChargeProfileMaxStackLevel","value": "1"} ]}]
2024-08-21 21:37:08.180 DEBUG (MainThread) [custom_components.ocpp] Get Configuration for ChargeProfileMaxStackLevel: 1
2024-08-21 21:37:08.181 INFO (MainThread) [ocpp] charger: send [2,"5812fac0-f58d-48ed-a212-63a6c759dd23","SetChargingProfile",{"connectorId":0,"csChargingProfiles":{"chargingProfileId":8,"stackLevel":1,"chargingProfileKind":"Relative","chargingProfilePurpose":"ChargePointMaxProfile","chargingSchedule":{"chargingRateUnit":"A","chargingSchedulePeriod":[{"startPeriod":0,"limit":0.0}]}}}]
2024-08-21 21:37:08.223 INFO (MainThread) [ocpp] charger: receive message [3,"5812fac0-f58d-48ed-a212-63a6c759dd23",{"status": "Rejected"}]
2024-08-21 21:37:08.224 DEBUG (MainThread) [custom_components.ocpp] ChargePointMaxProfile is not supported by this charger, trying TxDefaultProfile instead...
2024-08-21 21:37:08.225 INFO (MainThread) [ocpp] charger: send [2,"a35b553c-2260-4252-a8cc-08c43523148a","SetChargingProfile",{"connectorId":0,"csChargingProfiles":{"chargingProfileId":8,"stackLevel":0,"chargingProfileKind":"Relative","chargingProfilePurpose":"TxDefaultProfile","chargingSchedule":{"chargingRateUnit":"A","chargingSchedulePeriod":[{"startPeriod":0,"limit":0.0}]}}}]
2024-08-21 21:37:08.295 INFO (MainThread) [ocpp] charger: receive message [3,"a35b553c-2260-4252-a8cc-08c43523148a",{"status": "Accepted"}]
2024-08-21 21:37:09.299 INFO (MainThread) [ocpp] charger: receive message [2,"743703672","StatusNotification",{"info": "","vendorId": "com.wallbox","vendorErrorCode": "","connectorId": 1,"errorCode": "NoError","status": "SuspendedEV","timestamp": "2024-08-21T19:37:08Z"}]
2024-08-21 21:37:09.305 INFO (MainThread) [ocpp] charger: send [3,"743703672",{}]
2024-08-21 21:37:09.308 INFO (MainThread) [ocpp] charger: send [2,"f1d97dec-c8ba-45c2-9858-fbb7d4c5ebad","GetConfiguration",{"key":["ChargingScheduleAllowedChargingRateUnit"]}]
2024-08-21 21:37:09.345 INFO (MainThread) [ocpp] charger: receive message [3,"f1d97dec-c8ba-45c2-9858-fbb7d4c5ebad",{"unknownKey": [],"configurationKey": [{"readonly": true,"key": "ChargingScheduleAllowedChargingRateUnit","value": "Current"} ]}]
2024-08-21 21:37:09.346 DEBUG (MainThread) [custom_components.ocpp] Get Configuration for ChargingScheduleAllowedChargingRateUnit: Current
2024-08-21 21:37:09.346 INFO (MainThread) [custom_components.ocpp] Charger supports setting the following units: Current
2024-08-21 21:37:09.346 INFO (MainThread) [custom_components.ocpp] If more than one unit supported default unit is Amps
2024-08-21 21:37:09.346 INFO (MainThread) [ocpp] charger: send [2,"dc12231b-d9a7-483c-b172-cfa20c62561f","GetConfiguration",{"key":["ChargeProfileMaxStackLevel"]}]
2024-08-21 21:37:09.381 INFO (MainThread) [ocpp] charger: receive message [3,"dc12231b-d9a7-483c-b172-cfa20c62561f",{"unknownKey": [],"configurationKey": [{"readonly": true,"key": "ChargeProfileMaxStackLevel","value": "1"} ]}]
2024-08-21 21:37:09.382 DEBUG (MainThread) [custom_components.ocpp] Get Configuration for ChargeProfileMaxStackLevel: 1
2024-08-21 21:37:09.383 INFO (MainThread) [ocpp] charger: send [2,"df8ea699-09f4-4ce8-a22a-b0da608dfc36","SetChargingProfile",{"connectorId":0,"csChargingProfiles":{"chargingProfileId":8,"stackLevel":1,"chargingProfileKind":"Relative","chargingProfilePurpose":"ChargePointMaxProfile","chargingSchedule":{"chargingRateUnit":"A","chargingSchedulePeriod":[{"startPeriod":0,"limit":0.0}]}}}]
2024-08-21 21:37:09.455 INFO (MainThread) [ocpp] charger: receive message [3,"df8ea699-09f4-4ce8-a22a-b0da608dfc36",{"status": "Rejected"}]
2024-08-21 21:37:09.455 DEBUG (MainThread) [custom_components.ocpp] ChargePointMaxProfile is not supported by this charger, trying TxDefaultProfile instead...
2024-08-21 21:37:09.456 INFO (MainThread) [ocpp] charger: send [2,"12ee3310-37c6-4dcc-9358-625a38dbe343","SetChargingProfile",{"connectorId":0,"csChargingProfiles":{"chargingProfileId":8,"stackLevel":0,"chargingProfileKind":"Relative","chargingProfilePurpose":"TxDefaultProfile","chargingSchedule":{"chargingRateUnit":"A","chargingSchedulePeriod":[{"startPeriod":0,"limit":0.0}]}}}]
2024-08-21 21:37:09.584 INFO (MainThread) [ocpp] charger: receive message [3,"12ee3310-37c6-4dcc-9358-625a38dbe343",{"status": "Accepted"}]
2024-08-21 21:37:09.692 INFO (MainThread) [ocpp] charger: receive message [2,"445181359","StatusNotification",{"info": "","vendorId": "com.wallbox","vendorErrorCode": "","connectorId": 1,"errorCode": "NoError","status": "SuspendedEVSE","timestamp": "2024-08-21T19:37:09Z"}]
2024-08-21 21:37:09.699 INFO (MainThread) [ocpp] charger: send [3,"445181359",{}]
2024-08-21 21:37:09.701 INFO (MainThread) [ocpp] charger: send [2,"e8fc7629-794f-46c4-bdac-c75f43a3c228","GetConfiguration",{"key":["ChargingScheduleAllowedChargingRateUnit"]}]
2024-08-21 21:37:09.728 INFO (MainThread) [ocpp] charger: receive message [3,"e8fc7629-794f-46c4-bdac-c75f43a3c228",{"unknownKey": [],"configurationKey": [{"readonly": true,"key": "ChargingScheduleAllowedChargingRateUnit","value": "Current"} ]}]
2024-08-21 21:37:09.729 DEBUG (MainThread) [custom_components.ocpp] Get Configuration for ChargingScheduleAllowedChargingRateUnit: Current
2024-08-21 21:37:09.729 INFO (MainThread) [custom_components.ocpp] Charger supports setting the following units: Current
2024-08-21 21:37:09.729 INFO (MainThread) [custom_components.ocpp] If more than one unit supported default unit is Amps
2024-08-21 21:37:09.729 INFO (MainThread) [ocpp] charger: send [2,"7d3c2a9e-ae99-4937-b7c3-cfa76a34cefb","GetConfiguration",{"key":["ChargeProfileMaxStackLevel"]}]
2024-08-21 21:37:09.778 INFO (MainThread) [ocpp] charger: receive message [3,"7d3c2a9e-ae99-4937-b7c3-cfa76a34cefb",{"unknownKey": [],"configurationKey": [{"readonly": true,"key": "ChargeProfileMaxStackLevel","value": "1"} ]}]
2024-08-21 21:37:09.778 DEBUG (MainThread) [custom_components.ocpp] Get Configuration for ChargeProfileMaxStackLevel: 1
2024-08-21 21:37:09.779 INFO (MainThread) [ocpp] charger: send [2,"afe79b91-ce40-4bf2-a8e8-134549f66c93","SetChargingProfile",{"connectorId":0,"csChargingProfiles":{"chargingProfileId":8,"stackLevel":1,"chargingProfileKind":"Relative","chargingProfilePurpose":"ChargePointMaxProfile","chargingSchedule":{"chargingRateUnit":"A","chargingSchedulePeriod":[{"startPeriod":0,"limit":0.0}]}}}]
2024-08-21 21:37:09.867 INFO (MainThread) [ocpp] charger: receive message [3,"afe79b91-ce40-4bf2-a8e8-134549f66c93",{"status": "Rejected"}]
2024-08-21 21:37:09.868 DEBUG (MainThread) [custom_components.ocpp] ChargePointMaxProfile is not supported by this charger, trying TxDefaultProfile instead...
2024-08-21 21:37:09.868 INFO (MainThread) [ocpp] charger: send [2,"edeba814-4430-4745-a855-f11e81465120","SetChargingProfile",{"connectorId":0,"csChargingProfiles":{"chargingProfileId":8,"stackLevel":0,"chargingProfileKind":"Relative","chargingProfilePurpose":"TxDefaultProfile","chargingSchedule":{"chargingRateUnit":"A","chargingSchedulePeriod":[{"startPeriod":0,"limit":0.0}]}}}]
2024-08-21 21:37:09.957 INFO (MainThread) [ocpp] charger: receive message [3,"edeba814-4430-4745-a855-f11e81465120",{"status": "Accepted"}]
2024-08-21 21:37:11.147 INFO (MainThread) [ocpp] charger: receive message [2,"1406663079","StatusNotification",{"info": "","vendorId": "com.wallbox","vendorErrorCode": "","connectorId": 1,"errorCode": "NoError","status": "SuspendedEV","timestamp": "2024-08-21T19:37:10Z"}]
2024-08-21 21:37:11.153 INFO (MainThread) [ocpp] charger: send [3,"1406663079",{}]
2024-08-21 21:37:11.156 INFO (MainThread) [ocpp] charger: send [2,"54f3b183-0fc8-4789-9432-cb637c5e8260","GetConfiguration",{"key":["ChargingScheduleAllowedChargingRateUnit"]}]
2024-08-21 21:37:11.181 INFO (MainThread) [ocpp] charger: receive message [3,"54f3b183-0fc8-4789-9432-cb637c5e8260",{"unknownKey": [],"configurationKey": [{"readonly": true,"key": "ChargingScheduleAllowedChargingRateUnit","value": "Current"} ]}]
2024-08-21 21:37:11.181 DEBUG (MainThread) [custom_components.ocpp] Get Configuration for ChargingScheduleAllowedChargingRateUnit: Current
2024-08-21 21:37:11.181 INFO (MainThread) [custom_components.ocpp] Charger supports setting the following units: Current
2024-08-21 21:37:11.181 INFO (MainThread) [custom_components.ocpp] If more than one unit supported default unit is Amps
2024-08-21 21:37:11.182 INFO (MainThread) [ocpp] charger: send [2,"3fd71091-7d5c-4c7e-804c-6794dcccdd28","GetConfiguration",{"key":["ChargeProfileMaxStackLevel"]}]
2024-08-21 21:37:11.209 INFO (MainThread) [ocpp] charger: receive message [3,"3fd71091-7d5c-4c7e-804c-6794dcccdd28",{"unknownKey": [],"configurationKey": [{"readonly": true,"key": "ChargeProfileMaxStackLevel","value": "1"} ]}]
2024-08-21 21:37:11.210 DEBUG (MainThread) [custom_components.ocpp] Get Configuration for ChargeProfileMaxStackLevel: 1
2024-08-21 21:37:11.211 INFO (MainThread) [ocpp] charger: send [2,"f952b9f1-0798-46e3-89ce-60b9452978c9","SetChargingProfile",{"connectorId":0,"csChargingProfiles":{"chargingProfileId":8,"stackLevel":1,"chargingProfileKind":"Relative","chargingProfilePurpose":"ChargePointMaxProfile","chargingSchedule":{"chargingRateUnit":"A","chargingSchedulePeriod":[{"startPeriod":0,"limit":0.0}]}}}]
2024-08-21 21:37:11.260 INFO (MainThread) [ocpp] charger: receive message [3,"f952b9f1-0798-46e3-89ce-60b9452978c9",{"status": "Rejected"}]
2024-08-21 21:37:11.261 DEBUG (MainThread) [custom_components.ocpp] ChargePointMaxProfile is not supported by this charger, trying TxDefaultProfile instead...
2024-08-21 21:37:11.262 INFO (MainThread) [ocpp] charger: send [2,"57670008-e771-4782-ba71-f726df4f938c","SetChargingProfile",{"connectorId":0,"csChargingProfiles":{"chargingProfileId":8,"stackLevel":0,"chargingProfileKind":"Relative","chargingProfilePurpose":"TxDefaultProfile","chargingSchedule":{"chargingRateUnit":"A","chargingSchedulePeriod":[{"startPeriod":0,"limit":0.0}]}}}]
2024-08-21 21:37:11.330 INFO (MainThread) [ocpp] charger: receive message [3,"57670008-e771-4782-ba71-f726df4f938c",{"status": "Accepted"}]
2024-08-21 21:37:11.604 INFO (MainThread) [ocpp] charger: receive message [2,"1449101708","StatusNotification",{"info": "","vendorId": "com.wallbox","vendorErrorCode": "","connectorId": 1,"errorCode": "NoError","status": "SuspendedEVSE","timestamp": "2024-08-21T19:37:11Z"}]
2024-08-21 21:37:11.611 INFO (MainThread) [ocpp] charger: send [3,"1449101708",{}]
2024-08-21 21:37:11.613 INFO (MainThread) [ocpp] charger: send [2,"86865e44-3ddc-4129-b9d3-c1ad753cd0d0","GetConfiguration",{"key":["ChargingScheduleAllowedChargingRateUnit"]}]
2024-08-21 21:37:11.646 INFO (MainThread) [ocpp] charger: receive message [3,"86865e44-3ddc-4129-b9d3-c1ad753cd0d0",{"unknownKey": [],"configurationKey": [{"readonly": true,"key": "ChargingScheduleAllowedChargingRateUnit","value": "Current"} ]}]
2024-08-21 21:37:11.647 DEBUG (MainThread) [custom_components.ocpp] Get Configuration for ChargingScheduleAllowedChargingRateUnit: Current
2024-08-21 21:37:11.647 INFO (MainThread) [custom_components.ocpp] Charger supports setting the following units: Current
2024-08-21 21:37:11.647 INFO (MainThread) [custom_components.ocpp] If more than one unit supported default unit is Amps
2024-08-21 21:37:11.647 INFO (MainThread) [ocpp] charger: send [2,"8da35cd6-88c5-42d5-af6a-d2b54dcf173f","GetConfiguration",{"key":["ChargeProfileMaxStackLevel"]}]
2024-08-21 21:37:11.677 INFO (MainThread) [ocpp] charger: receive message [3,"8da35cd6-88c5-42d5-af6a-d2b54dcf173f",{"unknownKey": [],"configurationKey": [{"readonly": true,"key": "ChargeProfileMaxStackLevel","value": "1"} ]}]
2024-08-21 21:37:11.678 DEBUG (MainThread) [custom_components.ocpp] Get Configuration for ChargeProfileMaxStackLevel: 1
2024-08-21 21:37:11.679 INFO (MainThread) [ocpp] charger: send [2,"7f2e6a4a-1cf6-4d8f-95f8-a56f74a1a806","SetChargingProfile",{"connectorId":0,"csChargingProfiles":{"chargingProfileId":8,"stackLevel":1,"chargingProfileKind":"Relative","chargingProfilePurpose":"ChargePointMaxProfile","chargingSchedule":{"chargingRateUnit":"A","chargingSchedulePeriod":[{"startPeriod":0,"limit":0.0}]}}}]
2024-08-21 21:37:11.752 INFO (MainThread) [ocpp] charger: receive message [3,"7f2e6a4a-1cf6-4d8f-95f8-a56f74a1a806",{"status": "Rejected"}]
2024-08-21 21:37:11.752 DEBUG (MainThread) [custom_components.ocpp] ChargePointMaxProfile is not supported by this charger, trying TxDefaultProfile instead...
2024-08-21 21:37:11.753 INFO (MainThread) [ocpp] charger: send [2,"f24ae3c9-7bbb-4d62-86d3-cd05efc83eae","SetChargingProfile",{"connectorId":0,"csChargingProfiles":{"chargingProfileId":8,"stackLevel":0,"chargingProfileKind":"Relative","chargingProfilePurpose":"TxDefaultProfile","chargingSchedule":{"chargingRateUnit":"A","chargingSchedulePeriod":[{"startPeriod":0,"limit":0.0}]}}}]
2024-08-21 21:37:11.874 INFO (MainThread) [ocpp] charger: receive message [3,"f24ae3c9-7bbb-4d62-86d3-cd05efc83eae",{"status": "Accepted"}]
2024-08-21 21:37:11.978 INFO (MainThread) [ocpp] charger: receive message [2,"1544156969","StatusNotification",{"info": "","vendorId": "com.wallbox","vendorErrorCode": "","connectorId": 1,"errorCode": "NoError","status": "SuspendedEV","timestamp": "2024-08-21T19:37:11Z"}]
2024-08-21 21:37:11.984 INFO (MainThread) [ocpp] charger: send [3,"1544156969",{}]
2024-08-21 21:37:11.986 INFO (MainThread) [ocpp] charger: send [2,"ab7e0297-db67-4d7a-a30f-88b689ea9df3","GetConfiguration",{"key":["ChargingScheduleAllowedChargingRateUnit"]}]
2024-08-21 21:37:12.018 INFO (MainThread) [ocpp] charger: receive message [3,"ab7e0297-db67-4d7a-a30f-88b689ea9df3",{"unknownKey": [],"configurationKey": [{"readonly": true,"key": "ChargingScheduleAllowedChargingRateUnit","value": "Current"} ]}]
2024-08-21 21:37:12.018 DEBUG (MainThread) [custom_components.ocpp] Get Configuration for ChargingScheduleAllowedChargingRateUnit: Current
2024-08-21 21:37:12.018 INFO (MainThread) [custom_components.ocpp] Charger supports setting the following units: Current
2024-08-21 21:37:12.018 INFO (MainThread) [custom_components.ocpp] If more than one unit supported default unit is Amps
2024-08-21 21:37:12.019 INFO (MainThread) [ocpp] charger: send [2,"44138d0d-83ae-4c2d-88ad-df607ba0a771","GetConfiguration",{"key":["ChargeProfileMaxStackLevel"]}]
2024-08-21 21:37:12.054 INFO (MainThread) [ocpp] charger: receive message [3,"44138d0d-83ae-4c2d-88ad-df607ba0a771",{"unknownKey": [],"configurationKey": [{"readonly": true,"key": "ChargeProfileMaxStackLevel","value": "1"} ]}]
2024-08-21 21:37:12.054 DEBUG (MainThread) [custom_components.ocpp] Get Configuration for ChargeProfileMaxStackLevel: 1
2024-08-21 21:37:12.055 INFO (MainThread) [ocpp] charger: send [2,"0aeb3f42-d730-4c33-99e4-e3c48a0f0895","SetChargingProfile",{"connectorId":0,"csChargingProfiles":{"chargingProfileId":8,"stackLevel":1,"chargingProfileKind":"Relative","chargingProfilePurpose":"ChargePointMaxProfile","chargingSchedule":{"chargingRateUnit":"A","chargingSchedulePeriod":[{"startPeriod":0,"limit":0.0}]}}}]
2024-08-21 21:37:12.123 INFO (MainThread) [ocpp] charger: receive message [2,"1042542464","StatusNotification",{"info": "","vendorId": "com.wallbox","vendorErrorCode": "","connectorId": 1,"errorCode": "NoError","status": "SuspendedEVSE","timestamp": "2024-08-21T19:37:11Z"}]
2024-08-21 21:37:12.130 INFO (MainThread) [ocpp] charger: send [3,"1042542464",{}]
2024-08-21 21:37:12.131 WARNING (MainThread) [homeassistant.components.automation.neem_laadstroom_over] neem laadstroom over: Already running
2024-08-21 21:37:12.144 INFO (MainThread) [ocpp] charger: receive message [3,"0aeb3f42-d730-4c33-99e4-e3c48a0f0895",{"status": "Rejected"}]
2024-08-21 21:37:12.144 DEBUG (MainThread) [custom_components.ocpp] ChargePointMaxProfile is not supported by this charger, trying TxDefaultProfile instead...
2024-08-21 21:37:12.145 INFO (MainThread) [ocpp] charger: send [2,"ced7b100-f7a2-4dea-b506-0696d19a213d","SetChargingProfile",{"connectorId":0,"csChargingProfiles":{"chargingProfileId":8,"stackLevel":0,"chargingProfileKind":"Relative","chargingProfilePurpose":"TxDefaultProfile","chargingSchedule":{"chargingRateUnit":"A","chargingSchedulePeriod":[{"startPeriod":0,"limit":0.0}]}}}]
2024-08-21 21:37:12.235 INFO (MainThread) [ocpp] charger: receive message [3,"ced7b100-f7a2-4dea-b506-0696d19a213d",{"status": "Accepted"}]
2024-08-21 21:37:13.495 INFO (MainThread) [ocpp] charger: receive message [2,"1013064209","StatusNotification",{"info": "","vendorId": "com.wallbox","vendorErrorCode": "","connectorId": 1,"errorCode": "NoError","status": "SuspendedEV","timestamp": "2024-08-21T19:37:13Z"}]
2024-08-21 21:37:13.503 INFO (MainThread) [ocpp] charger: send [3,"1013064209",{}]
2024-08-21 21:37:13.514 INFO (MainThread) [ocpp] charger: send [2,"ab9d2ac7-7022-4ac1-862f-ce594bc339b2","GetConfiguration",{"key":["ChargingScheduleAllowedChargingRateUnit"]}]
2024-08-21 21:37:13.554 INFO (MainThread) [ocpp] charger: receive message [3,"ab9d2ac7-7022-4ac1-862f-ce594bc339b2",{"unknownKey": [],"configurationKey": [{"readonly": true,"key": "ChargingScheduleAllowedChargingRateUnit","value": "Current"} ]}]
2024-08-21 21:37:13.554 DEBUG (MainThread) [custom_components.ocpp] Get Configuration for ChargingScheduleAllowedChargingRateUnit: Current
2024-08-21 21:37:13.554 INFO (MainThread) [custom_components.ocpp] Charger supports setting the following units: Current
2024-08-21 21:37:13.554 INFO (MainThread) [custom_components.ocpp] If more than one unit supported default unit is Amps
2024-08-21 21:37:13.555 INFO (MainThread) [ocpp] charger: send [2,"8df8e54e-3213-4e85-9633-bcd503214133","GetConfiguration",{"key":["ChargeProfileMaxStackLevel"]}]
2024-08-21 21:37:13.583 INFO (MainThread) [ocpp] charger: receive message [3,"8df8e54e-3213-4e85-9633-bcd503214133",{"unknownKey": [],"configurationKey": [{"readonly": true,"key": "ChargeProfileMaxStackLevel","value": "1"} ]}]
2024-08-21 21:37:13.584 DEBUG (MainThread) [custom_components.ocpp] Get Configuration for ChargeProfileMaxStackLevel: 1
2024-08-21 21:37:13.585 INFO (MainThread) [ocpp] charger: send [2,"ca267a03-447a-45cf-8fd8-e003b54a9f74","SetChargingProfile",{"connectorId":0,"csChargingProfiles":{"chargingProfileId":8,"stackLevel":1,"chargingProfileKind":"Relative","chargingProfilePurpose":"ChargePointMaxProfile","chargingSchedule":{"chargingRateUnit":"A","chargingSchedulePeriod":[{"startPeriod":0,"limit":0.0}]}}}]
2024-08-21 21:37:13.656 INFO (MainThread) [ocpp] charger: receive message [2,"1373512714","StatusNotification",{"info": "","vendorId": "com.wallbox","vendorErrorCode": "","connectorId": 1,"errorCode": "NoError","status": "SuspendedEVSE","timestamp": "2024-08-21T19:37:13Z"}]
2024-08-21 21:37:13.662 INFO (MainThread) [ocpp] charger: send [3,"1373512714",{}]
2024-08-21 21:37:13.663 INFO (MainThread) [ocpp] charger: receive message [3,"ca267a03-447a-45cf-8fd8-e003b54a9f74",{"status": "Rejected"}]
2024-08-21 21:37:13.663 WARNING (MainThread) [homeassistant.components.automation.neem_laadstroom_over] neem laadstroom over: Already running
2024-08-21 21:37:13.664 DEBUG (MainThread) [custom_components.ocpp] ChargePointMaxProfile is not supported by this charger, trying TxDefaultProfile instead...
2024-08-21 21:37:13.665 INFO (MainThread) [ocpp] charger: send [2,"e96c3a37-32bf-4e0c-abba-e3556fa1a089","SetChargingProfile",{"connectorId":0,"csChargingProfiles":{"chargingProfileId":8,"stackLevel":0,"chargingProfileKind":"Relative","chargingProfilePurpose":"TxDefaultProfile","chargingSchedule":{"chargingRateUnit":"A","chargingSchedulePeriod":[{"startPeriod":0,"limit":0.0}]}}}]
2024-08-21 21:37:13.780 INFO (MainThread) [ocpp] charger: receive message [3,"e96c3a37-32bf-4e0c-abba-e3556fa1a089",{"status": "Accepted"}]
2024-08-21 21:37:20.483 INFO (MainThread) [ocpp] charger: receive message [2,"1247518290","MeterValues",{"meterValue": [{"timestamp": "2024-08-21T19:37:19Z","sampledValue": [{"format": "Raw","location": "Outlet","context": "Sample.Periodic","phase": "L1","measurand": "Current.Export","unit": "A","value": "0"},{"format": "Raw","location": "Outlet","context": "Sample.Periodic","phase": "L2","measurand": "Current.Export","unit": "A","value": "0"},{"format": "Raw","location": "Outlet","context": "Sample.Periodic","phase": "L3","measurand": "Current.Export","unit": "A","value": "0"},{"format": "Raw","location": "Outlet","context": "Sample.Periodic","phase": "L1","measurand": "Current.Import","unit": "A","value": "0.0"},{"format": "Raw","location": "Outlet","context": "Sample.Periodic","phase": "L2","measurand": "Current.Import","unit": "A","value": "0.0"},{"format": "Raw","location": "Outlet","context": "Sample.Periodic","phase": "L3","measurand": "Current.Import","unit": "A","value": "0.0"},{"format": "Raw","location": "Outlet","context": "Sample.Periodic","measurand": "Current.Offered","unit": "A","value": "0"},{"format": "Raw","location": "Outlet","context": "Sample.Periodic","measurand": "Energy.Active.Export.Interval","unit": "Wh","value": "0"},{"format": "Raw","location": "Outlet","context": "Sample.Periodic","measurand": "Energy.Active.Export.Register","unit": "Wh","value": "0"},{"format": "Raw","location": "Outlet","context": "Sample.Periodic","measurand": "Energy.Active.Import.Interval","unit": "Wh","value": "59.1"} ]} ],"connectorId": 1,"transactionId": 1724268742}]
2024-08-21 21:37:20.486 DEBUG (MainThread) [custom_components.ocpp] process_phases: metric: Current.Export, phase_info: {'unit': 'A', 'L1': 0.0, 'L2': 0.0, 'L3': 0.0} value: 0.000000 unit :A
2024-08-21 21:37:20.486 DEBUG (MainThread) [custom_components.ocpp] process_phases: metric: Current.Import, phase_info: {'unit': 'A', 'L1': 0.0, 'L2': 0.0, 'L3': 0.0} value: 0.000000 unit :A
2024-08-21 21:37:20.493 INFO (MainThread) [ocpp] charger: send [3,"1247518290",{}]
2024-08-21 21:37:20.806 DEBUG (MainThread) [custom_components.ocpp] Connection latency from 'central' to 'charger': ping=0.0 ms, pong=3.0 ms
2024-08-21 21:37:40.810 DEBUG (MainThread) [custom_components.ocpp] Connection latency from 'central' to 'charger': ping=0.0 ms, pong=3.0 ms
github-actions commented
Stale issue message