diff --git a/homeassistant/components/wallbox/switch.py b/homeassistant/components/wallbox/switch.py index 7ef6f1e97ed..3d046d5d241 100644 --- a/homeassistant/components/wallbox/switch.py +++ b/homeassistant/components/wallbox/switch.py @@ -56,6 +56,7 @@ class WallboxSwitch(WallboxEntity, SwitchEntity): """Return the availability of the switch.""" return self.coordinator.data[CHARGER_STATUS_DESCRIPTION_KEY] in { ChargerStatus.CHARGING, + ChargerStatus.DISCHARGING, ChargerStatus.PAUSED, ChargerStatus.SCHEDULED, } @@ -65,6 +66,7 @@ class WallboxSwitch(WallboxEntity, SwitchEntity): """Return the status of pause/resume.""" return self.coordinator.data[CHARGER_STATUS_DESCRIPTION_KEY] in { ChargerStatus.CHARGING, + ChargerStatus.DISCHARGING, ChargerStatus.WAITING_FOR_CAR, ChargerStatus.WAITING, }