summaryrefslogtreecommitdiffstats
path: root/lib/Kuksa-server/vehicle_server_path.dart
blob: 8d8923c36ec7804503e025c794dd0340ac022e91 (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
// SPDX-License-Identifier: Apache-2.0
class VSPath {
  static const String vehicleSpeed = "Vehicle.Speed";
  static const String vehicleEngineRPM =
      "Vehicle.Powertrain.CombustionEngine.Speed";
  static const String vehicleFuelLevel = "Vehicle.Powertrain.FuelSystem.Level";




  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 vehicleFuelRate = "Vehicle.OBD.FuelRate";
  static const String vehicleInsideTemperature =
      "Vehicle.Cabin.HVAC.AmbientAirTemperature";
}