lis3dh-spi 0.0.5

no_std driver for the ultra-low-power high-performance 3-axis "nano" accelerometer LIS3DH using SPI
Documentation

lis3dh-spi

build_workflow Crates.io Version Crates.io Downloads No Std

This crate is a no_std driver for the LIS3DH accelerometer using SPI.

Datasheet

https://www.st.com/resource/en/datasheet/lis3dh.pdf

About this driver

This driver is not consuming the SPI bus the communication is running on. Bus has to be passed as mutable reference when interacting with the LIS3DH.

Usage

Add this to your Cargo.toml:

[dependencies]
lis3dh-spi = "0.0.5"

And this to your main.rs


let mut accelerometer = lis3dh_spi::Lis3dh::default();

accelerometer.set_l_p_en(LPEn::HighResolutionNormalMode);
accelerometer.set_output_data_rate(ODR::Hz400);
accelerometer.write_all_settings(&mut chip_select_pin, &mut spi_bus).ok();
let angle_and_gravity_offset = accelerometer.get_angle_and_gravity_offset(&mut chip_select_pin, &mut spi_bus).ok();

License

Licensed under either of

at your option.