shift-register-driver

Crates.ioshift-register-driver
lib.rsshift-register-driver
version0.1.1
created_at2018-07-04 12:34:58.609993+00
updated_at2018-07-07 01:55:25.464524+00
descriptionPlatform agnostic driver for shift register's built using the embedded-hal
homepage
repositoryhttps://github.com/JoshMcguigan/shift-register-driver
max_upload_size
id72857
size19,576
Josh Mcguigan (JoshMcguigan)

documentation

README

shift-register-driver Docs Docs

Platform agnostic driver for shift register's built using the embedded-hal

What works

  • Controlling outputs through serial-in parallel-out shift registers with 8 outputs
  • Chaining shift registers up to 128 outputs

TODO

  • Add parallel-out serial-in shift register support

Example

    use shift_register_driver::sipo::ShiftRegister;
    let shift_register = ShiftRegister::new(clock, latch, data);
    {
        let mut outputs = shift_register.decompose();

        for i in 0..8 {
            outputs[i].set_high();
            delay.delay_ms(300u32);
        }

        for i in 0..8 {
            outputs[7-i].set_low();
            delay.delay_ms(300u32);
        }

    }
    // shift_register.release() can optionally be used when the shift register is no longer needed
    //      in order to regain ownership of the original GPIO pins
    let (clock, latch, data) = shift_register.release();

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Commit count: 0

cargo fmt