diff --git a/.idea/.gitignore b/.idea/.gitignore
new file mode 100644
index 0000000..ab1f416
--- /dev/null
+++ b/.idea/.gitignore
@@ -0,0 +1,10 @@
+# Default ignored files
+/shelf/
+/workspace.xml
+# Ignored default folder with query files
+/queries/
+# Datasource local storage ignored files
+/dataSources/
+/dataSources.local.xml
+# Editor-based HTTP Client requests
+/httpRequests/
diff --git a/.idea/TeslaBleHttpProxy.iml b/.idea/TeslaBleHttpProxy.iml
new file mode 100644
index 0000000..5e764c4
--- /dev/null
+++ b/.idea/TeslaBleHttpProxy.iml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/go.imports.xml b/.idea/go.imports.xml
new file mode 100644
index 0000000..d7202f0
--- /dev/null
+++ b/.idea/go.imports.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/golinter.xml b/.idea/golinter.xml
new file mode 100644
index 0000000..1ccf3ec
--- /dev/null
+++ b/.idea/golinter.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/modules.xml b/.idea/modules.xml
new file mode 100644
index 0000000..08447c9
--- /dev/null
+++ b/.idea/modules.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
new file mode 100644
index 0000000..35eb1dd
--- /dev/null
+++ b/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/README.md b/README.md
index 524e09c..b122ad3 100644
--- a/README.md
+++ b/README.md
@@ -2,253 +2,4 @@
TeslaBleHttpProxy is a program written in Go that receives HTTP requests and forwards them via Bluetooth to a Tesla vehicle. The program can, for example, be easily used together with [evcc](https://github.com/evcc-io/evcc).
-The program stores the received requests in a queue and processes them one by one. This ensures that only one Bluetooth connection to the vehicle is established at a time.
-
-## Table of Contents
-
-- [How to install](#how-to-install)
- - [Docker compose](#docker-compose)
- - [Build yourself](#build-yourself)
-- [Generate key for vehicle](#generate-key-for-vehicle)
-- [Setup EVCC](#setup-evcc)
-- [API](#api)
- - [Vehicle Commands](#vehicle-commands)
- - [Vehicle Data](#vehicle-data)
- - [Body Controller State](#body-controller-state)
- - [Version of Proxy](#version-of-proxy)
-- [Troubleshooting](#troubleshooting)
-
-## How to install
-
-You can either compile and use the Go program yourself or install it in a Docker container. ([detailed instruction](docs/installation.md))
-
-### Docker compose
-
-Below you will find the necessary contents for your `docker-compose.yml`:
-
-```
-services:
- tesla-ble-http-proxy:
- image: wimaha/tesla-ble-http-proxy
- container_name: tesla-ble-http-proxy
- volumes:
- - ~/TeslaBleHttpProxy/key:/key
- - /var/run/dbus:/var/run/dbus
- restart: always
- privileged: true
- network_mode: host
- cap_add:
- - NET_ADMIN
- - SYS_ADMIN
-```
-
-Please remember to create an empty folder where the keys can be stored later. In this example, it is `~/TeslaBleHttpProxy/key`.
-
-Pull and start TeslaBleHttpProxy with `docker compose up -d`.
-
-Note that you can optionally set environment variables to override the default behavior. See [environment variables](docs/environment_variables.md) for more information.
-
-**Key Security:** Private keys are protected by UNIX file permissions (0600 - owner read/write only). Ensure the key directory has proper permissions and is not accessible to unauthorized users.
-
-### Build yourself
-
-Download the code and save it in a folder named 'TeslaBleHttpProxy'. From there, you can easily compile the program.
-
-```
-go build .
-./TeslaBleHttpProxy
-```
-
-Please remember to create an empty folder called `key` where the keys can be stored later.
-
-Note that you can optionally set environment variables to override the default behavior. See [environment variables](docs/environment_variables.md) for more information.
-
-## Generate key for vehicle
-
-*(Here, the simple, automatic method is described. Besides the automatic method, you can also generate the keys [manually](docs/manually_gen_key.md).)*
-
-**Security Recommendation:** We recommend using the **Charging Manager** role for security. It provides limited access suitable for charging management and works perfectly with [evcc tesla-ble template](https://docs.evcc.io/docs/devices/vehicles#tesla-ble). The Charging Manager role can:
-- Read vehicle data
-- Authorize charging-related commands: `wake`, `charge_start`, `charge_stop`, `set_charging_amps`
-
-The **Owner** role provides full access to all vehicle functions (unlock, start, etc.) and should only be used if you need non-charging functions.
-
-To generate the required keys browse to `http://YOUR_IP:8080/dashboard`. In the dashboard you will see that the keys are missing:
-
-
-
-Please click on `Generate` for the **Charging Manager** role (recommended for security). The keys will be automatically generated and saved. The Charging Manager key will be set as active by default.
-
-
-
-
-After that please enter your VIN under `Setup Vehicle`. Before you proceed make sure your vehicle is awake! So you have to manually wake the vehicle before you send the key to the vehicle.
-
-
-
-The key is now sent to the vehicle. To complete the process, confirm by tapping your NFC card on the center console. (Note: There will be no message on the Tesla screen before confirmation with the NFC card.)
-
-
-
-You can now close the dashboard and use the proxy. 🙂
-
-## Setup EVCC
-
-You can use the following configuration in evcc (recommended):
-
-```
-vehicles:
- - name: tesla
- type: template
- template: tesla-ble
- title: Your Tesla (optional)
- capacity: 60 # Akkukapazität in kWh (optional)
- vin: VIN # Erforderlich für BLE-Verbindung
- url: IP # URL des Tesla BLE HTTP Proxy
- port: 8080 # Port des Tesla BLE HTTP Proxy (optional)
-```
-
-If you want to use this proxy only for commands, and not for vehicle data, you can use the following configuration. The vehicle data is then fetched via the Tesla API by evcc.
-
-```
-- name: model3
- type: template
- template: tesla
- title: Tesla
- icon: car
- commandProxy: http://YOUR_IP:8080
- accessToken: YOUR_ACCESS_TOKEN
- refreshToken: YOUR_REFRSH_TOKEN
- capacity: 60
- vin: YOUR_VIN
-```
-
-(Hint for multiple vehicle support: https://github.com/wimaha/TeslaBleHttpProxy/issues/40)
-
-## API
-
-### Vehicle Commands
-
-The program uses the same interfaces as the Tesla [Fleet API](https://developer.tesla.com/docs/fleet-api#vehicle-commands). Currently, the following requests are supported:
-
-- wake_up
-- charge_start
-- charge_stop
-- set_charging_amps
-- set_charge_limit
-- auto_conditioning_start
-- auto_conditioning_stop
-- charge_port_door_open
-- charge_port_door_close
-- flash_lights
-- honk_horn
-- door_lock
-- door_unlock
-- set_sentry_mode
-
-By default, the program will return immediately after sending the command to the vehicle. If you want to wait for the command to complete, you can set the `wait` parameter to `true`.
-
-**Wake Up Behavior:** Commands **automatically wake up** the vehicle if it is asleep. You don't need to manually wake the vehicle or use any parameters - the proxy handles this automatically to ensure commands execute successfully.
-
-#### Example Request
-
-*(All requests with method POST.)*
-
-Start charging:
-`http://localhost:8080/api/1/vehicles/{VIN}/command/charge_start`
-
-Start charging and wait for the command to complete:
-`http://localhost:8080/api/1/vehicles/{VIN}/command/charge_start?wait=true`
-
-Stop charging:
-`http://localhost:8080/api/1/vehicles/{VIN}/command/charge_stop`
-
-Set charging amps to 5A:
-`http://localhost:8080/api/1/vehicles/{VIN}/command/set_charging_amps` with body `{"charging_amps": "5"}`
-
-Explicitly wake up the vehicle:
-`http://localhost:8080/api/1/vehicles/{VIN}/command/wake_up`
-
-### Vehicle Data
-
-The vehicle data is fetched from the vehicle and returned in the response in the same format as the [Fleet API](https://developer.tesla.com/docs/fleet-api/endpoints/vehicle-endpoints#vehicle-data). Since a ble connection has to be established to fetch the data, it takes a few seconds before the data is returned.
-
-**Caching:** VehicleData responses are cached in memory for faster subsequent requests. Each endpoint (e.g., `charge_state`, `climate_state`) is cached separately per VIN. The cache time can be configured via the `vehicleDataCacheTime` environment variable (default: 30 seconds). If all requested endpoints are cached and valid, the response is returned immediately without establishing a BLE connection.
-
-**Wake Up Behavior:** By default, the car is **not** automatically woken up before fetching vehicle data. This allows for efficient data retrieval when the vehicle is already awake. If your vehicle is asleep and you need to wake it up first, you can use the `wakeup=true` parameter. The proxy uses intelligent caching to minimize unnecessary wakeup calls - if the vehicle was confirmed awake within the last 9 minutes, the sleep status check is skipped.
-
-#### Example Request
-
-*(All requests with method GET.)*
-
-Get vehicle data:
-`http://localhost:8080/api/1/vehicles/{VIN}/vehicle_data`
-
-Get vehicle data with automatic wakeup:
-`http://localhost:8080/api/1/vehicles/{VIN}/vehicle_data?wakeup=true`
-
-Currently you will receive the following data:
-
-- charge_state
-- climate_state
-
-If you want to receive specific data, you can add the endpoints to the request. For example:
-
-`http://localhost:8080/api/1/vehicles/{VIN}/vehicle_data?endpoints=charge_state`
-
-Get specific data with automatic wakeup:
-`http://localhost:8080/api/1/vehicles/{VIN}/vehicle_data?endpoints=charge_state&wakeup=true`
-
-This is recommended if you want to receive data frequently, since it will reduce the time it takes to receive the data.
-
-### Body Controller State
-
-The body controller state is fetched from the vehicle and returnes the state of the body controller. The request does not wake up the vehicle. The following information is returned:
-
-- `vehicleLockState`
- - `VEHICLELOCKSTATE_UNLOCKED`
- - `VEHICLELOCKSTATE_LOCKED`
- - `VEHICLELOCKSTATE_INTERNAL_LOCKED`
- - `VEHICLELOCKSTATE_SELECTIVE_UNLOCKED`
-- `vehicleSleepStatus`
- - `VEHICLE_SLEEP_STATUS_UNKNOWN`
- - `VEHICLE_SLEEP_STATUS_AWAKE`
- - `VEHICLE_SLEEP_STATUS_ASLEEP`
-- `userPresence`
- - `VEHICLE_USER_PRESENCE_UNKNOWN`
- - `VEHICLE_USER_PRESENCE_NOT_PRESENT`
- - `VEHICLE_USER_PRESENCE_PRESENT`
-
-#### Request
-
-*(All requests with method GET.)*
-
-Get body controller state:
-`http://localhost:8080/api/1/vehicles/{VIN}/body_controller_state`
-
-### Version of Proxy
-
-Get version of proxy:
-`http://localhost:8080/api/proxy/1/version`
-
-The response will contain the version of the proxy.
-
-## Troubleshooting
-
-### Vehicle Requirements
-
-TeslaBleHttpProxy requires your Tesla vehicle to support **Phone Key** functionality, as it relies on Bluetooth Low Energy (BLE) for communication. Most Tesla models from 2021 onward support Phone Key, but some older models (e.g., Model X 2015–2020) may not. Please verify Phone Key support in your Tesla app or consult Tesla's [Vehicle Keys Support Page](https://www.tesla.com/support/tesla-vehicle-keys) before setting up the proxy.
-
-### Connection Timeouts
-
-Due to BLE's power-saving design, Tesla vehicles may terminate connections after ~30 seconds, causing "connection timeout" logs. This is normal, and the proxy reconnects automatically, ensuring EVCC or other integrations work without issues. Keep the proxy device within ~5-10 meters of the vehicle for reliable connections.
-
-### BLE Device Limit (Maximum 3 Devices)
-
-**Problem:** Intermittent connection failures, undefined loss of connections, or unreliable behavior with evcc.
-
-**Solution:** Tesla vehicles only accept a **maximum of 3 BLE keys/devices simultaneously**. If you exceed this limit (e.g., multiple phones, smartwatches, and the proxy), you'll experience connection issues.
-
-**Fix:** Close the Tesla app on mobile phones when not needed, especially if you're also wearing a smartwatch with the Tesla app. The proxy counts as one device, so limit other active BLE connections accordingly.
-
-This is a Tesla vehicle constraint, not a limitation of TeslaBleHttpProxy.
+This program is a fork of the main TeslaBleHttpProxy with some changes so it works correctly with EVCC.
diff --git a/config/config.go b/config/config.go
index 1186f44..82642a0 100644
--- a/config/config.go
+++ b/config/config.go
@@ -125,7 +125,7 @@ func LoadConfig() *Config {
scanTimeout := os.Getenv("scanTimeout")
if scanTimeout == "" {
- scanTimeout = "5" // default value
+ scanTimeout = "2" // default value
}
scanTimeoutInt, err := strconv.Atoi(scanTimeout)
if err != nil {
diff --git a/internal/api/handlers/tesla.go b/internal/api/handlers/tesla.go
index ac91575..3d4e4cf 100644
--- a/internal/api/handlers/tesla.go
+++ b/internal/api/handlers/tesla.go
@@ -31,6 +31,8 @@ var (
vehicleDataCacheMux sync.RWMutex
)
+var vehicleOutOfRange = true
+
func commonDefer(w http.ResponseWriter, response *models.Response) {
var ret models.Ret
ret.Response = *response
@@ -176,6 +178,7 @@ func VehicleData(w http.ResponseWriter, r *http.Request) {
} else {
// Cache expired for this endpoint
logging.Debug("VehicleData endpoint cache expired", "VIN", vin, "Endpoint", endpoint, "Age", age)
+ cachedData[endpoint] = cachedEntry.data
missingEndpoints = append(missingEndpoints, endpoint)
}
} else {
@@ -213,11 +216,17 @@ func VehicleData(w http.ResponseWriter, r *http.Request) {
apiResponse.Ctx = r.Context()
wg.Add(1)
- autoWakeup := r.URL.Query().Get("wakeup") == "true"
+ autoWakeup := r.URL.Query().Get("wakeup") == "true" || vehicleOutOfRange
control.BleControlInstance.PushCommand(command, vin, map[string]interface{}{"endpoints": endpoints}, &apiResponse, autoWakeup)
wg.Wait()
+ if !apiResponse.Result && strings.Contains(apiResponse.Error, "not in range") && !vehicleOutOfRange {
+ logging.Debug("Vehicle out of range. Setting bool vehicleOutOfRange", "VIN", vin)
+ fmt.Printf("Vehicle out of range. Setting bool vehicleOutOfRange")
+ vehicleOutOfRange = true
+ }
+
if apiResponse.Result {
// Parse the BLE response to extract individual endpoint data
var fetchedData map[string]json.RawMessage
@@ -256,6 +265,7 @@ func VehicleData(w http.ResponseWriter, r *http.Request) {
return
}
+ vehicleOutOfRange = false
response.Result = true
response.Reason = "The request was successfully processed."
response.Response = responseJson
@@ -267,12 +277,15 @@ func VehicleData(w http.ResponseWriter, r *http.Request) {
for endpoint, data := range cachedData {
combinedResponse[endpoint] = data
}
+
responseJson, err := json.Marshal(combinedResponse)
if err != nil {
response.Result = false
response.Reason = apiResponse.Error
+
return
}
+
response.Result = true
response.Reason = "The request was partially processed from cache. Some data may be stale."
response.Response = responseJson
diff --git a/internal/api/models/states.go b/internal/api/models/states.go
index 881e637..7fa735f 100644
--- a/internal/api/models/states.go
+++ b/internal/api/models/states.go
@@ -12,7 +12,7 @@ type ChargeState struct {
NotEnoughPowerToHeat bool `json:"not_enough_power_to_heat"` //
MaxRangeChargeCounter int32 `json:"max_range_charge_counter"` //
FastChargerPresent bool `json:"fast_charger_present"` //
- FastChargerType string `json:"fast_charger_type"` //
+ FastChargerType *string `json:"fast_charger_type,omitempty"` //
BatteryRange float32 `json:"battery_range"` //
EstBatteryRange float32 `json:"est_battery_range"` //
IdealBatteryRange float32 `json:"ideal_battery_range"` //
@@ -51,8 +51,8 @@ type ChargeState struct {
ManagedChargingStartTime interface{} `json:"managed_charging_start_time"` //
ChargePortcoldWeatherMode bool `json:"charge_port_cold_weather_mode"` //
ChargePortColor string `json:"charge_port_color"` //
- ConnChargeCable string `json:"conn_charge_cable"` //
- FastChargerBrand string `json:"fast_charger_brand"` //
+ ConnChargeCable *string `json:"conn_charge_cable,omitempty"` //
+ FastChargerBrand *string `json:"fast_charger_brand,omitempty"` //
MinutesToFullCharge int32 `json:"minutes_to_full_charge"` //
}
diff --git a/internal/api/models/statesConverter.go b/internal/api/models/statesConverter.go
index c93e280..e0e077d 100644
--- a/internal/api/models/statesConverter.go
+++ b/internal/api/models/statesConverter.go
@@ -11,6 +11,8 @@ func flatten(s string) string {
return strings.ReplaceAll(s, ":{}", "")
}
+func strPtr(s string) *string { return &s }
+
func ChargeStateFromBle(VehicleData *carserver.VehicleData) ChargeState {
return ChargeState{
Timestamp: VehicleData.ChargeState.GetTimestamp().AsTime().Unix(),
@@ -21,11 +23,11 @@ func ChargeStateFromBle(VehicleData *carserver.VehicleData) ChargeState {
ChargeLimitSocMax: VehicleData.ChargeState.GetChargeLimitSocMax(),
MaxRangeChargeCounter: VehicleData.ChargeState.GetMaxRangeChargeCounter(),
FastChargerPresent: VehicleData.ChargeState.GetFastChargerPresent(),
- FastChargerType: flatten(VehicleData.ChargeState.GetFastChargerType().String()),
+ FastChargerType: strPtr(flatten(VehicleData.ChargeState.GetFastChargerType().String())),
BatteryRange: VehicleData.ChargeState.GetBatteryRange(),
EstBatteryRange: VehicleData.ChargeState.GetEstBatteryRange(),
IdealBatteryRange: VehicleData.ChargeState.GetIdealBatteryRange(),
- BatteryLevel: VehicleData.ChargeState.GetBatteryLevel(),
+ BatteryLevel: VehicleData.ChargeState.GetUsableBatteryLevel(), //VehicleData.ChargeState.GetBatteryLevel(),
UsableBatteryLevel: VehicleData.ChargeState.GetUsableBatteryLevel(),
ChargeEnergyAdded: VehicleData.ChargeState.GetChargeEnergyAdded(),
ChargeMilesAddedRated: VehicleData.ChargeState.GetChargeMilesAddedRated(),
@@ -59,8 +61,8 @@ func ChargeStateFromBle(VehicleData *carserver.VehicleData) ChargeState {
ManagedChargingStartTime: VehicleData.ChargeState.GetManagedChargingStartTime(),
ChargePortcoldWeatherMode: VehicleData.ChargeState.GetChargePortColdWeatherMode(),
ChargePortColor: flatten(VehicleData.ChargeState.GetChargePortColor().String()),
- ConnChargeCable: flatten(VehicleData.ChargeState.GetConnChargeCable().String()),
- FastChargerBrand: flatten(VehicleData.ChargeState.GetFastChargerBrand().String()),
+ ConnChargeCable: strPtr(flatten(VehicleData.ChargeState.GetConnChargeCable().String())),
+ FastChargerBrand: strPtr(flatten(VehicleData.ChargeState.GetFastChargerBrand().String())),
MinutesToFullCharge: VehicleData.ChargeState.GetMinutesToFullCharge(),
}
}