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 rotating circles.
#[derive(Debug, Default, Clone, Copy)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
pub enum RotatingDirection {
    /// Clockwise rotation.
    #[default]
    Clockwise,
    /// Counter-clockwise rotation.
    CounterClockwise,
}