diff options
author | Scott Murray <scott.murray@konsulko.com> | 2024-01-04 20:13:01 -0500 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2024-01-04 20:20:16 -0500 |
commit | 31438c5081e8ee5b520787a6e64b9372ec678886 (patch) | |
tree | 3c2fd4d08d0ad5070ade0f6111fe5961ed39a8da /lib/core/constants/vss_path.dart | |
parent | 5588d1d26f1be968af6809e43507d7be0fadf434 (diff) |
Configurable units fixes
Notable changes:
- Add pressure unit to the units model.
- Add tire pressure unit configuration page under settings.
- Rework the VSS client, provider, and the associated handling in
the vehicle and audio state providers to make the signal updating
code reusable for processing the result of VAL API get commands.
- Add logic to get the initial values of the used VSS signals so
the initial application state looks sane in demo scenarios.
- Add VSS signal support to the units provider so that changes will
be pushed out for e.g. IC use.
- Fix pressure unit use in various widgets.
- Fix up range calculation for dashboard to correctly account for
units and the incoming VSS value being in meters.
- Fix some unit naming inconsistencies around capitalization.
Bug-AGL: SPEC-5031, SPEC-5032
Change-Id: I33ac735dfbe35283bd30c92aa157cbdb7af1837c
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Diffstat (limited to 'lib/core/constants/vss_path.dart')
-rw-r--r-- | lib/core/constants/vss_path.dart | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/core/constants/vss_path.dart b/lib/core/constants/vss_path.dart index afba8de..cdb39f2 100644 --- a/lib/core/constants/vss_path.dart +++ b/lib/core/constants/vss_path.dart @@ -45,6 +45,12 @@ class VSSPath { 'Vehicle.Cabin.HVAC.Station.Row1.Driver.Temperature'; static const String vehiclePassengerTemperature = 'Vehicle.Cabin.HVAC.Station.Row1.Passenger.Temperature'; + static const String vehicleHmiDistanceUnit = + 'Vehicle.Cabin.Infotainment.HMI.DistanceUnit'; + static const String vehicleHmiTemperatureUnit = + 'Vehicle.Cabin.Infotainment.HMI.TemperatureUnit'; + static const String vehicleHmiPressureUnit = + 'Vehicle.Cabin.Infotainment.HMI.TirePressureUnit'; List<String> getSignalsList() { return const [ @@ -72,6 +78,9 @@ class VSSPath { vehicleFanSpeed, vehicleDriverTemperature, vehiclePassengerTemperature, + vehicleHmiDistanceUnit, + vehicleHmiTemperatureUnit, + vehicleHmiPressureUnit, ]; } } |