From 0016d533a9fc601aa65f69a050c60c8d6158ed36 Mon Sep 17 00:00:00 2001 From: Lisandro Pérez Meyer Date: Fri, 17 Nov 2023 09:17:29 -0300 Subject: Disable value animation at start up % update FuelLevel path. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Also: - Remove some warnings. - Improvements of hvac temp buttons. Original from: Dominik Wawrzonek Bug-AGL: SPEC-4971 Change-Id: Ic10e9ec5ec79f79f63d951469924325f29ea3fa7 Signed-off-by: Lisandro Pérez Meyer --- lib/core/constants/vss_path.dart | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'lib/core/constants') diff --git a/lib/core/constants/vss_path.dart b/lib/core/constants/vss_path.dart index 92c036f..236287f 100644 --- a/lib/core/constants/vss_path.dart +++ b/lib/core/constants/vss_path.dart @@ -33,6 +33,10 @@ class VSSPath { 'Vehicle.Cabin.HVAC.IsRecirculationActive'; static const String vehicleFanSpeed = 'Vehicle.Cabin.HVAC.Station.Row1.Driver.FanSpeed'; + static const String vehicleDriverTemperature = + 'Vehicle.Cabin.HVAC.Station.Row1.Driver.Temperature'; + static const String vehiclePassengerTemperature = + 'Vehicle.Cabin.HVAC.Station.Row1.Passenger.Temperature'; List getSignalsList() { return const [ @@ -53,7 +57,9 @@ class VSSPath { vehicleIsFrontDefrosterActive, vehicleIsRearDefrosterActive, vehicleIsRecirculationActive, - vehicleFanSpeed + vehicleFanSpeed, + vehicleDriverTemperature, + vehiclePassengerTemperature, ]; } } -- cgit 1.2.3-korg