evcc-io / evcc

Sonne tanken ☀️🚘
https://evcc.io
MIT License
3.54k stars 654 forks source link

Wallbox bricht ständig das Laden ab. Wallbox Go-e: charger out of sync: expected enabled, got disabled #12105

Closed Juppme closed 9 months ago

Juppme commented 9 months ago

Describe the bug

Ich weiß leider nicht mehr weiter. Der Go-E bricht ständig das laden ab. Fehlermeldung: Wallbox Go-e: charger out of sync: expected enabled, got disabled Wlanverbindung ist stark und stabil. Bin leider total am verzweifeln. Der Ladevorgang dauert jetzt statt ca 3 h bis zu 6 h und ist bestimmt auch nicht gut für den Akku.

Problem ist erst seit 2-3 Wochen.

Steps to reproduce

  1. Laden mit der Funktion "Schnell"
  2. ...

Configuration details

network:
  # schema is the HTTP schema
  # setting to `https` does not enable https, it only changes the way URLs are generated
  schema: https
  # host is the hostname or IP address
  # if the host name contains a `.local` suffix, the name will be announced on MDNS
  # docker: MDNS announcements don't work. host must be set to the docker host's name.
  host: 192.168.100.138
  # port is the listening port for UI and api
  # evcc will listen on all available interfaces
  port: 7070

interval: 55s # control cycle interval

# database configuration for persisting charge sessions and settings
# database:
#   type: sqlite
#   dsn: <path-to-db-file>

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

# telemetry enables aggregated statistics
#
# Telemetry allows collecting usage data (grid and green energy, charge power).
# Data is aggregated, no individual charging sessions are tracked. The collected,
# anonymous data can be retrieved using https://api.evcc.io.
#
# See https://github.com/evcc-io/evcc/pull/4343 or details.
#
# For time being, this is only available to sponsors, hence data is associated with
# the sponsor token's identity.
#
# telemetry: true

# log settings
log: info
levels:
  site: debug
  lp-1: debug
  lp-2: debug
  cache: error
  db: error

# modbus proxy for allowing external programs to reuse the evcc modbus connection
# each entry will start a proxy instance at the given port speaking Modbus TCP and
# relaying to the given modbus downstream device (either TCP or RTU, RS485 or TCP)
modbusproxy:
  #  - port: 5200
  #    uri: solar-edge:502
  #    # rtu: true
  #    # readonly: true

# meter definitions
# name can be freely chosen and is used as reference when assigning meters to site and loadpoints
# for documentation see https://docs.evcc.io/docs/devices/meters
meters:
  - name: my_pv
    type: template
    template: shelly-3em
    usage: pv
    host: 192.168.100.223 # IP-Adresse oder Hostname

  - name: my_grid
    type: template
    template: shelly-pro-3em
    usage: grid
    host: 192.168.100.221 # IP-Adresse oder Hostname
    user: XXXXXXXX@gmx.de# Benutzerkonto (bspw. E-Mail Adresse, User Id, etc.) (Optional)
    password: XXXXXXXX # Passwort des Benutzerkontos (bei führenden Nullen bitte in einfache Hochkommata setzen) (Optional)

# charger definitions
# name can be freely chosen and is used as reference when assigning charger to vehicle
# for documentation see https://docs.evcc.io/docs/devices/chargers
chargers:
  - name: my_charger
    type: template
    template: go-e-v3
    host: 192.168.100.205 # IP-Adresse oder Hostname

# vehicle definitions
# name can be freely chosen and is used as reference when assigning vehicle to loadpoint
# for documentation see https://docs.evcc.io/docs/devices/vehicles
vehicles:
  - name: my_car
    type: template
    template: id
    title: ID4_PRO  # Wird in der Benutzeroberfläche angezeigt (Optional)
    user: XXXXXXXX@gmx.de # Benutzerkonto (bspw. E-Mail Adresse, User Id, etc.)
    password: XXXXXXXX # Passwort des Benutzerkontos (bei führenden Nullen bitte in einfache Hochkommata setzen)
    vin: WVGZZZE2ZPE025130 # Erforderlich, wenn mehrere Fahrzeuge des Herstellers vorhanden sind (Optional)
    capacity: 77 # Akkukapazität in kWh (Optional)

  - name: my_car2
    type: template
    template: audi
    title: AudiA3 # Wird in der Benutzeroberfläche angezeigt (Optional)
    user: XXXXXXXXX@gmx.de # Benutzerkonto (bspw. E-Mail Adresse, User Id, etc.)
    password: XXXXXXX # Passwort des Benutzerkontos (bei führenden Nullen bitte in einfache Hochkommata setzen)
   # vin: WAUZZZ... # Erforderlich, wenn mehrere Fahrzeuge des Herstellers vorhanden sind (Optional)
    capacity: 13 # Akkukapazität in kWh (Optional)

