pkuehnel / TeslaSolarCharger

A software to let your Tesla charge with solar energy ☀
GNU General Public License v3.0
135 stars 21 forks source link
awattar solar-energy tesla tibber

TeslaSolarCharger

Docker version Docker size Docker pulls edgeRelease

TeslaSolarCharger is a service to set one or multiple Teslas' charging current.

Table of Contents

How to install

You can either install the software in a Docker container or download the binaries and deploy it on any server. In June 2024, Tesla implemented rate limits to their API, so there is a BLE (Bluetooth Low Energy, implemented since Bluetooth Version 4.0) capable device needed near the car. You can find details on how to set up BLE here.

Docker compose

The easiest way to use TeslaSolarCharger is with Docker.

Depending on your system, you have to install Docker first. To do this on a Raspberry Pi (should be the same on standard Linux systems), you need to execute the following commands in your Terminal window:

  1. Install Docker
    curl -sSL https://get.docker.com | sh
  2. Add permissions to the pi user. If you have another username, update the command accordingly
    sudo usermod -aG docker pi
  3. Reboot your Raspberry Pi
  4. Test the Docker installation
    docker run hello-world

    If any issues occur, try to identify them using this more detailed instruction.

If you are using a Windows host, install the Software from here. Windows 11 is highly recommended. Select Linux Containers in the installation process. Note: The SMA plugin is not supported on Docker on Windows.

Setting up TeslaSolarCharger

To set up TeslaSolarCharger, you must create a docker-compose.yml (name is important!) file in a new directory.

docker-compose.yml content

The required content of your docker-compose.yml depends on your inverter. By default, TeslaSolarCharger can consume JSON/XML REST APIs, MQTT messages or Modbus TCP. To get the software running on SMA, SolarEdge or Solax based inverters, you can use specific plugins which create the required JSON API.

Content without using a plugin

Below you can see the content for your docker-compose.yml if you are not using any plugin. Note: I recommend changing as few things as possible on this file as this will increase the effort to set everything up but feel free to change the Timezone.

version: '3.3'

services:
  teslasolarcharger:
    image: pkuehnel/teslasolarcharger:latest
    container_name: teslasolarcharger
    logging:
        driver: "json-file"
        options:
            max-file: "10"
            max-size: "100m"
    restart: always
    environment:
#      - Serilog__MinimumLevel__Default=Verbose #uncomment this line and recreate container with docker compose up -d for more detailed logs
      - TZ=Europe/Berlin ##You can change your Timezone here
    ports:
      - 7190:80
    volumes:
      - teslasolarcharger-configs:/app/configs

volumes:
  teslasolarcharger-configs:
Content using SMA plugin

Docker version Docker size Docker pulls

The SMA plugin is used to access your EnergyMeter (or Sunny Home Manager 2.0) values. To use the plugin, add these lines before the volumes section of your docker-compose.yml. Note: The SMA plugin is not supported on Docker on Windows.

  smaplugin:
    image: pkuehnel/teslasolarchargersmaplugin:latest
    container_name: teslasolarcharger_smaplugin
    logging:
        driver: "json-file"
        options:
            max-file: "5"
            max-size: "10m"
    restart: always
    network_mode: host
    environment:
      - ASPNETCORE_URLS=http://+:7192

You can also copy the complete content from here:

Complete file using SMA plugin ```yaml version: '3.3' services: teslasolarcharger: image: pkuehnel/teslasolarcharger:latest container_name: teslasolarcharger logging: driver: "json-file" options: max-file: "10" max-size: "100m" restart: always environment: # - Serilog__MinimumLevel__Default=Verbose #uncomment this line and recreate container with docker compose up -d for more detailed logs - TZ=Europe/Berlin ##You can change your Timezone here ports: - 7190:80 volumes: - teslasolarcharger-configs:/app/configs smaplugin: image: pkuehnel/teslasolarchargersmaplugin:latest container_name: teslasolarcharger_smaplugin logging: driver: "json-file" options: max-file: "5" max-size: "10m" restart: always network_mode: host environment: - ASPNETCORE_URLS=http://+:7192 volumes: teslasolarcharger-configs: ```
Content using SolarEdge plugin

Docker version Docker size Docker pulls

The SolarEdge Plugin uses the cloud API, which is limited to 300 which is reset after 15 minutes. When the limit is reached the SolarEdge API does not gather any new values. This results in TSC displaying 0 grid and home battery power until 15 minutes are over.

To use the plugin, just add these lines before the volumes section of your docker-compose.yml. Note: You have to change your site ID and your API key in the CloudUrl environment variable

  solaredgeplugin:
    image: pkuehnel/teslasolarchargersolaredgeplugin:latest
    container_name: teslasolarcharger_solaredgeplugin
    logging:
        driver: "json-file"
        options:
            max-file: "5"
            max-size: "10m"
    restart: always
    environment:
      - CloudUrl=https://monitoringapi.solaredge.com/site/1561056/currentPowerFlow.json?api_key=asdfasdfasdfasdfasdfasdf& ##Change your site ID and API Key here
    ports:
      - 7193:80

