From e94a6d331ae3e08893cafd5686f4a07f7464f16a Mon Sep 17 00:00:00 2001 From: Kenneth van Ewijk Date: Wed, 21 Oct 2015 00:03:09 +0200 Subject: [PATCH] Fixed data discrepancy --- ErgometerDoctorApplication/Client/SessionWindow.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ErgometerDoctorApplication/Client/SessionWindow.cs b/ErgometerDoctorApplication/Client/SessionWindow.cs index 7bb5a82..64c3513 100644 --- a/ErgometerDoctorApplication/Client/SessionWindow.cs +++ b/ErgometerDoctorApplication/Client/SessionWindow.cs @@ -79,8 +79,8 @@ namespace ErgometerDoctorApplication heartBeat.updateValue(m.HeartBeat); RPM.updateValue(m.RPM); - speed.updateValue(m.Speed); - distance.updateValue(m.Distance); + speed.updateValue(m.Speed*100); + distance.updateValue(m.Distance*100); power.updateValue(m.Power); energy.updateValue(m.Energy); actualpower.updateValue(m.ActualPower);