Themabewertung:
  • 0 Bewertung(en) - 0 im Durchschnitt
  • 1
  • 2
  • 3
  • 4
  • 5
go-e Wallbox
#6
Hi Sergej,

hier mal mein Auszug aus der evcc.yaml

Code:
uri: 0.0.0.0:7070 # uri for ui
interval: 10s # control cycle interval

# sponsor token enables optional features (request at https://cloud.evcc.io)
# sponsortoken:

# log settings
log: error
levels:
 core: debug
 lp-1: debug
 lp-2: debug

# mqtt message broker
mqtt:
 broker: x.x.x.x:1883
 topic: evcc # root topic for publishing, set empty to disable
 # user:
 # password:

# influx database (v1)
influx:
 url: http://x.x.x.x:8086
 database: xxx
 user: xxx
 password: xxx

# push messages
messaging:
 events:
   start: # charge start event
     title: Charge started
     msg: Started charging in "${mode}" mode
   stop: # charge stop event
     title: Charge finished
     msg: "Finished charging ${chargedEnergy:%.1fk}kWh in ${chargeDuration}."
   connect: # vehicle connect event
     title: Car connected
     msg: "Car connected at ${pvPower:%.1fk}kW PV"
   disconnect: # vehicle connected event
     title: Car disconnected
     msg: "Car disconnected after ${connectedDuration}"
 services:
 - type: pushover
   app: xxx # app id
   recipients:
   - xxx # list of recipient ids

# meters
meters:
- name: e3dc-battery
 type: custom
 power:
   type: modbus
   uri: x.x.x.x:502
   id: 1
   register: # manual register configuration
     address: 40069
     type: holding
     decode: int32s
   scale: -1 # reverse direction
 soc:
   type: modbus
   uri: x.x.x.x:502
   id: 1 # ModBus slave id
   register: # manual register configuration
     address: 40082
     type: holding
     decode: uint16
- name: e3dc-grid
 type: custom
 power:
   type: modbus
   uri: x.x.x.x:502 # IP address of E3/DC device, configured port (default is 502)
   id: 1 # Configured Modbus Device ID ("Gerät")
   register: # manual register configuration
     address: 40073 # (40074 - 1) "Leistung am Netzübergabepunkt in Watt (negative Werte = Einspeisung)"
     type: holding
     decode: int32s
- name: e3dc-pv
 type: custom
 power:
   type: modbus
   uri: x.x.x.x:502 # IP address of E3/DC device, configured port (default is 502)
   id: 1 # Configured Modbus Device ID ("Gerät")
   register: # manual register configuration
     address: 40067 # (40068 - 1) "Photovoltaik-Leistung in Watt"
     type: holding
     decode: int32s
#   scale: -1 # reverse direction, because the pv meter is expected to deliver negative values for export and should not return positive values.

chargers:
- name: go-e
 type: go-e # go-eCharger
 uri: http://x.x.x.x # either go-e local address
 # token: 4711c
 # or go-e cloud API token
 cache: 10s # go-e cloud API cache duration


vehicles:
- name: renault
  type: renault
  title: Zoe
  capacity: 52 # kWh
  user: xxx # user
  password: xxx # password
  region: de_DE # gigya region
  vin: xxx
  cache: 5m

site:
 title: xxx# display name for UI
 meters:
   grid: e3dc-grid # grid meter
   pv: e3dc-pv # pv meter
   battery: e3dc-battery # battery meter
 prioritySoC: 80 # give home battery priority up to this soc (0 to disable)

loadpoints:
- title: Carport # display name for UI
 charger: go-e # charger
 meters:
#    charge: charge # charge meter
 vehicle: renault
 mode: pv
 soc:
   # polling defines usage of the vehicle APIs
   # Modifying the default settings it NOT recommended. It MAY deplete your vehicle's battery
   # or lead to vehicle manufacturer banning you from API use. USE AT YOUR OWN RISK.
   poll:
     # poll mode defines under which condition the vehicle API is called:
     #   charging: update vehicle ONLY when charging (this is the recommended default)
     #   connected: update vehicle when connected (not only charging), interval defines how often
     #   always: always update vehicle regardless of connection state, interval defines how often
     mode: charging
     # poll interval defines how often the vehicle API may be polled if NOT charging
     interval: 60m
   min: 0 # immediately charge to 0% regardless of mode unless "off" (disabled)
   target: 90 # always charge to 100%
   estimate: false # set true to interpolate between api updates
 onDisconnect:
   mode: pv # switch back to pv mode
   targetSoC: 90 # charge fully
 phases: 1 # ev phases (default 3)
# sensitivity: 1 # current raise/lower step size (default 10A)
 enable: # pv mode enable behavior
   delay: 1m # threshold must be exceeded for this long
   threshold: 0 # minimum export power (W). If zero, export must exceeds minimum charge power to enable
 disable: # pv mode disable behavior
   delay: 5m # threshold must be exceeded for this long
   threshold: 200 # maximum import power (W)
 guardduration: 10m # switch charger contactor not more often than this (default 10m)
 mincurrent: 8 # minimum charge current (default 6A)
 maxcurrent: 15 # maximum charge current (default 16A)
bei mir läuft das ganze in einem docker-container.
Ich hoffe es hilft dir. 
PS: ich lade nur 1 phasig, das müsstest du noch umstellen wenn du 3 phasig laden willst.

Gruß
Mario


Nachrichten in diesem Thema
go-e Wallbox - von sklunk - 07.11.2021, 19:42
RE: go-e Wallbox - von DRAGandDROP - 08.11.2021, 09:16
RE: go-e Wallbox - von sklunk - 08.11.2021, 11:42
RE: go-e Wallbox - von DRAGandDROP - 09.11.2021, 09:17
RE: go-e Wallbox - von sklunk - 09.11.2021, 20:31
RE: go-e Wallbox - von DRAGandDROP - 11.11.2021, 21:09
RE: go-e Wallbox - von sklunk - 15.11.2021, 10:06
RE: go-e Wallbox - von Nerdster02 - 25.02.2023, 02:00

Möglicherweise verwandte Themen...
Thema Verfasser Antworten Ansichten Letzter Beitrag
  Wallbox loggt Ladevorgänge nicht / nur zum Teil sanya 15 6.653 16.01.2023, 16:45
Letzter Beitrag: sanya
  ELLI Charger Connect (Wallbox von VW) H.G. 2 2.257 24.07.2022, 09:09
Letzter Beitrag: pinpong
  Wallbox "Juice Charger me" in MyGekko Slide 2 einbinden Maniac2002 1 2.243 16.09.2021, 11:09
Letzter Beitrag: finnerhofer
  KEBA P30C Wallbox und myGekko santos 9 7.620 29.03.2021, 17:35
Letzter Beitrag: oli_p1974
  Welche Wallbox? sanya 2 3.143 16.02.2021, 10:35
Letzter Beitrag: sanya

Gehe zu:


Benutzer, die gerade dieses Thema anschauen:
1 Gast/Gäste