Skip to content

Commit b112364

Browse files
authored
v0.3.0 stage --> main (#128)
* Update CHANGELOG.md * Bump core to 0.3.0 * Readme & changelog * Update config.yaml * Update Dockerfile
1 parent 5eb79eb commit b112364

File tree

5 files changed

+33
-4
lines changed

5 files changed

+33
-4
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
- This package contains all the necessary tweaks to make [tesla_ble_mqtt_docker](https://github.com/iainbullock/tesla_ble_mqtt_docker) work as a Home Assistant add on, using onboard bluetooth devices.
44
It will run the official Tesla Vehicle SDK commands via BLE to activate various entities in your Tesla.
55
- This is to bypass the current Fleet API rate limitation and does not rely on the API.
6+
- This set of tools also allow you to be fully in BLE mode (not using FleetAPI) to get data from your Tesla and to send commands to it.
67

78

89
[![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://github.com/tesla-local-control/tesla-local-control-addon)

tesla_ble_mqtt/CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
# Changelog
22

3+
## 0.3.0
4+
5+
- MAJOR NEW Feature: Read car state using bluetooth (BLE) without using Fleet API calls.
6+
7+
### Changes
8+
9+
- NEW Feature: The following new states / entities are available, more to follow in future releases:
10+
- Sensors: Battery Level (State of Charge); Battery Range; Charge Energy Added; Charger Current; Charger Power; Inside Temp; Outside Temp; Tyre Pressures
11+
- Binary_Sensors: Battery Heater On; Frunk Open; Windows Open; Door Lock
12+
- Switches: Charger; Climate; Sentry Mode
13+
- Numbers: Charging Current; Charging SOC Limit; Climate Temp
14+
- Covers: Charge Port; Trunk
15+
- Selects: Heated Seat Front Left; Heated Seat Front Right
16+
- Buttons: Force Data Update
17+
18+
- NEW Feature: Status / type of charge cable is reported as a sensor
19+
20+
- Fixes:
21+
- Error for setting climate temp #61 (_docker)
22+
- Error 'Icons should be specified in the form "prefix:name" for dictionary value @ data['icon']' when processing MQTT discovery message topic #124 (_core)
23+
- Getting more information over BLE is now possible. #66 (_docker)
24+
- Fetch limited vehicle info over BLE #25 (_core)
25+
- Any potential to "read state" via bluetooth? #115 (_core)
26+
- read SoC possible? #124 (-addon)
27+
- Read state of charge cable connected? #117 (-addon)
28+
329
## 0.2.2
430

531
### Changed

tesla_ble_mqtt/Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ RUN apk add --no-cache go git
66
# install Tesla Go packages
77
RUN git clone https://github.com/teslamotors/vehicle-command.git /vehicle-command
88
WORKDIR /vehicle-command
9-
RUN git checkout tags/v0.1.0
9+
# RUN git checkout tags/v0.1.0
1010
RUN go get ./... && \
1111
go build ./... && \
1212
go install ./...
@@ -21,7 +21,8 @@ RUN apk add --no-cache \
2121
bluez-deprecated \
2222
mosquitto-clients \
2323
openssl \
24-
sed
24+
sed \
25+
jq
2526

2627
# Copy files for add-on
2728
COPY app /app/

tesla_ble_mqtt/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Home Assistant Add-on: Tesla Local Commands
22

3-
Send commands via MQTT to a Tesla car using Bluetooth Low Energy (BLE)
3+
Read state and send commands via MQTT to a Tesla car using Bluetooth Low Energy (BLE)
4+
**NEW**: from version 0.3.0 this also sets up sensors with your car data, without going through the Fleet API.
45

56

67
This Addon is a package of [tesla_ble_mqtt_core](https://github.com/tesla-local-control/tesla_ble_mqtt_core)

tesla_ble_mqtt/config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: "Tesla Local Commands"
2-
version: "0.2.2"
2+
version: "0.3.0"
33
slug: "tesla_local_commands"
44
description: "Control your Tesla locally with bluetooth"
55
url: "https://github.com/tesla-local-control/tesla-local-control-addon"

0 commit comments

Comments
 (0)