embedded_hal_mock/
eh1.rs

1//! This is a collection of types that implement the embedded-hal version 1.x
2//! traits.
3//!
4//! ## Usage
5//!
6//! See module-level docs for more information.
7
8mod error;
9pub use crate::eh1::error::MockError;
10
11pub mod delay;
12pub mod digital;
13pub mod i2c;
14pub mod pwm;
15pub mod serial;
16pub mod spi;