Compare commits

..

No commits in common. 'ed5966e0e2e0a6f5282ce50acaffeaff97480328' and 'c90fa6490094e5a9b04262d3e9c2aa040943a5e9' have entirely different histories.

@ -3,9 +3,3 @@
Drives a 64x32 HUB75 panel using an ESP32.
Currently plays Bad Apple!!
Ideas:
CYBER Absperrband
Nyancat
Matrix Digital Rain

@ -37,6 +37,9 @@ int frameDelay = 500;
void setup(){
Serial.begin(BAUD_RATE);
Serial.println("Starting pattern test...");
// redefine pins if required
HUB75_I2S_CFG::i2s_pins _pins={R1, G1, BL1, R2, G2, BL2, CH_A, CH_B, CH_C, CH_D, CH_E, LAT, OE, CLK};
HUB75_I2S_CFG mxconfig(PANEL_WIDTH, PANEL_HEIGHT, PANELS_NUMBER, _pins);
@ -50,7 +53,7 @@ void setup(){
matrix = new MatrixPanel_I2S_DMA(mxconfig);
matrix->begin();
matrix->setBrightness8(64);
matrix->setBrightness8(128);
matrix->fillScreenRGB888(0, 0, 0);
gif.begin(LITTLE_ENDIAN_PIXELS);

Loading…
Cancel
Save