bitbang_hal/lib.rs
1//! This is a [bit banging] implementation of the [`embedded-hal`] traits.
2//!
3//! [bit banging]: https://en.wikipedia.org/wiki/Bit_banging
4//! [`embedded-hal`]: https://github.com/rust-embedded/embedded-hal
5//!
6//! ## Usage examples
7//!
8//! See usage examples in the examples folder in the crate sources
9
10#![no_std]
11#![deny(missing_docs)]
12
13pub mod i2c;
14pub mod serial;
15pub mod spi;