Skip to content

Commit

Permalink
Add AJAR state for sunroof #123
Browse files Browse the repository at this point in the history
  • Loading branch information
Dielee committed Nov 10, 2023
1 parent be09c79 commit 459c2dc
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions src/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## v1.8.10
### 🐛 Bug Fixes:

- Add `AJAR` state for sunroof #123

## v1.8.9
### 🐛 Bug Fixes:

Expand Down
2 changes: 1 addition & 1 deletion src/config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: "Volvo2Mqtt"
description: "Volvo AAOS MQTT bridge"
version: "1.8.9"
version: "1.8.10"
slug: "volvo2mqtt"
init: false
url: "https://github.com/Dielee/volvo2mqtt"
Expand Down
4 changes: 2 additions & 2 deletions src/const.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from config import settings

VERSION = "v1.8.9"
VERSION = "v1.8.10"

OAUTH_URL = "https://volvoid.eu.volvocars.com/as/token.oauth2"
VEHICLES_URL = "https://api.volvocars.com/connected-vehicle/v1/vehicles"
Expand Down Expand Up @@ -51,7 +51,7 @@
"CONNECTION_STATUS_FAULT": "Fault"}

window_states = {"CLOSED": "OFF", "OPEN": "ON"}
door_states = {"CLOSED": "OFF", "OPEN": "ON", "UNSPECIFIED": "UNKNOWN"}
door_states = {"CLOSED": "OFF", "OPEN": "ON", "UNSPECIFIED": "UNKNOWN", "AJAR": "ON"}
engine_states = {"RUNNING": "ON", "STOPPED": "OFF", "true": "ON", "false": "OFF"}

icon_states = {
Expand Down

0 comments on commit 459c2dc

Please sign in to comment.