-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSymbol_8x8.h
51 lines (46 loc) · 2.4 KB
/
Symbol_8x8.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#ifndef SYMBOL_8x8_H
#define SYMBOL_8x8_H
// Icon patterns were made with
// https://fontstruct.com
GLCDFONTDECL(Symbol_8x8) = {
0x0, 0x1, // size of one indicates fixed font width and no pixel padding
8, // width
8, // height
' ', // first char
34, // char count
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // <space>
0x00,0x00,0x00,0x00,0x5F,0x00,0x00,0x00, // !
0x00,0x00,0x00,0x03,0x00,0x03,0x00,0x00, // "
0x00,0x24,0x7E,0x24,0x24,0x7E,0x24,0x00, // #
0x00,0x2E,0x2A,0x7F,0x2A,0x3A,0x00,0x00, // $
0x00,0x46,0x26,0x10,0x08,0x64,0x62,0x00, // %
0x00,0x20,0x54,0x4A,0x54,0x20,0x50,0x00, // &
0x00,0x00,0x00,0x04,0x02,0x00,0x00,0x00, // '
0x00,0x00,0x00,0x3C,0x42,0x00,0x00,0x00, // (
0x00,0x00,0x00,0x42,0x3C,0x00,0x00,0x00, // )
0x00,0x10,0x54,0x38,0x54,0x10,0x00,0x00, // *
0x00,0x10,0x10,0x7C,0x10,0x10,0x00,0x00, // +
0x00,0x00,0x00,0x80,0x60,0x00,0x00,0x00, // ,
0x00,0x10,0x10,0x10,0x10,0x10,0x00,0x00, // -
0x00,0x00,0x00,0x60,0x60,0x00,0x00,0x00, // .
0x00,0x40,0x20,0x10,0x08,0x04,0x00,0x00, // /
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 0 // bar
0x00,0x80,0x80,0x80,0x80,0x80,0x80,0x80, // 1 // bar
0x00,0xC0,0xC0,0xC0,0xC0,0xC0,0xC0,0xC0, // 2 // bar
0x00,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0, // 3 // bar
0x00,0xF0,0xF0,0xF0,0xF0,0xF0,0xF0,0xF0, // 4 // bar
0x00,0xF8,0xF8,0xF8,0xF8,0xF8,0xF8,0xF8, // 5 // bar
0x00,0xFC,0xFC,0xFC,0xFC,0xFC,0xFC,0xFC, // 6 // bar
0x00,0xFE,0xFE,0xFE,0xFE,0xFE,0xFE,0xFE, // 7 // bar
0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, // 8 // bar
0x0C,0x52,0x52,0x52,0x52,0x3C,0x00,0x00, // 9
0b00000000,0b00100000,0b01110000,0b01111111,0b01110101,0b00100000,0b00000000,0b00000000, // : // termometer
0b00111110,0b00100011,0b00100010,0b00100010,0b00100010,0b00100010,0b00100011,0b00111110, // ; // loco battery
0b01000001,0b00100010,0b00010100,0b00001000,0b00010100,0b00100010,0b01000001,0b00000000, // < // cross
0b00010100,0b00011100,0b01110111,0b00100010,0b01110111,0b00011100,0b00010100,0b00000000, // = // motor
0b01100000,0b00000000,0b01110000,0b00000000,0b01111000,0b00000000,0b01111110,0b00000000, // > // radio
0x10,0x08,0x04,0x18,0x20,0x10,0x08,0x00, // ? // current
0b00111110,0b00100010,0b00100010,0b00100010,0b00100010,0b00100010,0b00100010,0b00011100, // @ // remote battery
0b00111110,0b00100010,0b00100010,0b00101100,0b00011010,0b00100010,0b00100010,0b00011100, // A // remote battery charging
};
#endif