1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! This is a [bit banging] implementation of the [`embedded-hal`] traits.
//!
//! [bit banging]: https://en.wikipedia.org/wiki/Bit_banging
//! [`embedded-hal`]: https://github.com/rust-embedded/embedded-hal
//!
//! ## Usage examples
//!
//! See usage examples in the examples folder in the crate sources

#![no_std]
#![deny(missing_docs)]

pub mod i2c;
pub mod serial;
pub mod spi;