[−][src]Crate accelerometer
Generic embedded-friendly accelerometer support, including traits and types for representing readings from 2 or 3-axis accelerometers.
Also includes optional device position tracking support with statistical methods for smoothing out noisy accelerometer data.
Writing an accelerometer driver
The accelerometer crate is intended to provide a "HAL" for accelerometers
which allows several accelerometer-consuming crates to leverage a common
API and set of vector types for consuming accelerometer data.
Accelerometer drivers are intended to use embedded-hal I2C or SPI
interfaces. The first task of writing a driver is to choose one of these
and write a driver which is able to communicate with the accelerometer and
obtain data.
Next, impl the Accelerometer trait for your driver. You will need to choose a Vector type for representing accelerometer data which best matches the output of your device. This trait has a single method, acceleration, which returns a reading from the accelerometer or an error.
See the ADXL343 crate for an example.
Re-exports
pub use crate::orientation::*; |
pub use crate::error::*; |
Modules
| error | Accelerometer errors - generic over an inner "cause" type (intended to be an underlying I2C or SPI error type, if applicable) |
| orientation | Orientation tracking for accelerometer-equipped devices |
| vector | Algebraic vector types generic over a number of axes and a component type |
Structs
| F32x2 | 2-dimensional XY vector of |
| F32x3 | 3-dimensional XYZ vector of |
| I16x2 | 2-dimensional XY vector of |
| I16x3 | 3-dimensional XYZ vector of |
| I8x2 | 2-dimensional XY vector of |
| I8x3 | 3-dimensional XYZ vector of |
| Iter | Iterator over the components of an algebraic vector |
| U16x2 | 2-dimensional XY vector of |
| U16x3 | 3-dimensional XYZ vector of |
| U8x2 | 2-dimensional XY vector of |
| U8x3 | 3-dimensional XYZ vector of |
Traits
| Accelerometer | Accelerometers which measure acceleration vectors of type |
| Component | Vector components |
| Vector | Vectors with numeric components |