microbit/lib.rs
1//! microbit contains everything required to get started with the use of Rust
2//! to create firmwares for the fabulous [BBC micro:bit](https://microbit.org)
3//! microcontroller board.
4//!
5//! This crate is for the new micro:bit (V2) pictured below on the right. If
6//! your micro:bit looks like the one on the left you need the
7//! [microbit](https://crates.io/crates/microbit) crate.
8//!
9//! [<img src="https://github.com/microbit-foundation/microbit-svg/raw/master/microbit-drawing-back-1-5.png" width="372px" height="300px">](https://github.com/microbit-foundation/microbit-svg/blob/master/microbit-drawing-back-1-5.png)
10//! [<img src="https://github.com/microbit-foundation/microbit-svg/raw/master/microbit-drawing-back-2.png" width="372px" height="300px">](https://github.com/microbit-foundation/microbit-svg/blob/master/microbit-drawing-back-2.png)
11#![doc(html_root_url = "https://docs.rs/microbit-v2/0.15.1")]
12#![no_std]
13#![deny(missing_docs)]
14#![allow(non_camel_case_types)]
15
16pub use microbit_common::*;