evcc-io / evcc

Sonne tanken β˜€οΈπŸš˜
https://evcc.io
MIT License
3.49k stars 643 forks source link

charger disable: 403 Forbidden - Tesla Wall Charger twc3 #10789

Closed nick2086 closed 11 months ago

nick2086 commented 11 months ago

Describe the bug

After connecting Tesla Model Y to the Tesla Wall Charger (twc3) I receive an error in the log:

[lp-1 ] ERROR 2023/11/15 23:02:26 charger disable: 403 Forbidden

and in the UI:

FF-Charge station: charger disable: 403 Forbidden

The car begins to charge immediately.

I have reset evcc (many times), reset the twc3 with a power cycle; however, the issue persists.

Steps to reproduce

  1. Check, and double check evcc.yaml. All appears correctly configured.
  2. I can browse to the Tesla Wall Charger in a browser, and receive the following response:
  3. Part Number 1529455-02-E Serial Number PGT23061059872 Tesla Wall Connector To edit the system's configuration, connect to the Wall Connector's access point. For detailed instructions, visit .
  4. Connect the only Tesla vehicle configured.
  5. Receive the error as above.

Configuration details

network:
  # schema is the HTTP schema
  # setting to `https` does not enable https, it only changes the way URLs are generated
  schema: http
  # 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: evcc.local
  # port is the listening port for UI and api
  # evcc will listen on all available interfaces
  port: 7070

interval: 30s # control cycle interval. Interval <30s can lead to unexpected behavior, see https://docs.evcc.io/docs/reference/configuration/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:

# 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

# 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: Enphase_PV
    type: template
    template: enphase
    usage: pv
    host: 10.1.5.42 # IP address or hostname

  - name: Enphase_Grid
    type: template
    template: enphase
    usage: grid
    host: 10.1.5.42 # IP address or hostname

# 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: Tesla_charger
    type: template
    template: twc3
    host: 10.1.5.112 # IP address or 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: Tesla_car
    type: template
    template: tesla
    title: Rosso
    accessToken: ***
    refreshToken: ***
    vin:
    capacity: 70 # Battery capacity in kWh (optional)

# site describes the EVU connection, PV and home battery
site:
  title: FF-Home # display name for UI
  meters:
    grid: Enphase_Grid # grid meter
    pv: Enphase_PV

# loadpoint describes the charger, charge meter and connected vehicle
loadpoints:
  - title: FF-Charge station # display name for UI
    charger: Tesla_charger # charger
    #meter: Grid # charge meter
    vehicle: Tesla_car # set default vehicle (disables vehicle detection)
    resetOnDisconnect: true # set defaults when vehicle disconnects
    mode: "pv" # set default charge mode, use "off" to disable by default if charger is publicly available
    phases: 1 # electrical connection (normal charger: default 3 for 3 phase, 1p3p charger: 0 for "auto" or 1/3 for fixed phases)
    minCurrent: 10 # minimum charge current (default 6A)
    maxCurrent: 32 # maximum charge current (default 16A)

    # 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: AUD # three letter ISO-4217 currency code (default EUR)
  grid:
    # either static grid price (or price zones)
    type: fixed
    price: 0.294 # EUR/kWh

  feedin:
    # rate for feeding excess (pv) energy to the grid
    type: fixed
    price: 0.07 # EUR/kWh

# 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
  token: ***
  org: ***

# 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

