Hi,
I have been using the Wallbox Integration for my Commander 2 since beginning of 2023. It seems it operates differently since some time back. The Pause/Resume function is unavailable unless one has unlocked the wallbox first (it did not use to be like this). BEfore the pause/resume swithc was available as soon as the car was connected.
This new behaviour screws up the the function with automatic charging thru EV Smart Charging integration as the automatic charging of the Wallbox starts as soon as one unlocks the Wallbox. It would be better if one could get the functionallity like before that you can pause/resume the charging once the car is connected without havin to unlock first.
As the Wallbox Integration needs the admin Wallbox credentials when setting it up , this means the one who can use the pause/resume button is Admin anyway. Therefor it makes no sense in my opinion to first have to unlock before the pause/resume button gets accessable.
If I first unlock the Wallbox it will automatically start charging even if the EV Smart Charging integration does not require charging for the moment.
It would be great if we could have the old functionality your Wallbox Integration back again where the pause/resume button is available all the time
Anyone else having similar trouble with the charging setup?
Would recommend to solve this with automations. The on/off is cloud related and doesn’t work unless the charger is unlocked. I also use EV smart charging, my wb Pulsar plus is rooted though so i control it locally.
Thank you for your reply. Then I probably will have to try with automation.
I did not know it is cloud related. the thing is it used to be differrently.
I had issues with my Commander 2 with LTE, that it started charging without unlocking and resuming. It simply started charging when the car was connected.
SO I contacted Wallbox and their support said it shoudl not be like this, and then all the standard questions / answers with rebotting in whic order to what etc.
About a month later there was a firmware update and it did not start charging when simply connecting the car. But shortly after the problem with the inaccessable pause/resume button occurred. So I thought it was something that the maker of the Wallbox Integration had added.
I will maybe even add a zone function and or charger connected from the car in the automation for it only to run when the car connected at home.
The functionality is indeed that the on/off button is only available if the wallbox is unlocked. Standard way of working is that the wallbox auto locks to prevent abuse. In order to start charging you would need to unlock first after which charging commences and the on/off switch becomes available.
I have another automation available which does what you suggest. Based on the car API itdetermines the location of the car. If the car API reports home and the charger is connected then the Wallbox unlocks. The earlier automation shared will subsequently arrange auto pause (unless the EV Charging integration Boolean is on in which case it continues charging)
It also relocks but that predates the auto lock feature which Wallbox now supports natively.
alias: Unlock and relock Wallbox charger
description: ""
trigger:
- platform: state
entity_id:
- binary_sensor.charging_cable_connected
to: "on"
for:
hours: 0
minutes: 0
seconds: 0
- platform: zone
entity_id: person.skoda_enyaq
zone: zone.home
event: enter
condition:
- condition: and
conditions:
- condition: zone
entity_id: person.skoda_enyaq
zone: zone.home
- condition: state
entity_id: binary_sensor.charging_cable_connected
state: "on"
action:
- device_id: 2f3e39789d7661c5a47178ebf0b0d608
domain: lock
entity_id: lock.wallbox_portal_locked_unlocked
type: unlock
- delay:
hours: 0
minutes: 2
seconds: 0
milliseconds: 0
- device_id: 2f3e39789d7661c5a47178ebf0b0d608
domain: lock
entity_id: lock.wallbox_portal_locked_unlocked
type: lock
mode: single
One more question.
When I look at the sensor.ev_smart_charging_charging entity in an UI automation I can only see “available” or “unavailable” as state. But when I look at the actual entity it shows “on” or “off”. Why is this?
It mkae sit impossible to use UI when trying to make an automation.
I woud prefer to setup an automation thru UI so other in the family can follow it easier if I am not home than having to look at yaml.