summaryrefslogtreecommitdiffstats
path: root/lib/vehicle-signals/vss_path.dart
blob: 822e304460748ad7feaa8aa24dec2433da136856 (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
37
38
39
40
41
42
43
44
// SPDX-License-Identifier: Apache-2.0
class VSSPath {
  static const String vehicleSpeed = "Vehicle.Speed";

  static const String vehicleEngineSpeed =
      "Vehicle.Powertrain.CombustionEngine.Speed";

  static const String vehicleFuelLevel = "Vehicle.Powertrain.FuelSystem.Level";

  static const String vehicleInsideTemperature =
      "Vehicle.Cabin.HVAC.AmbientAirTemperature";

  static const String vehicleOutsideTemperature =
      "Vehicle.Exterior.AirTemperature";

  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 vehicleFuelRate = "Vehicle.OBD.FuelRate";

  static const String vehicleMediaVolume =
      "Vehicle.Cabin.Infotainment.Media.Volume";
}