ahrs 0.8.0

A Rust port of Madgwick's AHRS algorithm
Documentation
1
2
3
4
5
6
7
8
9
10
//! A collection of AHRS algorithms ported to Rust.

#![cfg_attr(not(feature = "std"), no_std)]
#![crate_name = "ahrs"]

pub use crate::{ahrs::{Ahrs, AhrsError}, madgwick::Madgwick, mahony::Mahony};

mod ahrs;
mod madgwick;
mod mahony;