-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdrift_bottomup.ino
133 lines (120 loc) · 2.23 KB
/
drift_bottomup.ino
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
/*
Visual Stimuli Drift: Upwards direction from botton to top
Works with 8x8 Adafruit LED Matrix backpacks
Set up for backpacks with 2 Address Select pins: 0x70
*/
#include <Wire.h>
#include <Adafruit_GFX.h>
#include "Adafruit_LEDBackpack.h"
Adafruit_8x8matrix matrix = Adafruit_8x8matrix();
void setup() {
Serial.begin(9600);
matrix.begin(0x70);
}
static const uint8_t PROGMEM
drift1[] =
{ B11111111,
B00000000,
B00000000,
B00000000,
B00000000,
B00000000,
B00000000,
B00000000 },
drift2[] =
{B00000000,
B11111111,
B00000000,
B00000000,
B00000000,
B00000000,
B00000000,
B00000000},
drift3[] =
{B00000000,
B00000000,
B11111111,
B00000000,
B00000000,
B00000000,
B00000000,
B00000000},
drift4[] =
{B00000000,
B00000000,
B00000000,
B11111111,
B00000000,
B00000000,
B00000000,
B00000000},
drift5[] =
{B00000000,
B00000000,
B00000000,
B00000000,
B11111111,
B00000000,
B00000000,
B00000000},
drift6[] =
{B00000000,
B00000000,
B00000000,
B00000000,
B00000000,
B11111111,
B00000000,
B00000000},
drift7[] =
{B00000000,
B00000000,
B00000000,
B00000000,
B00000000,
B00000000,
B11111111,
B00000000},
drift8[] =
{B00000000,
B00000000,
B00000000,
B00000000,
B00000000,
B00000000,
B00000000,
B11111111};
void loop() {
matrix.clear();
matrix.drawBitmap(0, 0, drift8, 8, 8, LED_ON);
matrix.writeDisplay();
delay(50);
matrix.clear();
matrix.drawBitmap(0, 0, drift7, 8, 8, LED_ON);
matrix.writeDisplay();
delay(50);
matrix.clear();
matrix.drawBitmap(0, 0, drift6, 8, 8, LED_ON);
matrix.writeDisplay();
delay(50);
matrix.clear();
matrix.drawBitmap(0, 0, drift5, 8, 8, LED_ON);
matrix.writeDisplay();
delay(50);
matrix.clear();
matrix.drawBitmap(0, 0, drift4, 8, 8, LED_ON);
matrix.writeDisplay();
delay(50);
matrix.clear();
matrix.drawBitmap(0, 0, drift3, 8, 8, LED_ON);
matrix.writeDisplay();
delay(50);
matrix.clear();
matrix.drawBitmap(0, 0, drift2, 8, 8, LED_ON);
matrix.writeDisplay();
delay(50);
matrix.clear();
matrix.drawBitmap(0, 0, drift1, 8, 8, LED_ON);
matrix.writeDisplay();
delay(50);
}