shift_register_driver/
lib.rs

1//! Platform agnostic driver for shift register's built using the embedded-hal
2
3#![allow(dead_code)]
4#![deny(missing_docs)]
5#![deny(warnings)]
6#![no_std]
7
8extern crate embedded_hal as hal;
9
10pub mod sipo;