pub trait MatrixScanner<const COLS: usize, const ROWS: usize, E = Infallible> {
// Required methods
fn is_boot_key_pressed(&mut self) -> bool;
fn get(&mut self) -> Result<[[bool; COLS]; ROWS], E>;
}
Required Methods§
Sourcefn is_boot_key_pressed(&mut self) -> bool
fn is_boot_key_pressed(&mut self) -> bool
Check whether SW_1_1 is pressed.