Hi
I have created an APP for a vivoactive which gets some info from the activity info class
Distance = (activityInfo.elapsedDistance.toFloat() * 0.001);
Maxspeed = activityInfo.maxSpeed * 3.6;
Ascend = activityInfo.totalAscent;
Descend = activityInfo.totalDescent;
myTimer = activityInfo.elapsedTime / 1000;
(These are all in the onUpdate(dc) function)
Distance, maxspeed and elapsedtime are fine (checked it with my Garmin 500 EDGE), but TotalAscend and TotalDescend are way off.
I did a flat excercise and got 100/106 meters of Ascend and descend. On my Garmin it was 11/12
Is tis a bug. or am I doing something wrong.