From 7832492d87871cfb382b58c1eeb9f182537c0c60 Mon Sep 17 00:00:00 2001 From: Aakash Solanki Date: Sat, 29 Oct 2022 16:21:34 +0200 Subject: Update flutter-cluster-dashboard - Import all flutter-cluster-dashboard changes from master. - Add 'flutter-cluster-dashboard.yaml' file. - Set openrouteservice API Key in local.conf to the variable `OPENROUTE_API_KEY`. - Change SRCREV and SRC_URI Bug-AGL: SPEC-4508 Change-Id: Ic1cd18e290c951443b393840bcf053a549fd2ee2 Signed-off-by: Aakash Solanki --- recipes-demo/kuksa-vss-init/files/kuksa_vss_init.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'recipes-demo/kuksa-vss-init/files/kuksa_vss_init.py') diff --git a/recipes-demo/kuksa-vss-init/files/kuksa_vss_init.py b/recipes-demo/kuksa-vss-init/files/kuksa_vss_init.py index 5453112c9..0177e3c12 100644 --- a/recipes-demo/kuksa-vss-init/files/kuksa_vss_init.py +++ b/recipes-demo/kuksa-vss-init/files/kuksa_vss_init.py @@ -50,6 +50,12 @@ class VSS: self.cruiseControlSpeedSet = "Vehicle.ADAS.CruiseControl.SpeedSet" self.cruiseControlisActive = "Vehicle.ADAS.CruiseControl.IsActive" self.batteryChargingStatus = "Vehicle.Powertrain.Battery.Charging.Status" + # + self.currLat = "Vehicle.Cabin.Infotainment.Navigation.CurrentLocation.Latitude" + self.currLng = "Vehicle.Cabin.Infotainment.Navigation.CurrentLocation.Longitude" + self.desLat = "Vehicle.Cabin.Infotainment.Navigation.DestinationSet.Latitude" + self.desLng = "Vehicle.Cabin.Infotainment.Navigation.DestinationSet.Longitude" + self.steeringInfo = "Vehicle.Cabin.SteeringWheel.Switches.Info" def setInitialValues(self): print("Setting values") @@ -74,6 +80,13 @@ class VSS: self.client.setValue(self.cruiseControlisActive, "false") self.client.setValue(self.cruiseControlSpeedSet, '60') self.client.setValue(self.batteryChargingStatus, "true") + # + self.client.setValue(self.currLat, "31.708643") + self.client.setValue(self.currLng, "76.931882") + self.client.setValue(self.desLat, "31.781456") + self.client.setValue(self.desLng, "76.997469") + # Show the map + self.client.setValue(self.steeringInfo, "true") print("All value set succesfully") -- cgit 1.2.3-korg