10 releases (5 breaking)

0.6.0 Jun 5, 2024
0.5.2 Dec 17, 2023
0.5.1 Apr 9, 2023
0.4.1 Sep 17, 2022
0.1.2 Feb 15, 2021

#166 in Hardware support

Download history 33/week @ 2024-03-30 10/week @ 2024-04-06 145/week @ 2024-06-01 15/week @ 2024-06-08 2/week @ 2024-06-15 1/week @ 2024-06-22

163 downloads per month

MIT license

47KB
1K SLoC

Build Status Docs.rs Crates.io

Table of Contents

About the Project 📃

This is a simple driver for ST's ism330dhcx sensor.

Documentation for that sensor can be found at ST's website

Usage 👀

Check out the examples folder for simple implementation

To declare a sensor is pretty simple:

let sensor = Ism330Dhcx::new(&mut i2c).unwrap()

If you want to use another address for the chip, you can do:

let sensor = Ism330Dhcx::new_with_address(&mut i2c, 0x6au8).unwrap()

Or alter it after the fact

sensor.set_address(0x6au8);

All registers have the bits addressed by their function, for example here se set the BOOT register in the CTRL_3C register to 1

sensor.ctrl3c.set_boot(i2c, true).unwrap();

For bits that operate together, they have their custom type abstracted. For example, to set the accelerometer data rate you have to operate 4 bits. But here you just have to specify your desired data rate and the driver takes care of it.

// Sets the following bits
// ODR_XL3 to 0
// ODR_XL2 to 0
// ODR_XL1 to 1
// ODR_XL0 to 1

sensor
    .ctrl1xl
    .set_accelerometer_data_rate(i2c, ctrl1xl::Odr_Xl::Hz52)
    .unwrap();

Help wanted 🤝

All contributions are welcome!

If you are using or plan to use this create don't hesitate to open an issue or a PR.

Multiple registers are yet to be referenced!

License

See LICENSE for more details.

Dependencies

~0.7–1.2MB
~26K SLoC