#embedded-hal #hal #spi #tlc5947 #tlc59711

tlc59xxx

Embedded-hal implementation for the TLC5947 & TLC59711

2 releases

0.1.1 Sep 1, 2019
0.1.0 Aug 27, 2019

#74 in #spi

24 downloads per month

MIT license

12KB
226 lines

TLC59xxx

Embedded-hal implementation for the TLC5947 & TLC59711

Example

use linux_embedded_hal::{Pin, Spidev};
use tlc59xxx::TLC5947;

fn main() {
    let spi = Spidev::open("/dev/spidev0.0").unwrap();
    let lat = Pin::new(127);
    let mut tlc = TLC5947::new(spi, lat, 1);

    tlc.set_rgb(0, (200, 100, 4000));
    tlc.write().unwrap();

    let (_spi, _pin) = tlc.destroy();
}

Dependencies

~1MB
~28K SLoC