Fix missing charging system state

This commit is contained in:
linus
2026-01-02 18:06:30 +01:00
parent 7acfdea1d8
commit 98d8dd7e65
2 changed files with 9 additions and 2 deletions
+6
View File
@@ -1,3 +1,9 @@
## v1.13.1
### 🐛 Bug Fixes:
- Fix missing charging system state `error` #314
## v1.13.0
### 🚀 Features:
+3 -2
View File
@@ -1,6 +1,6 @@
from config import settings
VERSION = "v1.13.0"
VERSION = "v1.13.1"
OAUTH_TOKEN_URL = "https://volvoid.eu.volvocars.com/as/token.oauth2"
OAUTH_AUTH_URL = "https://volvoid.eu.volvocars.com/as/authorization.oauth2"
@@ -61,7 +61,8 @@ availability_topic = "volvoAAOS2mqtt/availability"
charging_system_states = {"CHARGING": "Charging", "IDLE": "Idle",
"FAULT": "Fault", "UNSPECIFIED": "Unspecified",
"DONE": "Done", "SCHEDULED": "Scheduled"}
"DONE": "Done", "SCHEDULED": "Scheduled", "ERROR": "Error",
"DISCHARGING": "Discharging"}
charging_connection_states = {"DISCONNECTED": "Disconnected", "UNSPECIFIED": "Unspecified",
"FAULT": "Fault", "CONNECTED": "Connected"}