-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpumpkin.js
129 lines (118 loc) · 4.86 KB
/
pumpkin.js
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
const UnicornHatHD = require('./unicornhat-hd');
const unicornHatHD = new UnicornHatHD('/dev/spidev0.0');
let pumpkinTimeout;
let ghostTimeout;
unicornHatHD.setBrightness(0.95);
unicornHatHD.clear();
let pumpkin = [
[' ', ' ', ' ', ' ', ' ', ' ', ' ', 'G', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' '],
[' ', ' ', ' ', ' ', ' ', ' ', ' ', 'G', 'G', ' ', ' ', ' ', ' ', ' ', ' ', ' '], // top
[' ', ' ', ' ', ' ', ' ', ' ', 'G', 'G', 'G', 'G', ' ', ' ', ' ', ' ', ' ', ' '],
[' ', ' ', ' ', ' ', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', ' ', ' ', ' ', ' '],
[' ', ' ', ' ', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', ' ', ' ', ' '],
[' ', ' ', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', ' ', ' '],
[' ', 'O', 'O', 'O', 'O', 'Y', 'Y', 'O', 'O', 'O', 'O', 'Y', 'Y', 'O', 'O', ' '],
[' ', 'O', 'O', 'O', 'Y', 'Y', 'Y', 'O', 'O', 'O', 'Y', 'Y', 'Y', 'O', 'O', ' '],
[' ', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', ' '],
[' ', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', ' '],
[' ', 'O', 'O', 'Y', 'Y', 'Y', 'O', 'Y', 'Y', 'O', 'O', 'Y', 'Y', 'Y', 'O', ' '],
[' ', 'O', 'O', 'O', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'O', 'O', ' '],
[' ', ' ', 'O', 'O', 'O', 'Y', 'O', 'O', 'Y', 'Y', 'O', 'Y', 'O', 'O', ' ', ' '],
[' ', ' ', ' ', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', ' ', ' ', ' '],
[' ', ' ', ' ', ' ', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', ' ', ' ', ' ', ' '], // bottom
[' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' '],
];
let ghost = [
[' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' '],
[' ', ' ', ' ', ' ', ' ', ' ', 'R', 'R', 'R', 'R', ' ', ' ', ' ', ' ', ' ', ' '],
[' ', ' ', ' ', ' ', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', ' ', ' ', ' ', ' '],
[' ', ' ', ' ', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', ' ', ' ', ' '],
[' ', ' ', 'R', 'R', 'R', 'W', 'W', 'R', 'R', 'R', 'R', 'W', 'W', 'R', ' ', ' '],
[' ', ' ', 'R', 'R', 'W', 'W', 'W', 'W', 'R', 'R', 'W', 'W', 'W', 'W', ' ', ' '],
[' ', ' ', 'R', 'R', 'W', 'W', 'B', 'B', 'R', 'R', 'W', 'W', 'B', 'B', ' ', ' '],
[' ', 'R', 'R', 'R', 'W', 'W', 'B', 'B', 'R', 'R', 'W', 'W', 'B', 'B', 'R', ' '],
[' ', 'R', 'R', 'R', 'R', 'W', 'W', 'R', 'R', 'R', 'R', 'W', 'W', 'R', 'R', ' '],
[' ', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', ' '],
[' ', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', ' '],
[' ', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', ' '],
[' ', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', ' '],
[' ', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', ' '],
[' ', 'R', 'R', ' ', 'R', 'R', 'R', ' ', ' ', 'R', 'R', 'R', ' ', 'R', 'R', ' '],
[' ', 'R', ' ', ' ', ' ', 'R', 'R', ' ', ' ', 'R', 'R', ' ', ' ', ' ', 'R', ' '],
];
function drawPumpkin() {
for (let row = 0; row < pumpkin.length; row++) {
const pixels = pumpkin[row];
for (let p = 0; p < pixels.length; p++) {
if (pixels[p] == "G") {
unicornHatHD.setPixel(row, p, 0, 128, 0);
}
if (pixels[p] == "O") {
unicornHatHD.setPixel(row, p, 204, 136, 0);
}
if (pixels[p] == "Y") {
unicornHatHD.setPixel(row, p, 0, 0, 0);
}
if (pixels[p] == " ") {
unicornHatHD.setPixel(row, p, 0, 0, 0);
}
}
}
unicornHatHD.rotate();
// unicornHatHD.rotate();
// unicornHatHD.rotate();
unicornHatHD.show(true, false);
pumpkinTimeout = setTimeout(() => {
pumpkin[6].reverse();
pumpkin[7].reverse();
pumpkin[10].reverse();
pumpkin[11].reverse();
drawPumpkin();
}, 550)
}
function drawGhost() {
for (let row = 0; row < ghost.length; row++) {
const pixels = ghost[row];
for (let p = 0; p < pixels.length; p++) {
if (pixels[p] == "R") {
unicornHatHD.setPixel(row, p, 255, 0, 0);
}
if (pixels[p] == "W") {
unicornHatHD.setPixel(row, p, 255, 255, 255);
}
if (pixels[p] == " " || pixels[p] == "B") {
unicornHatHD.setPixel(row, p, 0, 0, 0);
}
}
}
unicornHatHD.rotate();
// unicornHatHD.rotate();
// unicornHatHD.rotate();
unicornHatHD.show(true, false);
ghostTimeout = setTimeout(() => {
ghost[3].reverse();
ghost[4].reverse();
ghost[5].reverse();
ghost[6].reverse();
ghost[7].reverse();
ghost[8].reverse();
drawGhost();
}, 550)
}
let sceneCounter = 0;
function alternateScene() {
if (sceneCounter % 2 == 0) {
clearTimeout(ghostTimeout);
drawPumpkin();
} else {
clearTimeout(pumpkinTimeout);
drawGhost();
}
sceneCounter++;
setTimeout(() => {
alternateScene();
}, 10000)
}
alternateScene();
// drawPumpkin();
// drawGhost();