adafruit-7segment 0.1.0

Small wrapper on top of the `ht16k33` crate to drive an Adafruit 7-segment LED numeric Backpack
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub const HEX_NUMBER_FONT_TABLE: [u8; 16] = [
    0x3F, // 0
    0x06, // 1
    0x5B, // 2
    0x4F, // 3
    0x66, // 4
    0x6D, // 5
    0x7D, // 6
    0x07, // 7
    0x7F, // 8
    0x6F, // 9
    0x77, // a
    0x7C, // b
    0x39, // C
    0x5E, // d
    0x79, // E
    0x71, // F
];