1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! This is a collection of types that implement the embedded-hal version 1.x traits.
//!
//! ## Usage
//!
//! See module-level docs for more information.

mod error;
pub use crate::eh1::error::MockError;

pub mod delay;
pub mod i2c;
pub mod pin;
pub mod pwm;
pub mod serial;
pub mod spi;