# site describes the EVU connection, PV and home battery
site:
  title: Dahaam # display name for UI
  meters:
    grid: my_grid # grid meter
    pv: my_pv
      #- pv # list of pv inverters/ meters
    battery:
      #- battery # list of battery meters
    # aux: my_Heizung #
     # - aux # list of auxiliary meters for adjusting grid operating point
  residualPower: 0 # additional household usage margin
  # prioritySoc: 0 # give home battery priority up to this soc (empty to disable)
  # bufferSoc: 0 # continue charging on battery above soc (0 to disable)
  # bufferStartSoc: 0 # start charging on battery above soc (0 to disable)
  maxGridSupplyWhileBatteryCharging: 0 # ignore battery charging if AC consumption is above this value
  # smartCostLimit: 0 # set cost limit for automatic charging in PV mode

# loadpoint describes the charger, charge meter and connected vehicle
loadpoints:
  - title: Wallbox Go-e # display name for UI
    charger: my_charger # Wallbox Referenz
    vehicle: my_car2 # Referenz auf Standardfahrzeug
    mode: pv # charge mode (off, now, minpv, pv)
    phases: 0 
    maxcurrent: 16

    # remaining settings are experts-only and best left at default values
    priority: 0 # relative priority for concurrent charging in PV mode with multiple loadpoints (higher values have higher priority)
    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 (only supported for single vehicle)
        mode: charging
        # poll interval defines how often the vehicle API may be polled if NOT charging
        interval: 60m
      estimate: true # set false to disable interpolating between api updates (not recommended)
    enable: # pv mode enable behavior
      delay: 1m # threshold must be exceeded for this long
      threshold: 0 # grid power threshold (in Watts, negative=export). If zero, export must exceed minimum charge power to enable
    disable: # pv mode disable behavior
      delay: 3m # threshold must be exceeded for this long
      threshold: 0 # maximum import power (W)
    guardDuration: 5m # switch charger contactor not more often than this (default 5m)

# tariffs are the fixed or variable tariffs
tariffs:
  currency: EUR # three letter ISO-4217 currency code (default EUR)
  grid:
    # either static grid price (or price zones)
    type: fixed
    price: 0.263 # EUR/kWh
    zones:
      - days: Mo-Fr
        hours: 2-5
        price: 0.263 # EUR/kWh
      - days: Sa,So
        price: 0.263 # EUR/kWh

    # or variable tariffs
    # type: tibber
    # token: "476c477d8a039529478ebd690d35ddd80e3308ffc49b59c65b142321aee963a4" # access token
    # homeid: "cc83e83e-8cbf-4595-9bf7-c3cf192f7d9c" # optional if multiple homes associated to account

    # type: awattar
    # region: de # optional, choose at for Austria
    # charges: # optional, additional charges per kWh
    # tax: # optional, additional tax (0.1 for 10%)

    # type: elering # Nordpool
    # region: ee # or lt, lv, fi
    # charges: # optional, additional charges per kWh
    # tax: # optional, additional tax (0.1 for 10%)
  feedin:
    # rate for feeding excess (pv) energy to the grid
    type: fixed
    price: 0.1288 # EUR/kWh
  co2:
    # co2 tariff provides co2 intensity forecast and is for co2-optimized target charging if no variable grid tariff is specified
    # type: grünstromindex # GrünStromIndex (Germany only)
    # zip: <zip>

    # type: electricitymaps # https://app.electricitymaps.com/map
    # uri: <uri>
    # token: <token>
    # zone: DE

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

# influx database
influx:
  # url: http://localhost:8086
  # database: evcc
  # user:
  # password:

# eebus credentials
eebus:
  # uri: # :4712
  # interfaces: # limit eebus to specific network interfaces
  # - en0
  # certificate: # local signed certificate, required, can be generated via `evcc eebus-cert`
  #   public: # public key
  #   private: # private key

# 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}
    soc: # vehicle soc update event
      title: Soc updated
      msg: Battery charged to ${vehicleSoc:%.0f}%
    guest: # vehicle could not be identified
      title: Unknown vehicle
      msg: Unknown vehicle, guest connected?
  services:
  # - type: pushover
  #   app: # app id
  #   recipients:
  #   - # list of recipient ids
  # - type: telegram
  #   token: # bot id
  #   chats:
  #   - # list of chat ids
  # - type: email
  #   uri: smtp://<user>:<password>@<host>:<port>/?fromAddress=<from>&toAddresses=<to>
  # - type: ntfy
  #   uri: https://<host>/<topics>
  #   priority: <priority>
  #   tags: <tags>

Log details

