Skip to content

Commit

Permalink
Add HMI signals
Browse files Browse the repository at this point in the history
Adds two HMI-related signals existing in Android HAL but not existing in VSS

FUEL_VOLUME_DISPLAY_UNITS
DISPLAY_BRIGHTNESS
  • Loading branch information
erikbosch committed Nov 21, 2022
1 parent 16e7f46 commit 0c1e3c1
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion spec/Cabin/Infotainment.vspec
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,12 @@ HMI.DistanceUnit:
allowed: ['MILES', 'KILOMETERS']
description: Distance unit used in the current HMI

HMI.FuelVolumeUnit:
datatype: string
type: actuator
allowed: ['LITER', 'GALLON_US', 'GALLON_UK']
description: Fuel volume unit used in the current HMI

HMI.FuelEconomyUnits:
datatype: string
type: actuator
Expand All @@ -157,13 +163,26 @@ HMI.TemperatureUnit:
type: actuator
allowed: ['C', 'F']
description: Temperature unit used in the current HMI

HMI.TirePressureUnit:
datatype: string
type: actuator
allowed: [‘PSI’, ‘KPA’, ’BAR’]
description: Tire pressure unit used in the current HMI


HMI.Brightness:
datatype: float
type: actuator
unit: percent
min: 0
max: 100
description: Brightness of the HMI, relative to supported range.
0 = Lowest brightness possible.
100 = Maximum Brightness possible.
comment: The value 0 does not necessarily correspond to a turned off HMI,
as it may not be allowed/supported to turn off the HMI completely.

HMI.DayNightMode:
datatype: string
type: actuator
Expand Down

0 comments on commit 0c1e3c1

Please sign in to comment.