lsm6dsox

Crates.iolsm6dsox
lib.rslsm6dsox
version1.0.1
sourcesrc
created_at2024-02-16 14:11:07.069301
updated_at2024-02-16 14:11:07.069301
descriptionPlatform-agnostic embedded-hal driver for the ST LSM6DSOX iNEMO inertial module
homepage
repositoryhttps://git.openlogisticsfoundation.org/silicon-economy/libraries/serum/lsm6dsox
max_upload_size
id1142467
size72,081
Fraunhofer IML Embedded Rust Group (embedded-rust-iml-user)

documentation

README

lsm6dsox

Platform-agnostic embedded-hal driver for the STMicroelectronics LSM6DSOX iNEMO inertial module.

Provided functionality is inspired by the C implementation from ST, but tries to provide a higher level interface where possible.

To provide measurements the [accelerometer] traits and [measurements] crate are utilized.

Resources

Datasheet

LSM6DSOX at st.com

For application hints please also refer to the application note provided by ST.

Features

  • Accelerometer trait implementation
  • embedded-hal I²C support
  • Gyroscope
  • Tap recognition
  • Interrupts
  • Further features may be added in the future

Examples

use accelerometer::Accelerometer;
use lsm6dsox::*;

let mut lsm = lsm6dsox::Lsm6dsox::new(i2c, SlaveAddress::Low, delay);

lsm.setup()?;
lsm.set_accel_sample_rate(DataRate::Freq52Hz)?;
lsm.set_accel_scale(AccelerometerScale::Accel16g)?;
if let Ok(reading) = lsm.accel_norm() {
    println!("Acceleration: {:?}", reading);
}

License

Open Logistics Foundation License
Version 1.3, January 2023

See the LICENSE file in the top-level directory.

Contact

Fraunhofer IML Embedded Rust Group - embedded-rust@iml.fraunhofer.de

Commit count: 0

cargo fmt