Const
Readonly
attributes: { Readonly
approximateIndicates the vehicle efficiency rating for a connected vehicle.
This can be used to help indicate to the user approximately how many miles or km of range will be added. It allows user interfaces to display to the user simpler terms that they can relate to compared to kWh.
This is value is stored in km per kWh multiplied by a scaling factor of 1000.
A null value indicates that the EV efficiency is unknown and the NextChargeRequiredEnergy attribute cannot be converted from Wh to miles or km.
To convert from Wh into Range:
AddedRange (km) = AddedEnergy (Wh) x ApproxEVEfficiency (km/kWh x 1000) AddedRange (Miles) = AddedEnergy (Wh) x ApproxEVEfficiency (km/kWh x 1000) x 0.6213
Example:
ApproxEVEfficiency (km/kWh x 1000): 4800 (i.e. 4.8km/kWh x 1000)
AddedEnergy (Wh): 10,000
AddedRange (km) = 10,000 x 4800 / 1,000,000 = 48 km
AddedRange (Miles) = AddedEnergy (Wh) x ApproxEVEfficiency (km/kWh x 1000) x 0.6213
= 29.82 Miles
Readonly
nextIndicates the amount of energy that the EVSE is going to attempt to add to the vehicle in the next charging target.
If this is null it indicates that there is no scheduled charging, or that the EVSE is using the TargetSoC method to charge the vehicle.
Readonly
nextIndicates the time, in UTC, when the EVSE plans to start the next scheduled charge based on the charging preferences.
If this is null it indicates that there is no scheduled charging, or that the vehicle is not plugged in.
Readonly
nextIndicates the target SoC the EVSE is going to attempt to reach when the vehicle is next charged.
If this is null it indicates that there is no scheduled charging, or that the EVSE cannot obtain the current State of Charge from the vehicle.
If the SOC feature is not supported, only the values null and 100% are supported.
Readonly
nextIndicates the time, in UTC, when the EVSE SHOULD complete the next scheduled charge based on the charging preferences.
If this is null it indicates that there is no scheduled charging, or that the vehicle is not plugged in.
Readonly
commands: { Readonly
clearAllows a client to clear all stored charging targets.
Readonly
getAllows a client to retrieve the current set of charging targets.
Readonly
setAllows a client to set the user specified charging targets.
A EnergyEvseCluster supports these elements if it supports feature ChargingPreferences.