[lp-1  ] DEBUG 2024/02/06 17:46:02 pv timer elapse
[lp-1  ] DEBUG 2024/02/06 17:46:02 pv timer inactive
[lp-1  ] DEBUG 2024/02/06 17:46:02 charger: guard elapse
[lp-1  ] DEBUG 2024/02/06 17:46:02 guard timer inactive
[lp-1  ] DEBUG 2024/02/06 17:46:02 charge total import: 1330.959kWh
[lp-1  ] DEBUG 2024/02/06 17:46:02 vehicle status: B
[lp-1  ] DEBUG 2024/02/06 17:46:02 vehicle soc: 95%
[lp-1  ] DEBUG 2024/02/06 17:46:02 vehicle soc limit: 0%
[lp-1  ] DEBUG 2024/02/06 17:46:02 vehicle range: 48km
[lp-1  ] DEBUG 2024/02/06 17:46:02 switched phases: 3p
[lp-1  ] DEBUG 2024/02/06 17:46:02 max charge current: 16A
[lp-1  ] DEBUG 2024/02/06 17:46:02 charger enable
[lp-1  ] DEBUG 2024/02/06 17:46:02 wake-up timer: start
[site  ] DEBUG 2024/02/06 17:46:54 ----
[lp-1  ] DEBUG 2024/02/06 17:46:54 charge power: 0W
[site  ] DEBUG 2024/02/06 17:46:54 pv power: 0W
[site  ] DEBUG 2024/02/06 17:46:54 grid power: 4873W
[site  ] DEBUG 2024/02/06 17:46:54 grid powers: [425 4196 251]W
[site  ] DEBUG 2024/02/06 17:46:54 grid currents: [3.24 18.8 2.24]A
[site  ] DEBUG 2024/02/06 17:46:54 site power: 4873W
[lp-1  ] DEBUG 2024/02/06 17:46:54 vehicle odometer: 7222km
[lp-1  ] DEBUG 2024/02/06 17:46:54 charge currents: [0 0 0]A
[lp-1  ] DEBUG 2024/02/06 17:46:54 charge total import: 1330.995kWh
[lp-1  ] DEBUG 2024/02/06 17:46:54 charger status: B
[lp-1  ] DEBUG 2024/02/06 17:46:54 charger: guard elapse
[lp-1  ] DEBUG 2024/02/06 17:46:54 guard timer inactive
[lp-1  ] DEBUG 2024/02/06 17:46:54 wake-up vehicle
[lp-1  ] DEBUG 2024/02/06 17:47:22 set charge mode: off
[lp-1  ] DEBUG 2024/02/06 17:47:22 pv timer reset
[lp-1  ] DEBUG 2024/02/06 17:47:22 pv timer inactive
[site  ] DEBUG 2024/02/06 17:47:22 ----
[lp-1  ] DEBUG 2024/02/06 17:47:22 charge power: 0W
[site  ] DEBUG 2024/02/06 17:47:23 pv power: 0W
[site  ] DEBUG 2024/02/06 17:47:23 grid power: 2711W
[site  ] DEBUG 2024/02/06 17:47:23 grid powers: [412 2062 237]W
[site  ] DEBUG 2024/02/06 17:47:23 grid currents: [3.2 9.48 2.19]A
[site  ] DEBUG 2024/02/06 17:47:23 site power: 2711W
[lp-1  ] DEBUG 2024/02/06 17:47:23 charge currents: [0 0 0]A
[lp-1  ] DEBUG 2024/02/06 17:47:23 charge total import: 1330.995kWh
[lp-1  ] DEBUG 2024/02/06 17:47:23 charger status: B
[lp-1  ] WARN 2024/02/06 17:47:23 charger out of sync: expected enabled, got disabled
[lp-1  ] DEBUG 2024/02/06 17:47:28 set charge mode: now
[site  ] DEBUG 2024/02/06 17:47:28 ----
[lp-1  ] DEBUG 2024/02/06 17:47:28 charge power: 0W
[site  ] DEBUG 2024/02/06 17:47:28 pv power: 0W
[site  ] DEBUG 2024/02/06 17:47:28 grid power: 2761W
[site  ] DEBUG 2024/02/06 17:47:28 grid powers: [412 2073 276]W
[site  ] DEBUG 2024/02/06 17:47:28 grid currents: [3.21 9.54 2.29]A
[site  ] DEBUG 2024/02/06 17:47:28 site power: 2761W
[lp-1  ] DEBUG 2024/02/06 17:47:28 charge currents: [0 0 0]A
[lp-1  ] DEBUG 2024/02/06 17:47:28 charge total import: 1330.995kWh
[lp-1  ] DEBUG 2024/02/06 17:47:28 charger status: B
[lp-1  ] DEBUG 2024/02/06 17:47:28 charger enable
[lp-1  ] DEBUG 2024/02/06 17:47:28 wake-up timer: start
[site  ] DEBUG 2024/02/06 17:47:49 ----
[lp-1  ] DEBUG 2024/02/06 17:47:49 charge power: 3098W
[site  ] DEBUG 2024/02/06 17:47:49 pv power: 2W
[site  ] DEBUG 2024/02/06 17:47:49 grid power: 7909W
[site  ] DEBUG 2024/02/06 17:47:49 grid powers: [421 7211 277]W
[site  ] DEBUG 2024/02/06 17:47:49 grid currents: [3.24 33 2.34]A
[site  ] DEBUG 2024/02/06 17:47:49 site power: 7909W
[lp-1  ] DEBUG 2024/02/06 17:47:49 charge currents: [14.6 0.038 0.076]A
[lp-1  ] DEBUG 2024/02/06 17:47:49 charge total import: 1331.007kWh
[lp-1  ] DEBUG 2024/02/06 17:47:49 charger status: C
[lp-1  ] INFO 2024/02/06 17:47:49 start charging ->
[lp-1  ] DEBUG 2024/02/06 17:47:49 wake-up timer: stop
[lp-1  ] DEBUG 2024/02/06 17:47:49 soc estimated: 95.34% (vehicle: 95.00%)
[lp-1  ] DEBUG 2024/02/06 17:47:49 vehicle soc: 95%
[lp-1  ] DEBUG 2024/02/06 17:47:49 vehicle soc limit: 0%
[lp-1  ] DEBUG 2024/02/06 17:47:49 vehicle range: 48km
[lp-1  ] DEBUG 2024/02/06 17:47:49 charger: guard elapse
[lp-1  ] DEBUG 2024/02/06 17:47:49 guard timer inactive
[site  ] DEBUG 2024/02/06 17:48:44 ----
[lp-1  ] DEBUG 2024/02/06 17:48:44 charge power: 0W
[site  ] DEBUG 2024/02/06 17:48:44 pv power: 0W
[site  ] DEBUG 2024/02/06 17:48:44 grid power: 4733W
[site  ] DEBUG 2024/02/06 17:48:44 grid powers: [414 4042 277]W
[site  ] DEBUG 2024/02/06 17:48:44 grid currents: [3.21 18.4 2.3]A
[site  ] DEBUG 2024/02/06 17:48:44 site power: 4733W
[lp-1  ] DEBUG 2024/02/06 17:48:44 charge currents: [0 0 0]A
[lp-1  ] DEBUG 2024/02/06 17:48:44 charge total import: 1331.022kWh
[lp-1  ] DEBUG 2024/02/06 17:48:44 charger status: B
[lp-1  ] INFO 2024/02/06 17:48:44 stop charging <-
[lp-1  ] DEBUG 2024/02/06 17:48:44 wake-up timer: start
[lp-1  ] DEBUG 2024/02/06 17:48:44 charge total import: 1331.022kWh
[lp-1  ] DEBUG 2024/02/06 17:48:52 soc estimated: 95.45% (vehicle: 95.00%)
[lp-1  ] DEBUG 2024/02/06 17:48:52 vehicle soc: 95%
[lp-1  ] DEBUG 2024/02/06 17:48:52 vehicle soc limit: 0%
[lp-1  ] DEBUG 2024/02/06 17:48:52 vehicle range: 48km
[lp-1  ] WARN 2024/02/06 17:48:52 charger out of sync: expected enabled, got disabled
[lp-1  ] DEBUG 2024/02/06 17:48:52 charger enable
[lp-1  ] DEBUG 2024/02/06 17:48:52 wake-up timer: start

What type of operating system are you running?

HomeAssistant Add-on

Version

No response

Juppme commented 9 months ago

Hier noch ein Screenshot der Wallbox. die das ladeverhalten zeigt. Ich hoffe ich habe alles richtig beschrieben das mit jemand helfen kann bzw. das Supoort Team damit zurecht kommt. Im Voraus herzlichen Dank

image

VolkerK62 commented 9 months ago

vor 3 Wochen hat alles funktioniert? Gab es ein Update beim go-e? Ist da irgendeine go-e interne regelung aktiv? (z.B. Eco Modus)

Juppme commented 9 months ago

Eco Modus ist nicht aktiv. Es gibt ein Update. Habe ich installiert und bin wieder zur Vorgänger Version gewechselt. Fehler ist bei beiden Softwareversionen.

Juppme commented 9 months ago

Also ganz ehrlich. Wie bescheuert muß man eigentlich sein.

Ich bin so blöd.

Habe in einer geistigen Umnachtung Celver-PV getestet und die Wallbox nicht wieder aus der Konfiguration genommen. Sorry an alle die sich bereits damit beschäftigt haben