-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunicorn_chars.py
141 lines (119 loc) · 4.08 KB
/
unicorn_chars.py
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
import unicornhat as uh
uh.set_layout(uh.PHAT)
uh.brightness(0.5)
RED = (255, 0, 0)
GREEN = (0, 255, 0)
BLUE = (0, 0, 255)
PURPLE = (225, 0, 235)
YELLOW = (246, 255, 0)
ORANGE = (255, 165, 0)
def print_H(shift, color):
uh.set_pixel(shift + 0, 0, *color)
uh.set_pixel(shift + 0, 1, *color)
uh.set_pixel(shift + 0, 2, *color)
uh.set_pixel(shift + 0, 3, *color)
uh.set_pixel(shift + 1, 2, *color)
uh.set_pixel(shift + 2, 0, *color)
uh.set_pixel(shift + 2, 1, *color)
uh.set_pixel(shift + 2, 2, *color)
uh.set_pixel(shift + 2, 3, *color)
def print_I(shift, color):
uh.set_pixel(shift + 0, 0, *color)
uh.set_pixel(shift + 0, 1, *color)
uh.set_pixel(shift + 0, 2, *color)
uh.set_pixel(shift + 0, 3, *color)
def print_0(shift, color):
uh.set_pixel(shift + 0, 1, *color)
uh.set_pixel(shift + 0, 2, *color)
uh.set_pixel(shift + 1, 0, *color)
uh.set_pixel(shift + 1, 3, *color)
uh.set_pixel(shift + 2, 1, *color)
uh.set_pixel(shift + 2, 2, *color)
def print_1(shift, color):
uh.set_pixel(shift + 0, 0, *color)
uh.set_pixel(shift + 0, 1, *color)
uh.set_pixel(shift + 0, 2, *color)
uh.set_pixel(shift + 0, 3, *color)
def print_2(shift, color):
uh.set_pixel(shift + 0, 0, *color)
uh.set_pixel(shift + 1, 0, *color)
uh.set_pixel(shift + 1, 1, *color)
uh.set_pixel(shift + 0, 2, *color)
uh.set_pixel(shift + 0, 3, *color)
uh.set_pixel(shift + 1, 3, *color)
def print_3(shift, color):
uh.set_pixel(shift + 0, 0, *color)
uh.set_pixel(shift + 1, 0, *color)
uh.set_pixel(shift + 1, 1, *color)
uh.set_pixel(shift + 0, 1, *color)
uh.set_pixel(shift + 1, 2, *color)
uh.set_pixel(shift + 1, 3, *color)
uh.set_pixel(shift + 0, 3, *color)
def print_4(shift, color):
uh.set_pixel(shift + 0, 0, *color)
uh.set_pixel(shift + 0, 1, *color)
uh.set_pixel(shift + 1, 1, *color)
uh.set_pixel(shift + 2, 0, *color)
uh.set_pixel(shift + 2, 1, *color)
uh.set_pixel(shift + 2, 2, *color)
uh.set_pixel(shift + 2, 3, *color)
def print_5(shift, color):
uh.set_pixel(shift + 1, 0, *color)
uh.set_pixel(shift + 0, 0, *color)
uh.set_pixel(shift + 0, 1, *color)
uh.set_pixel(shift + 1, 2, *color)
uh.set_pixel(shift + 1, 3, *color)
uh.set_pixel(shift + 0, 3, *color)
def print_6(shift, color):
print_1(shift, color)
uh.set_pixel(shift + 1, 0, *color)
uh.set_pixel(shift + 1, 2, *color)
uh.set_pixel(shift + 1, 3, *color)
def print_7(shift, color):
uh.set_pixel(shift + 0, 0, *color)
print_1(shift + 1, color)
def print_8(shift, color):
print_1(shift, color)
print_1(shift + 1, color)
def print_9(shift, color):
uh.set_pixel(shift + 0, 0, *color)
uh.set_pixel(shift + 0, 1, *color)
uh.set_pixel(shift + 1, 0, *color)
uh.set_pixel(shift + 1, 1, *color)
uh.set_pixel(shift + 1, 2, *color)
uh.set_pixel(shift + 1, 3, *color)
def print_10(shift, color):
print_1(shift, color)
print_0(shift + 2, color)
def print_11(shift, color):
print_1(shift, color)
print_1(shift+2, color)
def print_smiley(shift, color):
uh.set_pixel(shift + 0, 2, *color)
uh.set_pixel(shift + 1, 0, *color)
uh.set_pixel(shift + 1, 3, *color)
uh.set_pixel(shift + 2, 3, *color)
uh.set_pixel(shift + 3, 0, *color)
uh.set_pixel(shift + 3, 3, *color)
uh.set_pixel(shift + 4, 2, *color)
def print_O(shift, color):
uh.set_pixel(shift + 0, 1, *color)
uh.set_pixel(shift + 0, 2, *color)
uh.set_pixel(shift + 1, 0, *color)
uh.set_pixel(shift + 1, 3, *color)
uh.set_pixel(shift + 2, 1, *color)
uh.set_pixel(shift + 2, 2, *color)
def print_M(shift, color):
uh.set_pixel(shift + 0, 0, *color)
uh.set_pixel(shift + 0, 1, *color)
uh.set_pixel(shift + 0, 2, *color)
uh.set_pixel(shift + 0, 3, *color)
uh.set_pixel(shift + 1, 1, *color)
uh.set_pixel(shift + 2, 0, *color)
uh.set_pixel(shift + 2, 1, *color)
uh.set_pixel(shift + 2, 2, *color)
uh.set_pixel(shift + 2, 3, *color)
def light_all(color):
for i in range(8):
for j in range(4):
uh.set_pixel(i, j, *color)