updateVehicleProperties
Updates the properties of the vehicle. The only properties that can be updated are those defined by the currently set vehicle.
Example snippet that updates the current charge of the electric vehicle's engine to 42kWh:
val updatedElectricEngineProperties = ElectricEngineProperties(
listOf(
CurrentChargeProperty(Energy.kilowattHours(42))
)
)
vehicleProvider.updateVehicle(listOf(updatedElectricEngineProperties))Content copied to clipboard
Parameters
vehicleProperties
List of updated vehicle properties.