Trait i2csensors::Gyroscope [] [src]

pub trait Gyroscope {
    type Error: Error;
    fn angular_rate_reading(&mut self) -> Result<Vec3, Self::Error>;
}

Associated Types

Required Methods

Returns 'Ok(ang_rate)' if available, otherwise returns 'Err(Self::Error)'

Implementors