embedded_hal_mock/eh0.rs
1//! This is a collection of types that implement the embedded-hal version 0.x
2//! traits.
3//!
4//! ## Usage
5//!
6//! See module-level docs for more information.
7
8mod error;
9pub use error::MockError;
10
11pub mod adc;
12pub mod delay;
13pub mod digital;
14pub mod i2c;
15pub mod serial;
16pub mod spi;
17#[cfg(feature = "embedded-time")]
18pub mod timer;