embedded-hal-mock 0.11.1

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

mod error;
pub use error::MockError;

pub mod adc;
pub mod delay;
pub mod digital;
pub mod i2c;
pub mod serial;
pub mod spi;
#[cfg(feature = "embedded-time")]
pub mod timer;