evcc-io / evcc

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

Kommunikationsproblem Auto - go-e-Wallbox #3214

Closed stbrumm847 closed 2 years ago

stbrumm847 commented 2 years ago

Describe the bug

Hallo,

ein Kollege hat eine Go-Wallbox mit der er sein Auto lädt. Ich starte das evcc und versuche das Laden via den Kommandos zu starten. Die einzige Rückmeldung ist 'verbunden' . Ein Laden (egal welcher Modus) erfolgt anscheinend nicht. Mit seiner App geht es schon, dann wird auch in der evcc-GUI angezeigt, das es geladen wird. Wo könnte der Fehler sein?

LG Steffen

Steps to reproduce

go-e-box E-Auto

Auto an Ladestation anschließen, evcc starten, die diversen Modi testen

Configuration details

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: info
levels:
  core: debug
  lp-1: debug
  lp-2: debug

# meter definitions
# name can be freely chosen and is used as reference when assigning meters to site and loadpoints
# for examples see https://github.com/evcc-io/config#meters
meters:
  - name: smartpi
    type: custom
    power: 
      source: mqtt
      topic: SmartPi/P1  

  - name: Fronius
    type: custom
    power:
      source: http
      uri: url
      jq: if .Body.Data.Inverters."1".P == null then 0 else .Body.Data.Inverters."1".P end

# charger definitions
# name can be freely chosen and is used as reference when assigning charger to vehicle
# for examples see https://github.com/evcc-io/config#chargers
chargers:
  - name: go-e
    type: template
    template: go-e-v3
    host: url # ModBus address
    #host: localhost:8080

# vehicle definitions
# name can be freely chosen and is used as reference when assigning vehicle to loadpoint
# for examples see https://github.com/evcc-io/config#vehicles
vehicles:
  - name: car1
    type: renault
    title: Zoe
    capacity: 60 # kWh
    user: myuser # user
    password: mypassword # password
    vin: WREN...
    onIdentify: # set defaults when vehicle is identified
      minSoC: 20 # charge to at least 20% independent of charge mode
      targetSoC: 90 # limit charge to 90%

# site describes the EVU connection, PV and home battery
site:
  title: Home # display name for UI
  meters:
    grid: smartpi # grid meter
    pvs:
      - Fronius
 #   battery: battery # battery meter
  prioritySoC: # give home battery priority up to this soc (empty to disable)
  bufferSoC: # ignore home battery discharge above soc (empty to disable)

# loadpoint describes the charger, charge meter and connected vehicle
loadpoints:
  - title: Garage # display name for UI
    charger: go-e # charger
    # meter: charge # charge meter
    # vehicle: audi
    # vehicles: # use if multiple vehicles allowed to charge on this loadpoint
    # - ID.3
    # - e-Up
    # mode: pv
    resetOnDisconnect: true # set defaults when vehicle disconnects
    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
      min: 0 # immediately charge to 0% regardless of mode unless "off" (disabled)
      target: 100 # always charge to 100%
      estimate: false # set true to interpolate between api updates
    phases: 3 # ev phases (default 3)
    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)
    minCurrent: 6 # minimum charge current (default 6A)
    maxCurrent: 16 # maximum charge current (default 16A)

# tariffs are the fixed or variable tariffs
# cheap (tibber/awattar) can be used to define a tariff rate considered cheap enough for charging
tariffs:
  currency: EUR # three letter ISO-4217 currency code (default EUR)
  grid:
    # either static grid price
    type: fixed
    price: 0.294 # EUR/kWh

    # # or variable via tibber
    # type: tibber
    # cheap: 0.2 # EUR/kWh
    # token: "476c477d8a039529478ebd690d35ddd80e3308ffc49b59c65b142321aee963a4" # access token
    # homeid: "cc83e83e-8cbf-4595-9bf7-c3cf192f7d9c" # optional if multiple homes associated to account

    # # or variable via awattar
    # type: awattar
    # cheap: 0.2 # EUR/kWh
    # region: de # optional, choose at for Austria
  feedin:
    # rate for feeding excess (pv) energy to the grid
    type: fixed
    price: 0.08 # EUR/kWh

