mirror of
https://github.com/Dielee/volvo2mqtt.git
synced 2026-08-13 11:19:52 +02:00
Fix unknown state for icon update
This commit is contained in:
@@ -1,3 +1,10 @@
|
|||||||
|
## v1.8.20
|
||||||
|
### 🐛 Bug Fixes:
|
||||||
|
|
||||||
|
- Fix Addon crash if icon state is `UNKOWN`
|
||||||
|
- Add `UNSPECIFIED` state for windows
|
||||||
|
|
||||||
|
|
||||||
## v1.8.19
|
## v1.8.19
|
||||||
### 🐛 Bug Fixes:
|
### 🐛 Bug Fixes:
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
name: "Volvo2Mqtt"
|
name: "Volvo2Mqtt"
|
||||||
description: "Volvo AAOS MQTT bridge"
|
description: "Volvo AAOS MQTT bridge"
|
||||||
version: "1.8.19"
|
version: "1.8.20"
|
||||||
slug: "volvo2mqtt"
|
slug: "volvo2mqtt"
|
||||||
init: false
|
init: false
|
||||||
url: "https://github.com/Dielee/volvo2mqtt"
|
url: "https://github.com/Dielee/volvo2mqtt"
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
from config import settings
|
from config import settings
|
||||||
|
|
||||||
VERSION = "v1.8.19"
|
VERSION = "v1.8.20"
|
||||||
|
|
||||||
OAUTH_URL = "https://volvoid.eu.volvocars.com/as/token.oauth2"
|
OAUTH_URL = "https://volvoid.eu.volvocars.com/as/token.oauth2"
|
||||||
VEHICLES_URL = "https://api.volvocars.com/connected-vehicle/v2/vehicles"
|
VEHICLES_URL = "https://api.volvocars.com/connected-vehicle/v2/vehicles"
|
||||||
|
|||||||
+12
-9
@@ -269,16 +269,19 @@ def update_car_data(force_update=False, overwrite={}):
|
|||||||
|
|
||||||
def update_ha_device(entity, vin, state):
|
def update_ha_device(entity, vin, state):
|
||||||
icon_config = icon_states.get(entity["id"])
|
icon_config = icon_states.get(entity["id"])
|
||||||
if icon_config and state:
|
try:
|
||||||
logging.debug("Entity " + entity["id"] + " state " + str(state))
|
if icon_config and state:
|
||||||
if isinstance(state, float):
|
logging.debug("Entity " + entity["id"] + " state " + str(state))
|
||||||
icon = util.get_icon_between(icon_config, state)
|
if isinstance(state, float):
|
||||||
elif state.replace(".", "").isnumeric():
|
icon = util.get_icon_between(icon_config, state)
|
||||||
state = float(state)
|
elif state.replace(".", "").isnumeric():
|
||||||
icon = util.get_icon_between(icon_config, state)
|
state = float(state)
|
||||||
|
icon = util.get_icon_between(icon_config, state)
|
||||||
|
else:
|
||||||
|
icon = icon_config[state]
|
||||||
else:
|
else:
|
||||||
icon = icon_config[state]
|
return None
|
||||||
else:
|
except:
|
||||||
return None
|
return None
|
||||||
|
|
||||||
logging.debug("Updating icon to " + icon + " for " + entity["id"])
|
logging.debug("Updating icon to " + icon + " for " + entity["id"])
|
||||||
|
|||||||
Reference in New Issue
Block a user