Skip to content

flushbug: 2 x Kostal Plenticore, BYD HVS, KSEM, go‐e Gemini, Renault Zoe, Home Assistant

docolli edited this page Mar 5, 2024 · 2 revisions

Hausinstallation

PV Anlage

Zwei Kostal Plenticore plus (5.5. und 4.2) mit 6,75 und 5,3 kWp

PV Batterie

BYD HVS 7.7 am Kostal Plenticore plus 5.5. Hybrid Umrichter

Energiemeter

Kostal Smart Energy Meter (KSEM) per Modbus RS485 und Ethernet angebunden

Wallbox

go-E Charger Gemini flex 22kW

E-Fahrzeug

Renault Zoe Gen1 40 kWh

EVCC Umgebung

  • EVCC läuft als Home Assistant Add-On auf einem Dell Thin Client mit HAOS.
  • Home Assistant wird zur Visualisierung der gesamten Stromverbraucher und Erzeuger im Haus verwendet (MQTT Anbindung EVCC-> Mosquito auf HA).
  • Eigene Implementierung der EVCC Modus-Umschaltung über go-E Button & MQTT (siehe)

Usecases

  • PV gesteuerte Ladung
  • Logging der Ladevorgänge
  • Ansprechende Visualisierung
  • Komfortable Weiterleitung der PV/Meter/Wallbox etc. Daten über MQTT an Home Assistant
  • Modbus Proxy zur Weiterleitung einiger KSEM Daten an Home Assistant (Benötigt für HA Energy Dashboard)

Config File

# open evcc at http://evcc.local:7070
network:
  schema: http
  host: evcc.local # .local suffix announces the hostname on MDNS
  port: 7070

log: info
levels:
  cache: error

# mqtt message broker
mqtt:
  broker: localhost:1883
  topic: evcc # root topic for publishing, set empty to disable publishing
  user: XXX
  password: YYY

interval: 15s # control cycle interval

meters:
- type: template
  template: kostal-plenticore 
  id: 71  
  host: 192.168.XX.ZY  
  port: 1502  
  usage: pv  
  modbus: tcpip  
  name: pv1
- type: template
  template: kostal-plenticore 
  id: 71  
  host: 192.168.XX.ZX  
  port: 1502  
  usage: pv  
  modbus: tcpip  
  name: pv2
- type: template
  template: kostal-plenticore 
  id: 71  
  host: 192.168.XX.ZY  
  port: 1502  
  usage: battery  
  modbus: tcpip  
  name: battery2
- type: template
  template: kostal-ksem 
  id: 71  
  host: 192.168.XX.ZZ  
  port: 502  
  usage: grid  
  modbus: tcpip  
  name: grid3

modbusproxy:
  - port: 5021
    uri: 192.168.XX.ZZ:502
    readonly: true
  
chargers:
- type: template
  template: go-e-gemini 
  host: 192.168.XX.YY  
  name: wallbox5

vehicles:
- name: ev4
  type: template
  template: renault 
  title: Zoe  
  user: XXXX
  password: YYYYY 
  vin: ZZZZ 
  capacity: 42  


loadpoints:
- title: Garage
  charger: wallbox5
  vehicle: ev4
  mode: now
  phases: 0
  mincurrent: 8
  maxcurrent: 32

site:
  title: XXXXX
  meters:
    grid: grid3
    pv:
    - pv1
    - pv2
    battery:
    - battery2
  residualPower: 100

tariffs:
  currency: EUR # (default EUR)
  grid:
    # static grid price
    type: fixed
    price: 0.28 # [currency]/kWh

  feedin:
    # rate for feeding excess (pv) energy to the grid
    type: fixed
    price: 0.08 # [currency]/kWh