lp5018-0.1.1 has been yanked.
lp5018
This crate is a no_std driver for the lp5018 i2c LED driver.
Datasheet
https://www.ti.com/lit/gpn/lp5018
About this driver
This driver does not support all features of the LED driver such as power saving mode, programmable bank support or auto-increment for writing or reading with one transition. It supports setting the brightness of each output.
Usage
Add this to your Cargo.toml:
[]
= "0.8.0"
And this to your main.rs
let mut led_controller_enable_pin = some_pin;
let mut led_controller = new;
led_controller.set_address;
led_controller_enable_pin.set_high.unwrap;
timer.delay_ms;
led_controller.reset.unwrap;
led_controller.init_device.unwrap;
loop