microbit-common 0.13.0

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