shiftreg-spi 0.1.0

SPI-based driver for shift registers such as 74HC595 with embedded-hal API
Documentation
1
2
3
4
5
6
7
#![no_std]

pub mod sipo;
pub mod error;

pub use crate::sipo::{SipoShiftReg, SipoShiftRegPin};
pub use crate::error::ShiftRegError;