summaryrefslogtreecommitdiffstats
path: root/lib/core
diff options
context:
space:
mode:
Diffstat (limited to 'lib/core')
-rw-r--r--lib/core/constants/vss_path.dart8
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,
];
}
}