This is a embedded-hal driver for X-Powers' Power Management IC AXP173.
It's device-agnostic and uses embedded-hal's Write
/WriteRead
for I2C communication.
Add dependency to Cargo.toml
:
bash
cargo add axp173
Instantiate and init the device:
```rust // ... declare and configure your I2c peripheral ...
// Init BNO055 IMU let axp173 = axp173::Axp173::new(i2c);
axp173.init()?;
Ok(axp173) ```
TODO
TODO
What is done and tested and what is not yet: