ryanbinns / ttwatch

Linux TomTom GPS Watch Utilities
MIT License
206 stars 67 forks source link

Support reading&exporting Indoor cycling activity into CSV #112

Closed misdoro closed 7 years ago

misdoro commented 7 years ago

Implement exporting indoor cycling activities to CSV files.

The structure of 0x40 tag is as follows:

typedef struct
{
    uint32_t timestamp;
    float    distance_meters;
    uint16_t calories;
    uint16_t cycling_cadence;
} INDOOR_CYCLING_RECORD;

Related to #108 (TCX would be a second step)

Example test file with heart rate & cadence data: Indoor_22-29-42.ttbin.zip

ryanbinns commented 7 years ago

Awesome! Thanks.