add third panel

This commit is contained in:
interfisch 2023-02-13 19:05:24 +01:00
parent 940d3c18cc
commit aee0352422
3 changed files with 3 additions and 3 deletions

View File

@ -31,7 +31,7 @@ D3 - _clear
#define PIN_CLEAR 12 //connects CLEAR Pin from Annax board to GND (clears column) #define PIN_CLEAR 12 //connects CLEAR Pin from Annax board to GND (clears column)
#define COLUMNBYTES 13 //4 columns per byte. one panel has 25 columns. (int)((numpanels*25)/4+1) #define COLUMNBYTES 19 //4 columns per byte. one panel has 25 columns. (int)((numpanels*25)/4+1)
//### Timings ### //### Timings ###

View File

@ -6,7 +6,7 @@
#include "flipdot.h" #include "flipdot.h"
#define COLUMNS 50 #define COLUMNS 75
#define ROWS 16 #define ROWS 16

View File

@ -50,7 +50,7 @@ void loop() {
Serial.print("Update max took "); Serial.print(flip.updateDuration); Serial.println(" ms"); Serial.print("Update max took "); Serial.print(flip.updateDuration); Serial.println(" ms");
flip.updateDuration=0; //reset flip.updateDuration=0; //reset
flip.shuffleOrder(1); //flip.shuffleOrder(1);
} }
} }