1
 2
 3
 4
 5
 6
 7
 8
 9
10
//! Platform agnostic driver for shift register's built using the embedded-hal

#![allow(dead_code)]
#![deny(missing_docs)]
#![deny(warnings)]
#![no_std]

extern crate embedded_hal as hal;

pub mod sipo;