microbit_common/display/
mod.rs

1//! Support for the 5x5 LED display.
2//!
3//! There are two APIs for controlling the LED display, [`blocking`] and [`nonblocking`].
4//! The `blocking` API is the simplest to get started with.
5pub mod blocking;
6pub mod nonblocking;