shift-register-driver 0.1.1

Platform agnostic driver for shift register's built using the embedded-hal
Documentation
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;