[main  ] INFO 2023/11/15 23:09:04 evcc 0.122.1
[main  ] INFO 2023/11/15 23:09:04 using config file: C:\Users\nickj\Desktop\evcc\evcc.yaml
[main  ] INFO 2023/11/15 23:09:04 starting ui and api at :7070
[site  ] INFO 2023/11/15 23:09:07 site config:
[site  ] INFO 2023/11/15 23:09:07   meters:      grid βœ“ pv βœ“ battery βœ—
[site  ] INFO 2023/11/15 23:09:07     grid:      power βœ“ energy βœ— currents βœ—
[site  ] INFO 2023/11/15 23:09:07     pv 1:      power βœ“ energy βœ“ currents βœ—
[site  ] INFO 2023/11/15 23:09:07   vehicles:
[site  ] INFO 2023/11/15 23:09:07     vehicle 1: range βœ“ finish βœ“ status βœ“ climate βœ— wakeup βœ“
[lp-1  ] INFO 2023/11/15 23:09:07 loadpoint 1:
[lp-1  ] INFO 2023/11/15 23:09:07   mode:        pv
[lp-1  ] INFO 2023/11/15 23:09:07   charger:     power βœ“ energy βœ— currents βœ“ phases βœ— wakeup βœ—
[lp-1  ] INFO 2023/11/15 23:09:07   meters:      charge βœ“
[lp-1  ] INFO 2023/11/15 23:09:07     charge:    power βœ“ energy βœ— currents βœ“
[lp-1  ] DEBUG 2023/11/15 23:09:07 phase timer inactive
[lp-1  ] DEBUG 2023/11/15 23:09:07 pv timer inactive
[lp-1  ] DEBUG 2023/11/15 23:09:07 guard timer inactive
[lp-1  ] INFO 2023/11/15 23:09:07 vehicle updated: unknown -> Rosso
[site  ] DEBUG 2023/11/15 23:09:07 ----
[lp-1  ] DEBUG 2023/11/15 23:09:07 charge power: 7112W
[site  ] DEBUG 2023/11/15 23:09:09 pv power: 0W
[site  ] DEBUG 2023/11/15 23:09:11 grid power: 8065W
[site  ] DEBUG 2023/11/15 23:09:11 site power: 8065W
[lp-1  ] DEBUG 2023/11/15 23:09:12 vehicle odometer: 147km
[lp-1  ] DEBUG 2023/11/15 23:09:12 charge voltages: [222 3.9 0]V
[lp-1  ] DEBUG 2023/11/15 23:09:12 detected connected phases: 1p
[lp-1  ] DEBUG 2023/11/15 23:09:12 charge currents: [32.2 0.3 0.4]A
[lp-1  ] DEBUG 2023/11/15 23:09:12 charger status: C
[lp-1  ] INFO 2023/11/15 23:09:12 car connected
[lp-1  ] DEBUG 2023/11/15 23:09:12 pv timer elapse
[lp-1  ] DEBUG 2023/11/15 23:09:12 pv timer inactive
[lp-1  ] DEBUG 2023/11/15 23:09:12 charger: guard elapse
[lp-1  ] DEBUG 2023/11/15 23:09:12 guard timer inactive
[lp-1  ] INFO 2023/11/15 23:09:12 start charging ->
[lp-1  ] DEBUG 2023/11/15 23:09:12 wake-up timer: stop
[lp-1  ] DEBUG 2023/11/15 23:09:12 vehicle status: C
[lp-1  ] DEBUG 2023/11/15 23:09:12 vehicle soc: 62%
[lp-1  ] DEBUG 2023/11/15 23:09:12 vehicle soc limit: 80%
[lp-1  ] DEBUG 2023/11/15 23:09:12 vehicle range: 322km
[lp-1  ] DEBUG 2023/11/15 23:09:12 pv charge current: 0A = 0A + -35.1A (8065W @ 1p)
[lp-1  ] DEBUG 2023/11/15 23:09:12 site power 8065W >= 0W disable threshold
[lp-1  ] DEBUG 2023/11/15 23:09:12 pv disable in 0s
[lp-1  ] DEBUG 2023/11/15 23:09:12 pv disable timer elapsed
[lp-1  ] ERROR 2023/11/15 23:09:12 charger disable: 403 Forbidden
[site  ] DEBUG 2023/11/15 23:09:37 ----
[lp-1  ] DEBUG 2023/11/15 23:09:43 charge power: 7137W

What type of operating system are you running?

Windows

Version

0.122.1

andig commented 11 months ago

Enable/disable lΓ€uft hier ΓΌber das Fahrzeug. Bitte trace Log fΓΌr den Tesla.

nick2086 commented 11 months ago

Hoping this is what you wanted, apologies is not.

I got the tokens from the Apple app on my iPhone.

I've redacted some information, and replaced with ***

[main ] INFO 2023/11/15 23:40:26 evcc 0.122.1 [main ] INFO 2023/11/15 23:40:26 using config file: C:\Users\nickj\Desktop\evcc\evcc.yaml [main ] INFO 2023/11/15 23:40:26 starting ui and api at :7070 [tesla ] TRACE 2023/11/15 23:40:26 POST https://auth.tesla.com/oauth2/v3/token [tesla ] TRACE 2023/11/15 23:40:27 client_id=ownerapi&grant_type=refresh_token&refresh_token=***

