tm1637-embedded-hal 0.5.2

A platform agnostic driver to interface with the TM1637 (7-segment LED display) using embedded-hal and embedded-hal-async.
Documentation
1
2
3
4
5
6
7
8
9
10
/// Direction for scrolling bytes.
#[derive(Debug, Default, Clone, Copy)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
pub enum ScrollDirection {
    /// Move bytes from left to right.
    #[default]
    LeftToRight,
    /// Move bytes from right to left.
    RightToLeft,
}