mirror of
https://github.com/home-assistant/core.git
synced 2025-07-09 22:37:11 +00:00
Add support for the locked status but car is connected (#73551)
This commit is contained in:
parent
bd29b91867
commit
4e6d753d2f
@ -70,7 +70,7 @@ CHARGER_STATUS: dict[int, ChargerStatus] = {
|
||||
195: ChargerStatus.CHARGING,
|
||||
196: ChargerStatus.DISCHARGING,
|
||||
209: ChargerStatus.LOCKED,
|
||||
210: ChargerStatus.LOCKED,
|
||||
210: ChargerStatus.LOCKED_CAR_CONNECTED,
|
||||
}
|
||||
|
||||
|
||||
|
@ -41,6 +41,7 @@ class ChargerStatus(StrEnum):
|
||||
ERROR = "Error"
|
||||
READY = "Ready"
|
||||
LOCKED = "Locked"
|
||||
LOCKED_CAR_CONNECTED = "Locked, car connected"
|
||||
UPDATING = "Updating"
|
||||
WAITING_IN_QUEUE_POWER_SHARING = "Waiting in queue by Power Sharing"
|
||||
WAITING_IN_QUEUE_POWER_BOOST = "Waiting in queue by Power Boost"
|
||||
|
Loading…
x
Reference in New Issue
Block a user