tm1637_embedded_hal/
demo.rs

1
2
3
4
5
6
7
8
9
10
11
//! This module contains a demo implementation for the `TM1637` device.
//!
//! This module is only available when the `demo` feature of this
//! library is activated.

#[cfg(feature = "async")]
#[cfg_attr(docsrs, doc(cfg(feature = "async")))]
pub mod asynch;
#[cfg(feature = "blocking")]
#[cfg_attr(docsrs, doc(cfg(feature = "blocking")))]
pub mod blocking;