-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchars.h
75 lines (67 loc) · 881 Bytes
/
chars.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#ifndef _CHARS_H
#define _CHARS_H
//Special symbols shortcuts
byte char_degree = B11011111;
byte char_key = B00000000;
byte char_black[6] = {
B11111110,
B00000001, //need mapping
B00000010, //need mapping
B00000011, //need mapping
B00000100, //need mapping
B11111111
};
//Special symbols bitmaps
byte map_key[8] = {
B00100,
B01010,
B00100,
B00100,
B00110,
B00111,
B00100,
B00000,
};
byte map_black[4][8] = {
{
B10000,
B10000,
B10000,
B10000,
B10000,
B10000,
B10000,
B10000
},
{
B11000,
B11000,
B11000,
B11000,
B11000,
B11000,
B11000,
B11000
},
{
B11100,
B11100,
B11100,
B11100,
B11100,
B11100,
B11100,
B11100
},
{
B11110,
B11110,
B11110,
B11110,
B11110,
B11110,
B11110,
B11110
},
};
#endif //_CHARS_H