{"access_token":"","expires_in":28800,"token_type":"Bearer"} [tesla ] TRACE 2023/11/15 23:40:27 GET https://owner-api.teslamotors.com/api/1/vehicles [tesla ] TRACE 2023/11/15 23:40:28 {"response":[{"id":,"vehicle_id":,"vin":"","color":null,"access_type":"OWNER","display_name":"Rosso","option_codes":null,"granular_access":{"hide_private":false},"tokens":[""],"state":"online","in_service":false,"id_s":"","calendar_enabled":true,"api_version":63,"backseat_token":null,"backseat_token_updated_at":null,"ble_autopair_enrolled":false}],"count":1} [site ] INFO 2023/11/15 23:40:28 site config: [site ] INFO 2023/11/15 23:40:28 meters: grid βœ“ pv βœ“ battery βœ— [site ] INFO 2023/11/15 23:40:28 grid: power βœ“ energy βœ— currents βœ— [site ] INFO 2023/11/15 23:40:28 pv 1: power βœ“ energy βœ“ currents βœ— [site ] INFO 2023/11/15 23:40:28 vehicles: [site ] INFO 2023/11/15 23:40:28 vehicle 1: range βœ“ finish βœ“ status βœ“ climate βœ— wakeup βœ“ [lp-1 ] INFO 2023/11/15 23:40:28 loadpoint 1: [lp-1 ] INFO 2023/11/15 23:40:28 mode: pv [lp-1 ] INFO 2023/11/15 23:40:28 charger: power βœ“ energy βœ— currents βœ“ phases βœ— wakeup βœ— [lp-1 ] INFO 2023/11/15 23:40:28 meters: charge βœ“ [lp-1 ] INFO 2023/11/15 23:40:28 charge: power βœ“ energy βœ— currents βœ“ [lp-1 ] DEBUG 2023/11/15 23:40:28 phase timer inactive [lp-1 ] DEBUG 2023/11/15 23:40:28 pv timer inactive [lp-1 ] DEBUG 2023/11/15 23:40:28 guard timer inactive [lp-1 ] INFO 2023/11/15 23:40:28 vehicle updated: unknown -> Rosso [site ] DEBUG 2023/11/15 23:40:28 ---- [lp-1 ] DEBUG 2023/11/15 23:40:28 charge power: 7070W [site ] DEBUG 2023/11/15 23:40:32 pv power: 0W [site ] DEBUG 2023/11/15 23:40:34 grid power: 8016W [site ] DEBUG 2023/11/15 23:40:34 site power: 8016W [tesla ] TRACE 2023/11/15 23:40:34 GET https://owner-api.teslamotors.com/api/1/vehicles/3744642368904898/vehicle_data [tesla ] TRACE 2023/11/15 23:40:35 {"response":{"id":,"user_id":,"vehicle_id":,"vin":"","color":null,"access_type":"OWNER","granular_access":{"hide_private":false},"tokens":["",""],"state":"online","in_service":false,"id_s":"","calendar_enabled":true,"api_version":63,"backseat_token":null,"backseat_token_updated_at":null,"ble_autopair_enrolled":false,"charge_state":{"battery_heater_on":false,"battery_level":63,"battery_range":202.88,"charge_amps":32,"charge_current_request":32,"charge_current_request_max":32,"charge_enable_request":true,"charge_energy_added":0.4,"charge_limit_soc":80,"charge_limit_soc_max":100,"charge_limit_soc_min":50,"charge_limit_soc_std":80,"charge_miles_added_ideal":1.5,"charge_miles_added_rated":1.5,"charge_port_cold_weather_mode":false,"charge_port_color":"\u003cinvalid\u003e","charge_port_door_open":true,"charge_port_latch":"Engaged","charge_rate":27.1,"charger_actual_current":32,"charger_phases":1,"charger_pilot_current":32,"charger_power":7,"charger_voltage":215,"charging_state":"Charging","conn_charge_cable":"IEC","est_battery_range":208.58,"fast_charger_brand":"\u003cinvalid\u003e","fast_charger_present":false,"fast_charger_type":"ACSingleWireCAN","ideal_battery_range":202.88,"max_range_charge_counter":0,"minutes_to_full_charge":120,"not_enough_power_to_heat":null,"off_peak_charging_enabled":false,"off_peak_charging_times":"all_week","off_peak_hours_end_time":360,"preconditioning_enabled":false,"preconditioning_times":"weekdays","scheduled_charging_mode":"Off","scheduled_charging_pending":false,"scheduled_charging_start_time":null,"scheduled_charging_start_time_app":0,"scheduled_departure_time":1699907400,"scheduled_departure_time_minutes":450,"supercharger_session_trip_planner":false,"time_to_full_charge":2.0,"timestamp":1700052035976,"trip_charging":false,"usable_battery_level":63,"user_charge_enable_request":null},"climate_state":{"allow_cabin_overheat_protection":true,"auto_seat_climate_left":false,"auto_seat_climate_right":false,"auto_steering_wheel_heat":false,"battery_heater":false,"battery_heater_no_power":null,"bioweapon_mode":false,"cabin_overheat_protection":"On","cabin_overheat_protection_actively_cooling":false,"climate_keeper_mode":"off","cop_activation_temperature":"High","defrost_mode":0,"driver_temp_setting":20.5,"fan_status":0,"hvac_auto_request":"On","inside_temp":21.5,"is_auto_conditioning_on":false,"is_climate_on":false,"is_front_defroster_on":false,"is_preconditioning":false,"is_rear_defroster_on":false,"left_temp_direction":0,"max_avail_temp":28.0,"min_avail_temp":15.0,"outside_temp":20.5,"passenger_temp_setting":20.5,"remote_heater_control_enabled":false,"right_temp_direction":0,"seat_heater_left":0,"seat_heater_rear_center":0,"seat_heater_rear_left":0,"seat_heater_rear_right":0,"seat_heater_right":0,"side_mirror_heaters":false,"steering_wheel_heat_level":0,"steering_wheel_heater":false,"supports_fan_only_cabin_overheat_protection":true,"timestamp":1700052035976,"wiper_blade_heater":false},"drive_state":{"active_route_traffic_minutes_delay":0.0,"gps_as_of":1700051956,"heading":3,"latitude":-33.746755,"longitude":151.204746,"native_latitude":-33.746755,"native_location_supported":1,"native_longitude":151.204746,"native_type":"wgs","power":-7,"shift_state":null,"speed":null,"timestamp":1700052035977},"gui_settings":{"gui_24_hour_time":true,"gui_charge_rate_units":"kW","gui_distance_units":"km/hr","gui_range_display":"Rated","gui_temperature_units":"C","gui_tirepressure_units":"Psi","show_range_units":false,"timestamp":1700052035977},"vehicle_config":{"aux_park_lamps":"Eu","badge_version":1,"can_accept_navigation_requests":true,"can_actuate_trunks":true,"car_special_type":"base","car_type":"modely","charge_port_type":"CCS","cop_user_set_temp_supported":false,"dashcam_clip_save_supported":true,"default_charge_to_max":false,"driver_assist":"TeslaAP3","ece_restrictions":false,"efficiency_package":"MY2021","eu_vehicle":true,"exterior_color":"RedMulticoat","exterior_trim":"Black","exterior_trim_override":"","has_air_suspension":false,"has_ludicrous_mode":false,"has_seat_cooling":false,"headlamp_type":"Global","interior_trim_type":"Black2","key_version":2,"motorized_charge_port":true,"paint_color_override":"","performance_package":"Base","plg":true,"pws":true,"rear_drive_unit":"PM216MOSFET","rear_seat_heaters":1,"rear_seat_type":0,"rhd":true,"roof_color":"RoofColorGlass","seat_type":null,"spoiler_type":"None","sun_roof_installed":null,"supports_qr_pairing":false,"third_row_seats":"None","timestamp":1700052035977,"trim_badging":"74d","use_range_badging":true,"utc_offset":39600,"webcam_selfie_supported":true,"webcam_supported":true,"wheel_type":"Induction20Black"},"vehicle_state":{"api_version":63,"autopark_state_v2":"unavailable","calendar_supported":true,"car_version":"2023.32.100 2b8c8db7ccb3","center_display_state":0,"dashcam_clip_save_available":true,"dashcam_state":"Recording","df":0,"dr":0,"fd_window":0,"feature_bitmask":"fbdffbff,f","fp_window":0,"ft":0,"is_user_present":false,"locked":true,"media_info":{"audio_volume":1.0,"audio_volume_increment":0.333333,"audio_volume_max":10.333333,"media_playback_status":"Playing","now_playing_album":"","now_playing_artist":"","now_playing_duration":0,"now_playing_elapsed":0,"now_playing_source":"13","now_playing_station":"DAB Smooth 95.3","now_playing_title":"Sydney Weather: Tomorrow 17c, Showers increasing."},"media_state":{"remote_control_enabled":true},"notifications_supported":true,"odometer":91.094885,"parsed_calendar_supported":true,"pf":0,"pr":0,"rd_window":0,"remote_start":false,"remote_start_enabled":true,"remote_start_supported":true,"rp_window":0,"rt":0,"santa_mode":0,"sentry_mode":false,"sentry_mode_available":true,"service_mode":false,"service_mode_plus":false,"software_update":{"download_perc":0,"expected_duration_sec":2700,"install_perc":1,"status":"","version":" "},"speed_limit_mode":{"active":false,"current_limit_mph":85.0,"max_limit_mph":120,"min_limit_mph":50.0,"pin_code_set":false},"timestamp":1700052035976,"tpms_hard_warning_fl":false,"tpms_hard_warning_fr":false,"tpms_hard_warning_rl":false,"tpms_hard_warning_rr":false,"tpms_last_seen_pressure_time_fl":1700032805,"tpms_last_seen_pressure_time_fr":1700032805,"tpms_last_seen_pressure_time_rl":1700032805,"tpms_last_seen_pressure_time_rr":1700032805,"tpms_pressure_fl":3.125,"tpms_pressure_fr":3.075,"tpms_pressure_rl":3.125,"tpms_pressure_rr":3.075,"tpms_rcp_front_value":2.9,"tpms_rcp_rear_value":2.9,"tpms_soft_warning_fl":false,"tpms_soft_warning_fr":false,"tpms_soft_warning_rl":false,"tpms_soft_warning_rr":false,"valet_mode":false,"valet_pin_needed":true,"vehicle_name":"Rosso","vehicle_self_test_progress":0,"vehicle_self_test_requested":false,"webcam_available":true}}} [lp-1 ] DEBUG 2023/11/15 23:40:35 vehicle odometer: 147km [lp-1 ] DEBUG 2023/11/15 23:40:35 charge voltages: [222 3.9 0]V [lp-1 ] DEBUG 2023/11/15 23:40:35 detected connected phases: 1p [lp-1 ] DEBUG 2023/11/15 23:40:35 charge currents: [32 0.3 0.4]A [lp-1 ] DEBUG 2023/11/15 23:40:35 charger status: C [lp-1 ] INFO 2023/11/15 23:40:35 car connected [lp-1 ] DEBUG 2023/11/15 23:40:35 pv timer elapse [lp-1 ] DEBUG 2023/11/15 23:40:35 pv timer inactive [lp-1 ] DEBUG 2023/11/15 23:40:35 charger: guard elapse [lp-1 ] DEBUG 2023/11/15 23:40:35 guard timer inactive [lp-1 ] INFO 2023/11/15 23:40:35 start charging -> [lp-1 ] DEBUG 2023/11/15 23:40:35 wake-up timer: stop [lp-1 ] DEBUG 2023/11/15 23:40:35 vehicle status: C [lp-1 ] DEBUG 2023/11/15 23:40:35 vehicle soc: 63% [lp-1 ] DEBUG 2023/11/15 23:40:35 vehicle soc limit: 80% [lp-1 ] DEBUG 2023/11/15 23:40:35 vehicle range: 326km [lp-1 ] DEBUG 2023/11/15 23:40:35 pv charge current: 0A = 0A + -34.9A (8016W @ 1p) [lp-1 ] DEBUG 2023/11/15 23:40:35 site power 8016W >= 0W disable threshold [lp-1 ] DEBUG 2023/11/15 23:40:35 pv disable in 0s [lp-1 ] DEBUG 2023/11/15 23:40:35 pv disable timer elapsed [tesla ] TRACE 2023/11/15 23:40:35 POST https://owner-api.teslamotors.com/api/1/vehicles//command/charge_stop [tesla ] TRACE 2023/11/15 23:40:35 {"response":null,"error":"Tesla Vehicle Command Protocol required, please refer to the documentation here: https://developer.tesla.com/docs/fleet-api#2023-10-09-rest-api-vehicle-commands-endpoint-deprecation-warning","error_description":""} [lp-1 ] ERROR 2023/11/15 23:40:35 charger disable: 403 Forbidden

andig commented 11 months ago

Sieht aus, als hΓ€tte Tesla fΓΌr die ersten Funktionen den Stecker gezogen, siehe https://github.com/evcc-io/evcc/issues/10460

nick2086 commented 11 months ago

Thank you for your update.

When I searched for this error after it occurred I could find nothing about the error, or evcc no longer working with TWC3.

Does that mean the evcc won't now work for any Tesla vehicles using a TWC3?

I thought there would have been a lot of comments about this?

andig commented 11 months ago

Closing as duplicate of https://github.com/evcc-io/evcc/issues/10460