Hello,
I am trying to capture some data from the watch and save it to the fit file.
All works fine, but I have one question. I started an timer with 1 second, and every second I will save one data in the fit-file with .setData(value)
This works fine, I get the expected result in the fit file.
My question is, is it possible to save data, lets say twice a second (timer of 500ms), into the fit file?
I tried it with simple numbers (simple increment per timer-intervall) and therefore I got 0,1,2,3,4 at an interval of 1 second and 0,2,4,6,.. at an interval of 0,5 seconds.
So the Counter got incremented but was not saved into the fit file.
Any tips to solve this?