testpattern
This commit is contained in:
parent
9dceb4a7f8
commit
ef8db2deba
1 changed files with 30 additions and 8 deletions
38
src/main.cpp
38
src/main.cpp
|
@ -29,9 +29,9 @@ MIC = Input from microphone amplifier (LM358)
|
|||
|
||||
*/
|
||||
|
||||
#define LATCHPIN 6
|
||||
#define LATCHPIN 5
|
||||
#define DATAPIN 4
|
||||
#define CLOCKPIN 5
|
||||
#define CLOCKPIN 6
|
||||
byte ledsData[8];
|
||||
|
||||
byte currentled = 0;
|
||||
|
@ -56,10 +56,12 @@ void writexy(byte x, byte y) {
|
|||
writebuffer(lednr);
|
||||
}
|
||||
|
||||
byte rowmask[8] = {5,3,1,0,2,4,6,7};
|
||||
void pushout() {
|
||||
digitalWrite(LATCHPIN, LOW);
|
||||
for(int i = 8-1; i>=0; i--) {
|
||||
shiftOut(DATAPIN, CLOCKPIN, MSBFIRST, ledsData[i]);
|
||||
byte row = rowmask[i];
|
||||
shiftOut(DATAPIN, CLOCKPIN, MSBFIRST, ledsData[row]);
|
||||
}
|
||||
digitalWrite(LATCHPIN, HIGH);
|
||||
}
|
||||
|
@ -71,18 +73,38 @@ void setup() {
|
|||
|
||||
clear();
|
||||
pushout();
|
||||
|
||||
}
|
||||
|
||||
|
||||
byte currentcol=1;
|
||||
bool direction = true;
|
||||
|
||||
void loop() {
|
||||
clear();
|
||||
writebuffer(currentled);
|
||||
|
||||
// x-line
|
||||
for(byte i=0; i<8; i++) {
|
||||
writexy(i,currentcol-1);
|
||||
}
|
||||
// y line
|
||||
for(byte i=0; i<8; i++) {
|
||||
writexy(currentcol-1,i);
|
||||
}
|
||||
|
||||
pushout();
|
||||
|
||||
currentled++;
|
||||
if (currentled >=64) {
|
||||
currentled = 0;
|
||||
if(direction) {
|
||||
currentcol++;
|
||||
} else {
|
||||
currentcol--;
|
||||
}
|
||||
if (currentcol >8) {
|
||||
currentcol = 7;
|
||||
direction = false;
|
||||
}
|
||||
if (currentcol <=0) {
|
||||
currentcol=2;
|
||||
direction = true;
|
||||
}
|
||||
delay(100);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue