pub type Bitmap<const C: usize, const R: usize> = [[bool; C]; R];
Expand description
This is an alias for a C-by-R row-major array-of-arrays of booleans. Arrays of this form can be
written to an LcdScreen
using the draw_bitmap
method. This alias can be used as a convenience
to generate the bitmaps you want to draw to the LCD screen.