boppo 0.2.0

Crates for the Boppo screen-free tablet
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![doc = include_str!("../README.md")]

use boppo_core::{color, executor, Buttons};

pub async fn press_for_fun() -> ! {
    loop {
        Buttons::all().set_color(color::OFF);
        Buttons::currently_pressed().set_color(color::PURPLE);
        executor::sleep_ms(10).await;
    }
}