Weird cadence behaviour when using the simulator

Hi,

I'm new to this, and I'm trying to make a small datafield which displays 4 values (one in each corner of the datafield), similar to MapDashboardMS, but within a single small datafield, not a double one).  
I have the basics down, and the datafield works. Only when using the CIQ simulator the cadence values are weird.
When using the Data Simulation data source the values are normal, however when I switch to replay a fit file from my bike (exported from Garmin Connect) the cadence numbers seem to be double the value they should be.

This is the code that gets the current cadence:

        if(info has :currentCadence){
            if(info.currentCadence != null){
                mValue3 = info.currentCadence as Number;
            } else {
                mValue3 = 0.0f;
            }
Just plain simple.
I don't understand how the displayed value from the FIT file is double the value it actually is.
 

Top Replies

All Replies