From 89fe1044184dbe4569214420358144f6576a7cc9 Mon Sep 17 00:00:00 2001 From: Sem van der Hoeven Date: Thu, 29 Oct 2020 23:52:30 +0100 Subject: [PATCH 1/2] test --- ClientApp/Utils/EngineConnection.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ClientApp/Utils/EngineConnection.cs b/ClientApp/Utils/EngineConnection.cs index a717d0c..e8be301 100644 --- a/ClientApp/Utils/EngineConnection.cs +++ b/ClientApp/Utils/EngineConnection.cs @@ -236,7 +236,7 @@ namespace ClientApp.Utils Write("Starting route follow..."); FollowingRoute = true; - SendMessageAndOnResponse(mainCommand.AddBikeModelAnim("bikeID", 0.01f), "bikeID", + SendMessageAndOnResponse(mainCommand.AddBikeModel("bikeID"), "bikeID", (message) => { bikeId = JSONParser.GetResponseUuid(message); -- 2.47.2 From 6725f2ff8553dac5daa6b821553ee0f39cc0a4a2 Mon Sep 17 00:00:00 2001 From: shinichi Date: Thu, 29 Oct 2020 23:59:15 +0100 Subject: [PATCH 2/2] [FIX] changes one line --- DoctorApp/ViewModels/ClientInfoViewModel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DoctorApp/ViewModels/ClientInfoViewModel.cs b/DoctorApp/ViewModels/ClientInfoViewModel.cs index 655c04f..16158ec 100644 --- a/DoctorApp/ViewModels/ClientInfoViewModel.cs +++ b/DoctorApp/ViewModels/ClientInfoViewModel.cs @@ -99,13 +99,13 @@ namespace DoctorApp.ViewModels { //TODO //Parsen van de data you fuck + PatientInfo.BPM = bytes[1]; if (bytes[0] == 0x00) { } else { - PatientInfo.BPM = bytes[1]; if (MySelectedItem == "BPM") { Chart.NewValue(PatientInfo.BPM); -- 2.47.2