Compare commits

..
6 Commits
Author SHA1 Message Date
Linus DietzandGitHub 2f0e2352a6 Add HA Add-On 2023-06-21 13:46:04 +02:00
Linus Dietz 43c16e7c65 Add HomeAssistant add-on 2023-06-21 12:59:24 +02:00
Linus DietzandGitHub 407989952e Update README.md 2023-06-21 10:40:03 +02:00
Linus DietzandGitHub d358241801 Merge pull request #15 from elyara/patch-1
Update Energy availability in README.md
2023-06-21 10:39:18 +02:00
Elya SheininandGitHub 3148aa82c6 Update Energy availability in README.md 2023-06-20 23:21:41 -07:00
Linus DietzandGitHub 281533e2ec Add supported features to readme 2023-06-20 15:17:48 +02:00
8 changed files with 142 additions and 3 deletions
+17 -1
View File
@@ -11,12 +11,28 @@ Maybe this component works also with other Volvo cars. Please try out the native
Please let me know if your car works with this addon so I can expand the list!
## Supported features
- Lock/unlock car
- Start/stop climate
- Sensor "Battery Charge Level"
- Sensor "Electric Range"
- Sensor "Charging System Status"
- Sensor "Estimated Charging Finish Time"
- Multiple cars
NOTE: Energy status currently available only for cars in the Europe / Middle East / Africa regions. [source](https://developer.volvocars.com/apis/energy/v1/overview/#availability)
## Setup
Docker:
Just install this addon with the following command.
Please note to fill in your settings inside the environment variables.
`docker run --pull=always -e CONF_updateInterval=300 -e CONF_babelLocale='de' -e CONF_mqtt='@json {"broker": "", "username": "", "password": ""}' -e CONF_volvoData='@json {"username": "", "password": "", "vin": "", "vccapikey": ""}' -e TZ='Europe/Berlin' --name volvo2mqtt ghcr.io/dielee/volvo2mqtt:latest`
`docker run --pull=always -e CONF_updateInterval=300 -e CONF_babelLocale='de' -e CONF_mqtt='@json {"broker": "", "username": "", "password": ""}' -e CONF_volvoData='@json {"username": "", "password": "", "vin": "", "vccapikey": ""}' -e TZ='Europe/Berlin' --name volvo2mqtt ghcr.io/dielee/volvo2mqtt:latest`
HA Add-On<br>
[![Open your Home Assistant instance and show the add add-on repository dialog with a specific repository URL pre-filled.](https://my.home-assistant.io/badges/supervisor_add_addon_repository.svg)](https://my.home-assistant.io/redirect/supervisor_add_addon_repository/?repository_url=https%3A%2F%2Fgithub.com%2FDielee%2Fvolvo2mqtt)
Here is what every option means:
+20
View File
@@ -0,0 +1,20 @@
ARG BUILD_FROM
FROM $BUILD_FROM
# Install requirements for add-on
RUN apk add --no-cache python3 bash py3-pip
# set the working directory in the container
WORKDIR /volvoAAOS2mqtt
# download requirements.txt
RUN wget https://raw.githubusercontent.com/Dielee/volvo2mqtt/main/requirements.txt
# install dependencies
RUN pip install -r requirements.txt
# copy the content of the local src directory to the working directory
COPY / .
# command to run on container start
CMD [ "python", "-u", "./main.py" ]
+64
View File
@@ -0,0 +1,64 @@
#include <tunables/global>
profile volvo2mqtt flags=(attach_disconnected,mediate_deleted) {
#include <abstractions/base>
# Capabilities
file,
signal (send) set=(kill,term,int,hup,cont),
# S6-Overlay
/init ix,
/bin/** ix,
/usr/bin/** ix,
/run/{s6,s6-rc*,service}/** ix,
/package/** ix,
/command/** ix,
/etc/services.d/** rwix,
/etc/cont-init.d/** rwix,
/etc/cont-finish.d/** rwix,
/run/{,**} rwk,
/dev/tty rw,
# Bashio
/usr/lib/bashio/** ix,
/tmp/** rwk,
# Access to options.json and other files within your addon
/data/** rw,
# Start new profile for service
/usr/bin/myprogram cx -> myprogram,
profile myprogram flags=(attach_disconnected,mediate_deleted) {
#include <abstractions/base>
# Receive signals from S6-Overlay
signal (receive) peer=*_ADDON_SLUG,
# Access to options.json and other files within your addon
/data/** rw,
# Access to mapped volumes specified in config.json
/share/** rw,
# Access required for service functionality
/usr/bin/myprogram r,
/bin/bash rix,
/bin/echo ix,
/etc/passwd r,
/dev/tty rw,
# Allow outbound MQTT communication
network tcp,
network inet stream,
network inet dgram,
network inet6 stream,
network inet6 dgram,
# Add any additional MQTT-related rules if needed
# For example, if you're using the paho-mqtt library
/usr/bin/python3 cx -> paho.mqtt,
/usr/lib/python3.11/site-packages/paho/mqtt/** r,
}
}
+1 -1
View File
@@ -2,5 +2,5 @@ from dynaconf import Dynaconf
settings = Dynaconf(
envvar_prefix="CONF",
settings_files=["settings.json"],
settings_files=["settings.json", "/data/options.json"],
)
+39
View File
@@ -0,0 +1,39 @@
name: "Volvo2Mqtt"
description: "Volvo AAOS MQTT bridge"
version: "1.1.0"
slug: "volvo2mqtt"
init: false
url: "https://github.com/Dielee/volvo2mqtt"
apparmor: true
options:
updateInterval: 300
babelLocale: null
debug: false
mqtt:
broker: null
username: ""
password: ""
volvoData:
username: null
password: null
vin: ""
vccapikey: null
schema:
updateInterval: int(10,)
babelLocale: str
debug: bool
mqtt:
broker: str
username: str?
password: str?
volvoData:
username: str
password: str
vin: str?
vccapikey: str
arch:
- aarch64
- amd64
- armhf
- armv7
- i386
+1 -1
View File
@@ -1,4 +1,4 @@
VERSION = "v1.0.11"
VERSION = "v1.1.0"
OAUTH_URL = "https://volvoid.eu.volvocars.com/as/token.oauth2"
VEHICLES_URL = "https://api.volvocars.com/connected-vehicle/v1/vehicles"
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB