summaryrefslogtreecommitdiffstats
path: root/lib/vehicle-signals/vss_path.dart
diff options
context:
space:
mode:
authorScott Murray <scott.murray@konsulko.com>2023-09-24 12:45:03 -0400
committerScott Murray <scott.murray@konsulko.com>2023-09-24 12:55:47 -0400
commit80a4f8d75a66c22a23e825d4c0fb4065e2e58cb8 (patch)
tree07751588fbd9f0a5cecceabe593a716f01facbac /lib/vehicle-signals/vss_path.dart
parent9bc83e64c508ad8c69a3950d5421774f9b53a31f (diff)
Rework to use KUKSA.val databroker gRPC API
Rework to move from the WebSocket API with the older KUKSA.val server to the gRPC "VAL" API of the databroker. Changes include: - All VISS WebSocket API code has been removed, and the signal providers replumbed to be driven by a new VssClient class with a dashboard-specific child class to hold all the gRPC API handling. - The generated code for the VAL API and its dependencies has been checked in under lib/generated, as there still does not seem to be a good way to generate it during the Flutter build. - The "flutter-" prefix has been dropped from the configuration file name (i.e. it's now just "cluster-dashboard.yaml") to match the naming used for the other Flutter applications. The authorization token field name has been renamed to "authorization", and there are new "use-tls" and "ca-certificate" configuration fields. TLS is disabled by default for now, and the default CA certificate is /etc/kuksa.val/CA.pem. - Bumped minimum SDK version to 2.18 in pubspec.yaml to enable "super" keyword support. This matches what the version was set to in the other applications. - The unused navigation support has been removed to simplify maintenance, as it is more likely that it will be replaced with something else in the future than fixed to be usable. - Removed .dart_tool generated output that had been checked in, and added .gitignore file from flutter-homescreen so that things will hopefully stay clean in the future. Since pubspec.lock is not checked in here, it has also been added to .gitignore. Bug-AGL: SPEC-4762 Signed-off-by: Scott Murray <scott.murray@konsulko.com> Change-Id: Id35c569cdbb8476a527717ece7b4bb369c4874b7
Diffstat (limited to 'lib/vehicle-signals/vss_path.dart')
-rw-r--r--lib/vehicle-signals/vss_path.dart89
1 files changed, 89 insertions, 0 deletions
diff --git a/lib/vehicle-signals/vss_path.dart b/lib/vehicle-signals/vss_path.dart
new file mode 100644
index 0000000..78538b9
--- /dev/null
+++ b/lib/vehicle-signals/vss_path.dart
@@ -0,0 +1,89 @@
+// SPDX-License-Identifier: Apache-2.0
+
+class VSSPath {
+ 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 vehicleCoolantTemp =
+ "Vehicle.Powertrain.CombustionEngine.ECT";
+
+ static const String vehicleAmbientAirTemperature =
+ "Vehicle.Exterior.AirTemperature";
+
+ static const String vehicleLeftIndicator =
+ "Vehicle.Body.Lights.DirectionIndicator.Left.IsSignaling";
+
+ static const String vehicleRightIndicator =
+ "Vehicle.Body.Lights.DirectionIndicator.Right.IsSignaling";
+
+ //Selected Gear output=> 0=Neutral, 1/2/..=Forward, -1/..=Reverse, 126=Park, 127=Drive
+ static const String vehicleSelectedGear =
+ "Vehicle.Powertrain.Transmission.SelectedGear";
+
+ static const String vehicleLowBeamOn = "Vehicle.Body.Lights.Beam.Low.IsOn";
+
+ static const String vehicleHighBeamOn = "Vehicle.Body.Lights.Beam.High.IsOn";
+
+ static const String vehicleParkingLightOn = "Vehicle.Body.Lights.Parking.IsOn";
+
+ static const String vehicleHazardLightOn = "Vehicle.Body.Lights.Hazard.IsSignaling";
+
+ static const String vehicleTravelledDistance = "Vehicle.TravelledDistance";
+
+ static const String vehicleTrunkLocked = "Vehicle.Body.Trunk.Rear.IsLocked";
+
+ static const String vehicleTrunkOpen = "Vehicle.Body.Trunk.Rear.IsOpen";
+
+ // \"normal\",\"sport\",\"economy\",\"snow\",\"rain\"]
+ static const String vehiclePerformanceMode =
+ "Vehicle.Powertrain.Transmission.PerformanceMode";
+
+ static const String vehicleMIL = "Vehicle.OBD.Status.IsMILOn";
+
+ static const String vehicleCruiseControlError =
+ "Vehicle.ADAS.CruiseControl.IsError";
+
+ static const String vehicleCruiseControlSpeedSet =
+ "Vehicle.ADAS.CruiseControl.SpeedSet";
+
+ static const String vehicleCruiseControlActive =
+ "Vehicle.ADAS.CruiseControl.IsActive";
+
+ static const String vehicleBatteryChargingStatus =
+ "Vehicle.Powertrain.TractionBattery.Charging.IsCharging";
+
+ static const String steeringCruiseEnable =
+ "Vehicle.Cabin.SteeringWheel.Switches.CruiseEnable";
+
+ static const String steeringCruiseSet =
+ "Vehicle.Cabin.SteeringWheel.Switches.CruiseSet";
+
+ static const String steeringCruiseResume =
+ "Vehicle.Cabin.SteeringWheel.Switches.CruiseResume";
+
+ static const String steeringCruiseCancel =
+ "Vehicle.Cabin.SteeringWheel.Switches.CruiseCancel";
+
+ static const String steeringLaneDepWarn =
+ "Vehicle.Cabin.SteeringWheel.Switches.LaneDepartureWarning";
+
+ static const String steeringInfo =
+ "Vehicle.Cabin.SteeringWheel.Switches.Info";
+
+ static const String vehicleDistanceUnit =
+ "Vehicle.Cabin.Infotainment.HMI.DistanceUnit";
+
+ static const String vehicleCurrLat = "Vehicle.CurrentLocation.Latitude";
+
+ static const String vehicleCurrLon = "Vehicle.CurrentLocation.Longitude";
+
+ static const String vehicleDestLat =
+ "Vehicle.Cabin.Infotainment.Navigation.DestinationSet.Latitude";
+
+ static const String vehicleDestLon =
+ "Vehicle.Cabin.Infotainment.Navigation.DestinationSet.Longitude";
+}