blob: e422aff1bb600c70af374458be6d024f5365b356 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
// SPDX-License-Identifier: Apache-2.0
class VSPath {
static const String vehicleTrunkLocked = "Vehicle.Body.Trunk.IsLocked";
static const String vehicleTrunkOpen = "Vehicle.Body.Trunk.IsOpen";
static const String vehicleAmbientAirTemperature =
"Vehicle.AmbientAirTemperature";
static const String vehicleFrontLeftTire =
"Vehicle.Chassis.Axle.Row1.Wheel.Left.Tire.Pressure";
static const String vehicleFrontRightTire =
"Vehicle.Chassis.Axle.Row1.Wheel.Right.Tire.Pressure";
static const String vehicleRearLeftTire =
"Vehicle.Chassis.Axle.Row2.Wheel.Left.Tire.Pressure";
static const String vehicleRearRightTire =
"Vehicle.Chassis.Axle.Row2.Wheel.Right.Tire.Pressure";
static const String vehicleIsChildLockActiveLeft =
"Vehicle.Cabin.Door.Row2.Left.IsChildLockActive";
static const String vehicleIsChildLockActiveRight =
"Vehicle.Cabin.Door.Row2.Right.IsChildLockActive";
static const String vehicleCurrentLongitude =
"Vehicle.CurrentLocation.Longitude";
static const String vehicleCurrentLatitude =
"Vehicle.CurrentLocation.Latitude";
static const String vehicleInsideTemperature =
"Vehicle.Cabin.HVAC.AmbientAirTemperature";
static const String vehicleFrontLeftAc =
"Vehicle.Cabin.HVAC.Station.Row1.Left.AirDistribution";
}
|