fit 0.5.0

A small crate used for reading and decoding FIT files generated by sports devices.
Documentation
1
2
3
4
5
6
7
8
9
10
use std::path::PathBuf;

fn main() {
    let filepath = PathBuf::from("data/working_wahoo_dev_fields.fit_");
    let f = fit::Fit::new(&filepath);
    for m in f {
        m.kind;
    }

}