Skip to content

Commit

Permalink
Add HMI signals (COVESA#512)
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 authored and jdacoello committed Feb 15, 2023
1 parent b383c7d commit 9680e49
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 9680e49

Please sign in to comment.