# mqtt message broker
mqtt:
  broker: url
  topic: evcc # root topic for publishing, set empty to disable
  #method: GET # default HTTP method
  #headers:
  #- content-type: application/json
  #auth: # basic authorization
  #type: basic
  user: wm-UtmxlH0JL3Go
  password: ^*MZB5y^9Xfg
  #insecure: false # set to true to trust self-signed certificates
  #jq: .data.tuples[0][1] # parse response json
  #scale: 0.001 # floating point factor applied to result, e.g. for kW to W conversion
  #timeout: 10s # timeout in golang duration format, see https://golang.org/pkg/time/#ParseDuration

# 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}%
  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>

Log details

[main  ] INFO 2022/04/22 15:15:11 evcc 0.89
[main  ] INFO 2022/04/22 15:15:11 using config file C:\evcc\evcc.yaml
[main  ] INFO 2022/04/22 15:15:11 listening at 0.0.0.0:7070
[mqtt  ] INFO 2022/04/22 15:15:11 connecting evcc-112255056 at tcp://wa-testsmartpi.ddns.net:12349
[mqtt  ] DEBUG 2022/04/22 15:15:12 tcp://wa-testsmartpi.ddns.net:12349 connected
[site  ] INFO 2022/04/22 15:15:13 site config:
[site  ] INFO 2022/04/22 15:15:13   meters:      grid Ô£ô pv Ô£ô battery Ô£ù
[site  ] INFO 2022/04/22 15:15:13     grid:      power Ô£ô energy Ô£ù currents Ô£ù
[site  ] INFO 2022/04/22 15:15:13     pv 0:      power Ô£ô energy Ô£ù currents Ô£ù
[lp-1  ] INFO 2022/04/22 15:15:13 loadpoint 1:
[lp-1  ] INFO 2022/04/22 15:15:13   mode:        off
[lp-1  ] INFO 2022/04/22 15:15:13   charger:     power Ô£ô energy Ô£ù currents Ô£ô phases Ô£ù
[lp-1  ] INFO 2022/04/22 15:15:13   meters:      charge Ô£ô
[lp-1  ] INFO 2022/04/22 15:15:13     charge:    power Ô£ô energy Ô£ù currents Ô£ô
[lp-1  ] INFO 2022/04/22 15:15:13   vehicles:    Ô£ù
[lp-1  ] DEBUG 2022/04/22 15:15:14 max charge current: 6A
[site  ] DEBUG 2022/04/22 15:15:14 ----
[lp-1  ] DEBUG 2022/04/22 15:15:15 charge power: 0W
[site  ] DEBUG 2022/04/22 15:15:15 pv power: 0W
[site  ] DEBUG 2022/04/22 15:15:15 grid power: 4W
[site  ] DEBUG 2022/04/22 15:15:15 site power: 4W
[lp-1  ] DEBUG 2022/04/22 15:15:15 charge currents: [0 0 0]A
[lp-1  ] DEBUG 2022/04/22 15:15:15 charger status: A
[lp-1  ] DEBUG 2022/04/22 15:15:16 charger disable: contactor delay 4m58s
[site  ] DEBUG 2022/04/22 15:15:24 ----
[lp-1  ] DEBUG 2022/04/22 15:15:25 charge power: 0W
[site  ] DEBUG 2022/04/22 15:15:25 pv power: 0W
[site  ] DEBUG 2022/04/22 15:15:25 grid power: 4W
[site  ] DEBUG 2022/04/22 15:15:25 site power: 4W
[lp-1  ] DEBUG 2022/04/22 15:15:26 charge currents: [0 0 0]A
[lp-1  ] DEBUG 2022/04/22 15:15:26 charger status: A
[lp-1  ] DEBUG 2022/04/22 15:15:27 charger disable: contactor delay 4m47s
[site  ] DEBUG 2022/04/22 15:15:34 ----
[lp-1  ] DEBUG 2022/04/22 15:15:34 charge power: 0W
[site  ] DEBUG 2022/04/22 15:15:35 pv power: 0W
[site  ] DEBUG 2022/04/22 15:15:35 grid power: 5W
[site  ] DEBUG 2022/04/22 15:15:35 site power: 5W
[lp-1  ] DEBUG 2022/04/22 15:15:35 charge currents: [0 0 0]A
[lp-1  ] DEBUG 2022/04/22 15:15:35 charger status: A
[lp-1  ] DEBUG 2022/04/22 15:15:36 charger disable: contactor delay 4m37s
[site  ] DEBUG 2022/04/22 15:15:44 ----
[lp-1  ] DEBUG 2022/04/22 15:15:44 charge power: 0W
[site  ] DEBUG 2022/04/22 15:15:45 pv power: 0W
[site  ] DEBUG 2022/04/22 15:15:45 grid power: 5W
[site  ] DEBUG 2022/04/22 15:15:45 site power: 5W
[lp-1  ] DEBUG 2022/04/22 15:15:45 charge currents: [0 0 0]A
[lp-1  ] DEBUG 2022/04/22 15:15:45 charger status: A
[lp-1  ] DEBUG 2022/04/22 15:15:46 charger disable: contactor delay 4m28s
[site  ] DEBUG 2022/04/22 15:15:54 ----
[lp-1  ] DEBUG 2022/04/22 15:15:54 charge power: 0W
[site  ] DEBUG 2022/04/22 15:15:55 pv power: 0W
[site  ] DEBUG 2022/04/22 15:15:55 grid power: 5W
[site  ] DEBUG 2022/04/22 15:15:55 site power: 5W
[lp-1  ] DEBUG 2022/04/22 15:15:56 charge currents: [0 0 0]A
[lp-1  ] DEBUG 2022/04/22 15:15:56 charger status: A
[lp-1  ] DEBUG 2022/04/22 15:15:56 charger disable: contactor delay 4m18s
[site  ] DEBUG 2022/04/22 15:16:04 ----
[lp-1  ] DEBUG 2022/04/22 15:16:08 charge power: 0W
[site  ] DEBUG 2022/04/22 15:16:08 pv power: 0W
[site  ] DEBUG 2022/04/22 15:16:08 grid power: 3W
[site  ] DEBUG 2022/04/22 15:16:08 site power: 3W
[lp-1  ] DEBUG 2022/04/22 15:16:09 charge currents: [0 0 0]A
[lp-1  ] DEBUG 2022/04/22 15:16:09 charger status: A
[lp-1  ] DEBUG 2022/04/22 15:16:09 charger disable: contactor delay 4m4s
[site  ] DEBUG 2022/04/22 15:16:14 ----
[lp-1  ] DEBUG 2022/04/22 15:16:15 charge power: 0W
[site  ] DEBUG 2022/04/22 15:16:15 pv power: 0W
[site  ] DEBUG 2022/04/22 15:16:15 grid power: 3W
[site  ] DEBUG 2022/04/22 15:16:15 site power: 3W
[lp-1  ] DEBUG 2022/04/22 15:16:15 charge currents: [0 0 0]A
[lp-1  ] DEBUG 2022/04/22 15:16:15 charger status: A
[lp-1  ] DEBUG 2022/04/22 15:16:16 charger disable: contactor delay 3m58s
[site  ] DEBUG 2022/04/22 15:16:24 ----
[lp-1  ] DEBUG 2022/04/22 15:16:25 charge power: 0W
[site  ] DEBUG 2022/04/22 15:16:25 pv power: 0W
[site  ] DEBUG 2022/04/22 15:16:25 grid power: 4W
[site  ] DEBUG 2022/04/22 15:16:25 site power: 4W
[lp-1  ] DEBUG 2022/04/22 15:16:26 charge currents: [0 0 0]A
[lp-1  ] DEBUG 2022/04/22 15:16:26 charger status: A
[lp-1  ] DEBUG 2022/04/22 15:16:26 charger disable: contactor delay 3m47s
[site  ] DEBUG 2022/04/22 15:16:34 ----
[lp-1  ] DEBUG 2022/04/22 15:16:35 charge power: 0W
[site  ] DEBUG 2022/04/22 15:16:35 pv power: 0W
[site  ] DEBUG 2022/04/22 15:16:35 grid power: 4W
[site  ] DEBUG 2022/04/22 15:16:35 site power: 4W
[lp-1  ] DEBUG 2022/04/22 15:16:35 charge currents: [0 0 0]A
[lp-1  ] DEBUG 2022/04/22 15:16:35 charger status: A
[lp-1  ] DEBUG 2022/04/22 15:16:37 charger disable: contactor delay 3m37s
[site  ] DEBUG 2022/04/22 15:16:44 ----
[lp-1  ] DEBUG 2022/04/22 15:16:45 charge power: 0W
[site  ] DEBUG 2022/04/22 15:16:45 pv power: 0W
[site  ] DEBUG 2022/04/22 15:16:45 grid power: 5W
[site  ] DEBUG 2022/04/22 15:16:45 site power: 5W
[lp-1  ] DEBUG 2022/04/22 15:16:47 charge currents: [0 0 0]A
[lp-1  ] DEBUG 2022/04/22 15:16:47 charger status: A
[lp-1  ] DEBUG 2022/04/22 15:16:47 charger disable: contactor delay 3m27s
[site  ] DEBUG 2022/04/22 15:16:54 ----
[lp-1  ] DEBUG 2022/04/22 15:16:55 charge power: 0W
[site  ] DEBUG 2022/04/22 15:16:55 pv power: 0W
[site  ] DEBUG 2022/04/22 15:16:55 grid power: 4W
[site  ] DEBUG 2022/04/22 15:16:55 site power: 4W
[lp-1  ] DEBUG 2022/04/22 15:16:56 charge currents: [0 0 0]A
[lp-1  ] DEBUG 2022/04/22 15:16:56 charger status: A
[lp-1  ] DEBUG 2022/04/22 15:16:56 charger disable: contactor delay 3m18s
[site  ] DEBUG 2022/04/22 15:17:04 ----
[lp-1  ] DEBUG 2022/04/22 15:17:06 charge power: 0W
[site  ] DEBUG 2022/04/22 15:17:06 pv power: 0W
[site  ] DEBUG 2022/04/22 15:17:06 grid power: 4W
[site  ] DEBUG 2022/04/22 15:17:06 site power: 4W
[lp-1  ] DEBUG 2022/04/22 15:17:08 charge currents: [0 0 0]A
[lp-1  ] DEBUG 2022/04/22 15:17:08 charger status: A
[lp-1  ] DEBUG 2022/04/22 15:17:08 charger disable: contactor delay 3m5s
[site  ] DEBUG 2022/04/22 15:17:14 ----
[lp-1  ] DEBUG 2022/04/22 15:17:17 charge power: 0W
[site  ] DEBUG 2022/04/22 15:17:17 pv power: 0W
[site  ] DEBUG 2022/04/22 15:17:17 grid power: 4W
[site  ] DEBUG 2022/04/22 15:17:17 site power: 4W
[lp-1  ] DEBUG 2022/04/22 15:17:17 charge currents: [0 0 0]A
[lp-1  ] DEBUG 2022/04/22 15:17:17 charger status: A
[lp-1  ] DEBUG 2022/04/22 15:17:17 charger disable: contactor delay 2m56s

What type of operating system are you running?

Windows

Version

0.8.9

RTTTC commented 2 years ago

For security reasons - remove your tokens, id, passwords and usernames form your post! They are now public knowledge ...

andig commented 2 years ago

Formatier bitte das Issue- die Config ist so nicht lesbar. Die Fehlermeldung sehe ich nirgendwo?