You can also copy the complete content from here:

Complete file using SolarEdge plugin ```yaml version: '3.3' services: teslasolarcharger: image: pkuehnel/teslasolarcharger:latest container_name: teslasolarcharger logging: driver: "json-file" options: max-file: "10" max-size: "100m" restart: always environment: # - Serilog__MinimumLevel__Default=Verbose #uncomment this line and recreate container with docker compose up -d for more detailed logs - TZ=Europe/Berlin ##You can change your Timezone here ports: - 7190:80 volumes: - teslasolarcharger-configs:/app/configs solaredgeplugin: image: pkuehnel/teslasolarchargersolaredgeplugin:latest container_name: teslasolarcharger_solaredgeplugin logging: driver: "json-file" options: max-file: "5" max-size: "10m" restart: always environment: - CloudUrl=https://monitoringapi.solaredge.com/site/1561056/currentPowerFlow.json?api_key=asdfasdfasdfasdfasdfasdf& ##Change your site ID and API Key here ports: - 7193:80 volumes: teslasolarcharger-configs: ```
Content using Solax plugin

Docker version Docker size Docker pulls

To use the Solax plugin, just add these lines before the volumes section of your docker-compose.yml. Note: You have to specify your solar system's IP address and password.

  solaxplugin:
    image: pkuehnel/teslasolarchargersolaxplugin:latest
    container_name: teslasolarcharger_solaxplugin
    logging:
        driver: "json-file"
        options:
            max-file: "5"
            max-size: "10m"
    restart: always
    environment:
      - SolarSystemBaseUrl=http://192.168.1.50 ##Change IP Address to your solar system
      - SolarSystemPassword=AD5TSVGR51 ##Change this to the password of your solar system (wifi dongle serial number)
    ports:
      - 7194:80

You can also copy the complete content from here:

Complete file using Solax plugin ```yaml version: '3.3' services: teslasolarcharger: image: pkuehnel/teslasolarcharger:latest container_name: teslasolarcharger logging: driver: "json-file" options: max-file: "10" max-size: "100m" restart: always environment: # - Serilog__MinimumLevel__Default=Verbose #uncomment this line and recreate container with docker compose up -d for more detailed logs - TZ=Europe/Berlin ##You can change your Timezone here ports: - 7190:80 volumes: - teslasolarcharger-configs:/app/configs solaxplugin: image: pkuehnel/teslasolarchargersolaxplugin:latest container_name: teslasolarcharger_solaxplugin logging: driver: "json-file" options: max-file: "5" max-size: "10m" restart: always environment: - SolarSystemBaseUrl=http://192.168.1.50 ##Change IP Address to your solar system - SolarSystemPassword=AD5TSVGR51 ##Change this to the password of your solar system (wifi dongle serial number) ports: - 7194:80 volumes: teslasolarcharger-configs: ```

First startup of the application

  1. Move to your above created directory with your docker-compose.yml.
  2. Start all containers using the command docker compose up -d.
  3. Open http://your-ip-address:7190
  4. Go to Base Configuration (if you are on a mobile device, it is behind the menu button).
  5. Generate a Fleet API token
  6. Again go to Base Configuration
  7. Use the map to select your home area. This is the area where TSC will start charging your car based on solar power.
  8. Click on Save at the bottom of the page.
  9. Go to Car Settings and reload the page until the message Restart TSC to add new cars is displayed.
  10. Restart the container with docker compose restart teslasolarcharger (you need to be in the directory of your docker-compose.yml).
  11. Wake up the car by opening a car door. Now the SoC values, car name,... should be displayed on the Overview page: image
  12. If there are any messages displayed below your car name, just follow the instructions.

If you only want to charge based on Spot Price, you are done now.

Setting up solar power values

To let the TeslaSolarCharger know how much power there is to charge the car, you need to set TSC up to gather the solar values

REST values including vendor specific plugins

To set up a REST API click on Add new REST source and fill out the fields.

If you are using a plugin, you need to use the following values:

Modbus values

Fill out the values according to the documentation of your inverter:

JSON Path

If you have the following JSON result:

{
  "request": {
    "method": "get",
    "key": "asdf"
  },
  "code": 0,
  "type": "call",
  "data": {
    "value": 14
  }
}

You can use $.data.value as Json Pattern.

XML Path

If your energy monitoring device or inverter has no JSON, but an XML API, use the following instructions: Given an API endpoint http://192.168.xxx.xxx/measurements.xml which returns the following XML:

