Connected Cars (Volkswagen Australia)
Parameters
| Name | Description | Value | Level |
|---|---|---|---|
deviceToken | Device Token Obtained via Connected Cars device registration. See https://github.com/brettch/evcc-connected-cars for scripts to perform device registration. | optional | |
domain | API Domain The API domain to use for Connected Cars. Each country typically has a unique domain. It can be found by logging into the Connected Cars GraphiQL tool (https://api.connectedcars.io/graphql/graphiql/), logging into the relevant country, and viewing the domain it uses (minus the leading "api."). | optional | |
namespace | Organization Namespace The namespace is used to identify the organization within Connected Cars. It can be found by logging into the Connected Cars GraphiQL tool (https://api.connectedcars.io/graphql/graphiql/), logging into the relevant country, and viewing the "X-Organization-Namespace" header it sets for you. | optional | |
vin | Vehicle Identification Number If you own multiple vehicles from the same manufacturer | optional | |
title | Title Will be displayed in the user interface | optional | |
capacity [kWh] | Battery capacity | optional | |
icon | Icon Will be displayed in the user interface | advanced | |
phases | Maximum number of phases The maximum number of phases which can be used | advanced | |
mode | Default charging mode Used when a vehicle is connected. Possible values are Off, Now, MinPV and PV, or empty if none should be set | advanced | |
minCurrent [A] | Minimum amperage The minimum amperage per connected phase that can be used | advanced | |
maxCurrent [A] | Maximum amperage The maximum amperage per connected phase that can be used | advanced | |
maxPower [W] | Maximum charging power hint Defines the maximum charging power of the vehicle. Helps improve charge plan accuracy when the vehicle typically uses less than the offered current or supports higher single-phase current compared to three-phase. The offered current of the loadpoint is not affected. | advanced | |
identifiers | Identification Mostly this can be added later, see: https://docs.evcc.io/en/docs/features/vehicle | advanced | |
priority | Priority Priority of the loadpoint or vehicle in relation to other loadpoints or vehicles for allocating pv energy | advanced | |
cache | Cache Time interval for data refresh | advanced |
Configuration example for evcc.yaml
If you don't want to configure via the UI, you can alternatively use this YAML block.
vehicles: - name: my_car type: template template: connected-cars deviceToken: # Device Token, Obtained via Connected Cars device registration. See https://github.com/brettch/evcc-connected-cars for scripts to perform device registration. domain: au1.connectedcars.io # API Domain, The API domain to use for Connected Cars. Each country typically has a unique domain. It can be found by logging into the Connected Cars GraphiQL tool (https://api.connectedcars.io/graphql/graphiql/), logging into the relevant country, and viewing the domain it uses (minus the leading "api."). (optional) namespace: vwaustralia:app # Organization Namespace, The namespace is used to identify the organization within Connected Cars. It can be found by logging into the Connected Cars GraphiQL tool (https://api.connectedcars.io/graphql/graphiql/), logging into the relevant country, and viewing the "X-Organization-Namespace" header it sets for you. (optional) vin: W... # Vehicle Identification Number, If you own multiple vehicles from the same manufacturer (optional) title: # Title, Will be displayed in the user interface (optional) capacity: 50 # Battery capacity (kWh), optional icon: car # Icon, Will be displayed in the user interface [car, bike, bus, moped, motorcycle, rocket, scooter, taxi, tractor, rickshaw, shuttle, van, airpurifier, battery, bulb, climate, coffeemaker, compute, cooking, cooler, desktop, device, dishwasher, dryer, floorlamp, generic, heater, heatexchange, heatpump, kettle, laundry, laundry2, machine, meter, microwave, pump, smartconsumer, tool, waterheater] (optional) phases: 3 # Maximum number of phases, The maximum number of phases which can be used (optional) mode: # Default charging mode, Used when a vehicle is connected. Possible values are Off, Now, MinPV and PV, or empty if none should be set (optional) minCurrent: 6 # Minimum amperage (A), The minimum amperage per connected phase that can be used (optional) maxCurrent: 16 # Maximum amperage (A), The maximum amperage per connected phase that can be used (optional) maxPower: 10000 # Maximum charging power hint (W), Defines the maximum charging power of the vehicle. Helps improve charge plan accuracy when the vehicle typically uses less than the offered current or supports higher single-phase current compared to three-phase. _The offered current of the loadpoint is not affected._ (optional) identifiers: # Identification, Mostly this can be added later, see: https://docs.evcc.io/en/docs/features/vehicle (optional) priority: # Priority, Priority of the loadpoint or vehicle in relation to other loadpoints or vehicles for allocating pv energy (optional) cache: 15m # Cache, Time interval for data refresh (optional)