tm1637_embedded_hal/demo.rs
1//! This module contains a demo implementation for the `TM1637` device.
2//!
3//! This module is only available when the `demo` feature of this
4//! library is activated.
5
6#[cfg(feature = "async")]
7#[cfg_attr(docsrs, doc(cfg(feature = "async")))]
8pub mod asynch;
9#[cfg(feature = "blocking")]
10#[cfg_attr(docsrs, doc(cfg(feature = "blocking")))]
11pub mod blocking;