pub trait InertialSensor {
    fn attitude(&mut self) -> Quaternion<f32>;
    fn gyro(&mut self) -> Vector3<f32>;
}

Required Methods

Implementors