font8x8 0.3.1

8x8 monochrome bitmap font for rendering.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[cfg(feature = "default")]
extern crate font8x8;

#[cfg(feature = "default")]
use font8x8::*; //{BLOCK_FONTS, UnicodeFonts};

#[cfg(feature = "default")]
fn main() {
    // Use the convenience `print_set` method to view all the
    // Block Fonts on your screen.
    BLOCK_FONTS.print_set();
}

#[cfg(not(feature = "default"))]
fn main() {}