<?xml version="1.0" encoding="UTF-8"?>
<Device Name="PIKO 4.6-2 MP plus" Type="Inverter" Platform="Net16" HmiPlatform="HMI17" NominalPower="4600" UserPowerLimit="nan" CountryPowerLimit="nan" Serial="XXXXXXXXXXXXXXXXXXXX" OEMSerial="XXXXXXXX" BusAddress="1" NetBiosName="XXXXXXXXXXXXXXX" WebPortal="PIKO Solar Portal" ManufacturerURL="kostal-solar-electric.com" IpAddress="192.168.XXX.XXX" DateTime="2022-06-08T19:33:25" MilliSeconds="806">
  <Measurements>
    <Measurement Value="231.3" Unit="V" Type="AC_Voltage"/>
    <Measurement Value="1.132" Unit="A" Type="AC_Current"/>
    <Measurement Value="256.1" Unit="W" Type="AC_Power"/>
    <Measurement Value="264.3" Unit="W" Type="AC_Power_fast"/>
    <Measurement Value="49.992" Unit="Hz" Type="AC_Frequency"/>
    <Measurement Value="474.2" Unit="V" Type="DC_Voltage"/>
    <Measurement Value="0.594" Unit="A" Type="DC_Current"/>
    <Measurement Value="473.5" Unit="V" Type="LINK_Voltage"/>
    <Measurement Value="18.7" Unit="W" Type="GridPower"/>
    <Measurement Value="0.0" Unit="W" Type="GridConsumedPower"/>
    <Measurement Value="18.7" Unit="W" Type="GridInjectedPower"/>
    <Measurement Value="237.3" Unit="W" Type="OwnConsumedPower"/>
    <Measurement Value="100.0" Unit="%" Type="Derating"/>
  </Measurements>
</Device>

Grid Power: Assuming the Measurement node with Type GridPower is the power your house feeds to the grid, you need the following values in your Base configuration:

- Url=http://192.168.xxx.xxx/measurements.xml
- CurrentPowerToGridXmlPattern=Device/Measurements/Measurement
- CurrentPowerToGridXmlAttributeHeaderName=Type
- CurrentPowerToGridXmlAttributeHeaderValue=GridPower
- CurrentPowerToGridXmlAttributeValueName=Value

Inverter Power: Assuming the Measurement node with Type AC_Power is the power your inverter is currently feeding, you can use the following values in your Base configuration:

- Url=http://192.168.xxx.xxx/measurements.xml
- CurrentInverterPowerXmlPattern=Device/Measurements/Measurement
- CurrentInverterPowerAttributeHeaderName=Type
- CurrentInverterPowerAttributeHeaderValue=AC_Power
- CurrentInverterPowerAttributeValueName=Value

Correction Factors

The correction factor is used to multiply the input value so that the results correspond with what TeslaSolarCharger expects.

Input Expected Value
Inverter Power A measurement of solar power generated as a positive number in Watts (W)
Grid Power A measurement of grid power export/ import in Watts (W). A export to the grid should be positive and an import from the grid should be negative.
Home Battery Power A measurement of home battery power charge/ discharge in Watts (W). If the battery is charging, this should be positive and if it is discharging this should be negative.
Home Battery SoC A measurement of the percentage charge of your home battery from 0-100%

You can use the correction factors to scale/ correct these values as appropriate. For example:

Install and setup BLE API

To go around Teslas API limitations, you can use Bluetooth (BLE) to control your car. You can do this either by using the same device as your TSC is running on, or by using a separate device. Note: The device needs to be placed near the car. Even if it is working when being a few meters away or in different rooms, I can guarantee you, that you will have issues sooner or later. The device needs to be in one room with the car without any walls between them.

Confirmed working hardware:

Install BLE API on the same device as TSC

To set up the BLE API on the same device as your TSC is running on, you need to add the following lines to your docker-compose.yml:

services:
#here are all the other services like TeslaMate, TSC, etc.
  bleapi:
    image: ghcr.io/pkuehnel/teslasolarchargerbleapi:latest
    container_name: TeslaSolarChargerBleApi
    privileged: true
    restart: unless-stopped
    network_mode: host
    environment:
      - ASPNETCORE_URLS=http://+:7210
    volumes:
      - tscbleapi:/externalFiles
      - /var/run/dbus:/var/run/dbus

volumes:
  #here are all the other volumes like teslamate-db, teslamate-grafana-data, etc.
  tscbleapi:

You can also copy the complete content from here:

Complete file including BLE API ```yaml version: '3.3' services: teslasolarcharger: image: pkuehnel/teslasolarcharger:latest container_name: teslasolarcharger logging: driver: "json-file" options: max-file: "10" max-size: "100m" restart: always environment: # - Serilog__MinimumLevel__Default=Verbose #uncomment this line and recreate container with docker compose up -d for more detailed logs - TZ=Europe/Berlin ##You can change your Timezone here ports: - 7190:80 volumes: - teslasolarcharger-configs:/app/configs bleapi: image: ghcr.io/pkuehnel/teslasolarchargerbleapi:latest container_name: TeslaSolarChargerBleApi privileged: true restart: unless-stopped network_mode: host environment: - ASPNETCORE_URLS=http://+:7210 volumes: - tscbleapi:/externalFiles - /var/run/dbus:/var/run/dbus volumes: teslasolarcharger-configs: tscbleapi: ```
Install BLE API on a separate device

To set up a separate device for the BLE API, you need to install Docker on the device, like described here. Thereafter, you can use the following docker-compose.yml and start the container with docker compose up -d:

services:
  bleapi:
    image: ghcr.io/pkuehnel/teslasolarchargerbleapi:latest
    container_name: TeslaSolarChargerBleApi
    privileged: true
    restart: unless-stopped
    network_mode: host
    environment:
      - ASPNETCORE_URLS=http://+:7210
    volumes:
      - tscbleapi:/externalFiles
      - /var/run/dbus:/var/run/dbus

volumes:
  tscbleapi:
Setup BLE (same device and separate device)

After starting the BLE API, you need to add the BLE API Base URL to your TeslaSolarCharger configuration. The URL is http://<IP of device with BLE API running>:7210/

Now you can pair each car by going to the Car Settings enable "Use BLE", click Save and then click on Pair Car. Note: It could take up to three tries to pair the car. After you get a message that pairing succeeded, you can test the API by clicking on the Set to 7A. Note: The car needs to be awake during the pairing and test process.

Often used optional settings

When you are at this point, your car connected to any charging cable in your set home area should start charging based on solar power. But there are a few additional settings that are maybe helpful for your environment:

Power Buffer

If you set PowerBuffer to a value different from 0, the system uses the value as an offset. E.g., If you set 1000, the car's current is reduced as long as less than 1000 Watt power goes to the grid.

Home Battery

To configure your home battery, you need to add the following settings:

As long as your home battery's SoC is below the set value, the configured charging power is reserved for the home battery. E.g. if you set Home Battery Minimum SoC to 80% and Home Battery Charging Power to 5000W TSC lets the home battery charge with 5000W as long as its SoC is below 80%.

Note: If your battery is discharging, the power should be displayed in red. If the battery is charging, the power should be displayed in green. If this is the other way around, you must update the Operator to be Minus.

Telegram integration

In this section, you learn how to create the Telegram Bot Key and where you get the Telegram ChannelID from:

Botfather

newbot

BotToken

userinfobot

UserIDVonBot

How to use

After setting everything up, you can use the software via http://your-ip-address:7190.

Charge Modes

Currently, there are four different charge modes available:

  1. PV only: Only solar energy is used to charge. You can set a SOC level that should be reached at the specified date and time (if charge every day is enabled, the car charges to that SoC every day, not only once). If solar power is insufficient to reach the set soc level in time, the car starts charging at full speed. Note: To let this work, specify usable kWh in the car settings section.
  2. Maximum Power: The car charges with the maximum available power
  3. Min SoC + PV: If plugged in, the car starts charging with maximum power until the set Min SoC is reached. Thereafter, only PV Power is used to charge the car.
  4. Spot Price + PV: You can set a Min Soc, which should be reached at a specific date and time (if charge every day is enabled, the car charges to that SoC every day, not only once). The charge times are then planned to charge at the cheapest possible time. This is especially useful if you have hourly electricity prices, like with Tibber or aWATTar. Note: The car will still charge based on Solar energy if available, and you need to enable Use Spot Price in the Charge Prices settings for correct charge price calculation.
  5. TSC Disabled: TSC leaves this car as is and does not update the charging speed etc.

Generate logfiles

To generate logfiles, you must write each container's logs to a separate logfile. Note: To create a more detailed logfile, you must add - Serilog__MinimumLevel__Default=Verbose as environment variable. The commands if you used the docker-compose.yml files from above:
For the main TeslaSolarCharger container:

docker logs teslasolarcharger > teslasolarcharger.log

For the SmaPlugin:

docker logs teslasolarcharger_smaplugin > teslasolarcharger_smaplugin.log

For the SolaredgePlugin:

docker logs teslasolarcharger_solaredgeplugin > teslasolarcharger_solaredgeplugin.log

For the ModbusPlugin:

docker logs teslasolarcharger_modbusplugin > teslasolarcharger_modbusplugin.log

If you get an error like Error: No such container: you can look up the containernames with

docker ps

Privacy notes

As the new Tesla Fleet API requires a domain and external Token creation from version 2.23.0 onwards, TSC transfers some data to the owner of this repository. By using this software, you accept the transfer of this data. As this is open source, you can see which data is transferred. For now (4th July 2024), the following data is transferred: