dcmimu 0.3.0

no_std DCM IMU implementation
Documentation
1
2
3
4
5
6
7
8
9
extern crate dcmimu;

use dcmimu::DCMIMU;

fn main() {
    let mut imu = DCMIMU::new();
    imu.update_only((0.0, 0.0, 0.0), (0.0, 0.0, 0.0), 0.1);
    let dcm = imu.to_euler_angles();
}