diff options
author | Lisandro Pérez Meyer <lpmeyer@ics.com> | 2023-11-17 09:17:29 -0300 |
---|---|---|
committer | Lisandro Perez Meyer <lpmeyer@ics.com> | 2023-11-17 14:11:43 +0000 |
commit | 0016d533a9fc601aa65f69a050c60c8d6158ed36 (patch) | |
tree | 6fd0765f9d1006a2bddd142caf1d7c0a9d5482cf /lib/core | |
parent | 4d77bab5a0f698943d1abf74482eecef7cc95f08 (diff) |
Disable value animation at start up % update FuelLevel path.
Also:
- Remove some warnings.
- Improvements of hvac temp buttons.
Original from: Dominik Wawrzonek <dwawrzonek@ics.com>
Bug-AGL: SPEC-4971
Change-Id: Ic10e9ec5ec79f79f63d951469924325f29ea3fa7
Signed-off-by: Lisandro Pérez Meyer <lpmeyer@ics.com>
Diffstat (limited to 'lib/core')
-rw-r--r-- | lib/core/constants/vss_path.dart | 8 |
1 files changed, 7 insertions, 1 deletions
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<String> getSignalsList() { return const [ @@ -53,7 +57,9 @@ class VSSPath { vehicleIsFrontDefrosterActive, vehicleIsRearDefrosterActive, vehicleIsRecirculationActive, - vehicleFanSpeed + vehicleFanSpeed, + vehicleDriverTemperature, + vehiclePassengerTemperature, ]; } } |