Newer
Older
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
This project was created by Alexander Tkaczyk-Harrison & Bradley Griffiths.
All work is our own.
The template for the website was downloaded from: https://html5up.net/prologue
The website can be found in the folder called "PIXL"
Lines:
if(done < 1){
delay(125);
matrix.fillScreen(0);
matrix.setTextColor(colors[1]);
int pass = 0;
matrix.setCursor(x, 4);
matrix.print(F("PIXL"));
if(--x < -36) {
x = matrix.width();
if(++pass >= 3) pass = 0;
}
}
And:
if(exitMessage >= 1){
delay(50);
matrix.fillScreen(0);
matrix.setTextColor(colors[3]);
int pass = 0;
matrix.setCursor(x+50, 4);
matrix.print(F("TURN ME OFF:)"));
if(--x < -200) {
x = matrix.width();
if(++pass >= 3) pass = 0;
}
}
Were appropriated from the file "Arduino Files / matrixtest". "matrixtest" is a free example which is included from downloading the <Adafruit_NeoMatrix.h> library from the Arduino IDE.
The main PIXL file can be found in the folder called "PIXL-FINAL"