-
Notifications
You must be signed in to change notification settings - Fork 0
/
lightshow.ino
235 lines (209 loc) · 5.42 KB
/
lightshow.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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
//Pin connected to ST_CP of 74HC595
int latchPin = 8;
//Pin connected to SH_CP of 74HC595
int clockPin = 12;
////Pin connected to DS of 74HC595
int dataPin = 11;
int buttonPin = 3;
void setup() {
pinMode(latchPin, OUTPUT);
pinMode(buttonPin, INPUT);
}
void loop() {
int buttonState = digitalRead(buttonPin);
if(buttonState == LOW){
song();
}
}
void lightShiftPinA(int p) {
int pin;
pin = 1 << p;
shiftOut(dataPin, clockPin, pin);
}
void shiftOut(int myDataPin, int myClockPin, byte myDataOut) {
// This shifts 8 bits out MSB first,
//on the rising edge of the clock,
//clock idles low
int pinState;
pinMode(myClockPin, OUTPUT);
pinMode(myDataPin, OUTPUT);
digitalWrite(myDataPin, 0);
digitalWrite(myClockPin, 0);
//for each bit in the byte myDataOut�
//NOTICE THAT WE ARE COUNTING DOWN in our for loop
//This means that %00000001 or "1" will go through such
//that it will be pin Q0 that lights.
for (int i = 7; i >= 0; i--) {
digitalWrite(myClockPin, 0);
//if the value passed to myDataOut and a bitmask result
// true then... so if we are at i=6 and our value is
// %11010100 it would the code compares it to %01000000
// and proceeds to set pinState to 1.
if ( myDataOut & (1 << i) ) {
pinState = 1;
}
else {
pinState = 0;
}
//Sets the pin to HIGH or LOW depending on pinState
digitalWrite(myDataPin, pinState);
//register shifts bits on upstroke of clock pin
digitalWrite(myClockPin, 1);
//zero the data pin after shift to prevent bleed through
digitalWrite(myDataPin, 0);
}
//stop shifting
digitalWrite(myClockPin, 0);
}
void blinkAllLights(int n, int d) {
digitalWrite(latchPin, 0);
shiftOut(dataPin, clockPin, 0);
shiftOut(dataPin, clockPin, 0);
digitalWrite(latchPin, 1);
delay(200);
for (int x = 0; x < n; x++) {
digitalWrite(latchPin, 0);
shiftOut(dataPin, clockPin, 255);
shiftOut(dataPin, clockPin, 255);
digitalWrite(latchPin, 1);
delay(d);
digitalWrite(latchPin, 0);
shiftOut(dataPin, clockPin, 0);
shiftOut(dataPin, clockPin, 0);
digitalWrite(latchPin, 1);
delay(d);
}
}
void oneByOne(int delayTime, String directionWay) {
digitalWrite(latchPin, 0);
shiftOut(dataPin, clockPin, 0);
shiftOut(dataPin, clockPin, 0);
digitalWrite(latchPin, 1);
for (int j = 0; j < 8; j++) {
digitalWrite(latchPin, 0);
if (directionWay == "UP") {
lightShiftPinA(7 - j);
lightShiftPinA(j);
} else if (directionWay == "DOWN") {
lightShiftPinA(j);
lightShiftPinA(7 - j);
} else if (directionWay == "SAMEUP") {
lightShiftPinA(j);
lightShiftPinA(j);
} else if (directionWay == "SAMEDOWN") {
lightShiftPinA(7 - j);
lightShiftPinA(7 - j);
}
digitalWrite(latchPin, 1);
delay(delayTime);
}
}
void skip(int delayTime, String directionWay) {
digitalWrite(latchPin, 0);
shiftOut(dataPin, clockPin, 0);
shiftOut(dataPin, clockPin, 0);
digitalWrite(latchPin, 1);
for (int i = 0; i < 8; i++) {
digitalWrite(latchPin, 0);
if (directionWay == "UP") {
if (i % 2 != 0) {
lightShiftPinA(7 - i);
lightShiftPinA(i);
}
} else if (directionWay == "DOWN") {
if (i % 2 != 0) {
lightShiftPinA(i);
lightShiftPinA(7 - i);
}
}
digitalWrite(latchPin, 1);
delay(delayTime);
}
}
void oneThree(){
blinkAllLights(1, 390);
blinkAllLights(3, 120);
delay(200);
blinkAllLights(3, 120);
}
void oddsAllOn(int numOfTimes){
digitalWrite(latchPin, 0);
shiftOut(dataPin, clockPin, 0);
shiftOut(dataPin, clockPin, 0);
digitalWrite(latchPin, 1);
for(int i = 0; i < 8; i++){
if(i % 2 != 0){
digitalWrite(latchPin, 0);
lightShiftPinA(i);
lightShiftPinA(7 - i);
digitalWrite(latchPin, 1);
delay(300);
}
}
}
void riff(int delayTime){
digitalWrite(latchPin, 0);
shiftOut(dataPin, clockPin, 0);
shiftOut(dataPin, clockPin, 0);
digitalWrite(latchPin, 1);
int sum = 0;
for(int i = 0; i < 8; i++){
digitalWrite(latchPin, 0);
sum += pow(2, i);
shiftOut(dataPin, clockPin, sum);
shiftOut(dataPin, clockPin, sum);
digitalWrite(latchPin, 1);
delay(delayTime);
digitalWrite(latchPin, 0);
shiftOut(dataPin, clockPin, 0);
shiftOut(dataPin, clockPin, 0);
digitalWrite(latchPin, 1);
delay(delayTime);
}
sum = 255;
for(int i = 0; i < 8; i++){
digitalWrite(latchPin, 0);
sum -= pow(2, i);
shiftOut(dataPin, clockPin, sum);
shiftOut(dataPin, clockPin, sum);
digitalWrite(latchPin, 1);
delay(delayTime);
digitalWrite(latchPin, 0);
shiftOut(dataPin, clockPin, 0);
shiftOut(dataPin, clockPin, 0);
digitalWrite(latchPin, 1);
delay(delayTime);
}
sum = 255;
for(int i = 8; i > 0; i--){
digitalWrite(latchPin, 0);
sum -= pow(2, i - 1);
shiftOut(dataPin, clockPin, sum);
shiftOut(dataPin, clockPin, sum);
digitalWrite(latchPin, 1);
delay(delayTime);
digitalWrite(latchPin, 0);
shiftOut(dataPin, clockPin, 0);
shiftOut(dataPin, clockPin, 0);
digitalWrite(latchPin, 1);
delay(delayTime);
}
}
void song(){
skip(350, "UP");
skip(350, "DOWN");
for(int i = 0; i < 2; i++){
oneThree();
delay(200);
oneByOne(120, "UP");
oneByOne(120, "DOWN");
oneThree();
oneByOne(285, "SAMEDOWN");
oneThree();
oneByOne(285, "SAMEUP");
oneThree();
skip(135, "UP");
oddsAllOn(2);
}
riff(250);
}