From 33d1ea369edc857634143f057109c252a66583af Mon Sep 17 00:00:00 2001 From: Aakash Solanki Date: Fri, 2 Sep 2022 11:55:26 +0200 Subject: Change SRCREV for flutter instrument cluster recipe - Change SRCREV to use latest commit - Change packagename from `ic` to `flutter_cluster_dashboard` - Change kuksa_vss_init.py to add signals for navigation Latest commit of the flutter app includes the new navigation in the instrument cluster, more indicators and unnecessary files and folders are also removed. Bug-AGL: SPEC-4508 Change-Id: I766b410cd66774bfb84eeb0ce9654ed85e8d2af3 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') 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