In my DataField I write to the FIT-File.
// Create the custom FIT data field we want to record.
verticalSpeedFitField = DataField.createField(
"vertical_speed",
VERTICALSPEED_FIELD_ID,
Fit.DATA_TYPE_UINT16,
{:mesgType=>Fit.MESG_TYPE_RECORD, :units=>"m/h"}
);
verticalSpeedFitField.setData(0);
//and onceASecond with
verticalSpeedFitField.setData(myVerticalSpeed.toNumber());
The goal is to see a graph with these values in The Garmin Connect Activities (https://connect.garmin.com/modern/activities)
But I cant see anything from my VerticalSpeed there!
What more do I have to do to make this happen?
Tks