-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsevenSegmentBold.c
19 lines (18 loc) · 1.98 KB
/
sevenSegmentBold.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
* Bitmaps for simulating 7-segment numeric LED displays on an OLED.
* All bitmaps are 16 wide x 24 high and are padded with zeros where needed to fit the space.
*/
unsigned char sevenSegmentBold[10][48] = {
{255,232,127,216,191,184,192,56,224,56,224,56,224,56,224,56,224,56,192,24,128,8,0,0,128,8,192,24,224,56,224,56,224,56,224,56,224,56,192,56,191,184,127,216,255,232,0,0},
{0,8,0,24,0,56,0,56,0,56,0,56,0,56,0,56,0,56,0,24,0,8,0,0,0,8,0,24,0,56,0,56,0,56,0,56,0,56,0,56,0,56,0,24,0,8,0,0},
{255,232,127,216,63,184,0,56,0,56,0,56,0,56,0,56,0,56,0,24,63,232,127,240,191,224,192,0,224,0,224,0,224,0,224,0,224,0,192,0,191,128,127,192,255,224,0,0},
{255,232,127,216,63,184,0,56,0,56,0,56,0,56,0,56,0,56,0,24,63,232,127,240,63,232,0,24,0,56,0,56,0,56,0,56,0,56,0,56,63,184,127,216,255,232,0,0},
{0,8,0,24,128,56,192,56,224,56,224,56,224,56,224,56,224,56,192,24,191,232,127,240,63,232,0,24,0,56,0,56,0,56,0,56,0,56,0,56,0,56,0,24,0,8,0,0},
{255,224,127,192,191,128,192,0,224,0,224,0,224,0,224,0,224,0,192,0,191,224,127,240,63,232,0,24,0,56,0,56,0,56,0,56,0,56,0,56,63,184,127,216,255,232,0,0},
{255,224,127,192,191,128,192,0,224,0,224,0,224,0,224,0,224,0,192,0,191,224,127,240,191,232,192,24,224,56,224,56,224,56,224,56,224,56,192,56,191,184,127,216,255,232,0,0},
{255,232,127,216,63,184,0,56,0,56,0,56,0,56,0,56,0,56,0,24,0,8,0,0,0,8,0,24,0,56,0,56,0,56,0,56,0,56,0,56,0,56,0,24,0,8,0,0},
{255,232,127,216,191,184,192,56,224,56,224,56,224,56,224,56,224,56,192,24,191,232,127,240,191,232,192,24,224,56,224,56,224,56,224,56,224,56,192,56,191,184,127,216,255,232,0,0},
{255,232,127,216,191,184,192,56,224,56,224,56,224,56,224,56,224,56,192,24,191,232,127,240,63,232,0,24,0,56,0,56,0,56,0,56,0,56,0,56,63,184,127,216,255,232,0,0}
};
unsigned char plusBold = {0,0,0,0,0,0,0,0,2,0,7,0,7,0,7,0,7,0,2,0,125,240,255,248,125,240,2,0,7,0,7,0,7,0,7,0,2,0,0,0,0,0,0,0,0,0,0,0};
unsigned char minusBold = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,240,255,248,125,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};