2021-07-27 11:33:13 +02:00
|
|
|
|
2021-02-10 16:49:19 +01:00
|
|
|
// Example sketch which shows how to display some patterns
|
|
|
|
// on a 64x32 LED matrix
|
|
|
|
//
|
|
|
|
|
2020-11-28 09:39:35 +01:00
|
|
|
#include <ESP32-HUB75-MatrixPanel-I2S-DMA.h>
|
2018-10-23 02:00:47 +02:00
|
|
|
|
2021-02-10 16:49:19 +01:00
|
|
|
|
2021-07-27 11:33:13 +02:00
|
|
|
#define PANEL_RES_X 64 // Number of pixels wide of each INDIVIDUAL panel module.
|
|
|
|
#define PANEL_RES_Y 32 // Number of pixels tall of each INDIVIDUAL panel module.
|
|
|
|
#define PANEL_CHAIN 1 // Total number of panels chained one to another
|
|
|
|
|
|
|
|
//MatrixPanel_I2S_DMA dma_display;
|
|
|
|
MatrixPanel_I2S_DMA *dma_display = nullptr;
|
|
|
|
|
|
|
|
uint16_t myBLACK = dma_display->color565(0, 0, 0);
|
|
|
|
uint16_t myWHITE = dma_display->color565(255, 255, 255);
|
|
|
|
uint16_t myRED = dma_display->color565(255, 0, 0);
|
|
|
|
uint16_t myGREEN = dma_display->color565(0, 255, 0);
|
|
|
|
uint16_t myBLUE = dma_display->color565(0, 0, 255);
|
|
|
|
|
2018-10-24 01:21:37 +02:00
|
|
|
|
2018-10-23 02:00:47 +02:00
|
|
|
|
2021-02-19 19:20:08 +01:00
|
|
|
// Input a value 0 to 255 to get a color value.
|
|
|
|
// The colours are a transition r - g - b - back to r.
|
|
|
|
// From: https://gist.github.com/davidegironi/3144efdc6d67e5df55438cc3cba613c8
|
|
|
|
uint16_t colorWheel(uint8_t pos) {
|
|
|
|
if(pos < 85) {
|
2021-07-27 11:33:13 +02:00
|
|
|
return dma_display->color565(pos * 3, 255 - pos * 3, 0);
|
2021-02-19 19:20:08 +01:00
|
|
|
} else if(pos < 170) {
|
|
|
|
pos -= 85;
|
2021-07-27 11:33:13 +02:00
|
|
|
return dma_display->color565(255 - pos * 3, 0, pos * 3);
|
2021-02-19 19:20:08 +01:00
|
|
|
} else {
|
|
|
|
pos -= 170;
|
2021-07-27 11:33:13 +02:00
|
|
|
return dma_display->color565(0, pos * 3, 255 - pos * 3);
|
2021-02-19 19:20:08 +01:00
|
|
|
}
|
|
|
|
}
|
2018-12-25 10:43:59 +01:00
|
|
|
|
2021-02-19 19:20:08 +01:00
|
|
|
void drawText(int colorWheelOffset)
|
|
|
|
{
|
|
|
|
|
|
|
|
// draw text with a rotating colour
|
2021-07-27 11:33:13 +02:00
|
|
|
dma_display->setTextSize(1); // size 1 == 8 pixels high
|
|
|
|
dma_display->setTextWrap(false); // Don't wrap at end of line - will do ourselves
|
2018-10-23 02:00:47 +02:00
|
|
|
|
2021-07-27 11:33:13 +02:00
|
|
|
dma_display->setCursor(5, 0); // start at top left, with 8 pixel of spacing
|
2018-10-23 02:00:47 +02:00
|
|
|
uint8_t w = 0;
|
2021-02-19 19:20:08 +01:00
|
|
|
const char *str = "ESP32 DMA";
|
|
|
|
for (w=0; w<strlen(str); w++) {
|
2021-07-27 11:33:13 +02:00
|
|
|
dma_display->setTextColor(colorWheel((w*32)+colorWheelOffset));
|
|
|
|
dma_display->print(str[w]);
|
2018-10-23 02:00:47 +02:00
|
|
|
}
|
2018-12-25 10:43:59 +01:00
|
|
|
|
2021-07-27 11:33:13 +02:00
|
|
|
dma_display->println();
|
|
|
|
dma_display->print(" ");
|
2018-10-23 02:00:47 +02:00
|
|
|
for (w=9; w<18; w++) {
|
2021-07-27 11:33:13 +02:00
|
|
|
dma_display->setTextColor(colorWheel((w*32)+colorWheelOffset));
|
|
|
|
dma_display->print("*");
|
2018-10-23 02:00:47 +02:00
|
|
|
}
|
2021-02-19 19:20:08 +01:00
|
|
|
|
2021-07-27 11:33:13 +02:00
|
|
|
dma_display->println();
|
2021-02-19 19:20:08 +01:00
|
|
|
|
2021-07-27 11:33:13 +02:00
|
|
|
dma_display->setTextColor(dma_display->color444(15,15,15));
|
|
|
|
dma_display->println("LED MATRIX!");
|
2018-12-25 10:43:59 +01:00
|
|
|
|
2021-02-19 19:20:08 +01:00
|
|
|
// print each letter with a fixed rainbow color
|
2021-07-27 11:33:13 +02:00
|
|
|
dma_display->setTextColor(dma_display->color444(0,8,15));
|
|
|
|
dma_display->print('3');
|
|
|
|
dma_display->setTextColor(dma_display->color444(15,4,0));
|
|
|
|
dma_display->print('2');
|
|
|
|
dma_display->setTextColor(dma_display->color444(15,15,0));
|
|
|
|
dma_display->print('x');
|
|
|
|
dma_display->setTextColor(dma_display->color444(8,15,0));
|
|
|
|
dma_display->print('6');
|
|
|
|
dma_display->setTextColor(dma_display->color444(8,0,15));
|
|
|
|
dma_display->print('4');
|
2018-12-25 10:43:59 +01:00
|
|
|
|
|
|
|
// Jump a half character
|
2021-07-27 11:33:13 +02:00
|
|
|
dma_display->setCursor(34, 24);
|
|
|
|
dma_display->setTextColor(dma_display->color444(0,15,15));
|
|
|
|
dma_display->print("*");
|
|
|
|
dma_display->setTextColor(dma_display->color444(15,0,0));
|
|
|
|
dma_display->print('R');
|
|
|
|
dma_display->setTextColor(dma_display->color444(0,15,0));
|
|
|
|
dma_display->print('G');
|
|
|
|
dma_display->setTextColor(dma_display->color444(0,0,15));
|
|
|
|
dma_display->print("B");
|
|
|
|
dma_display->setTextColor(dma_display->color444(15,0,8));
|
|
|
|
dma_display->println("*");
|
2018-10-23 02:00:47 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2021-02-19 19:20:08 +01:00
|
|
|
|
|
|
|
void setup() {
|
2021-07-27 11:33:13 +02:00
|
|
|
|
2021-08-16 13:18:14 +02:00
|
|
|
// Module configuration
|
2021-07-27 11:33:13 +02:00
|
|
|
HUB75_I2S_CFG mxconfig(
|
|
|
|
PANEL_RES_X, // module width
|
|
|
|
PANEL_RES_Y, // module height
|
|
|
|
PANEL_CHAIN // Chain length
|
|
|
|
);
|
|
|
|
|
|
|
|
mxconfig.gpio.e = 18;
|
|
|
|
mxconfig.clkphase = false;
|
|
|
|
mxconfig.driver = HUB75_I2S_CFG::FM6126A;
|
|
|
|
|
|
|
|
// Display Setup
|
|
|
|
dma_display = new MatrixPanel_I2S_DMA(mxconfig);
|
|
|
|
dma_display->begin();
|
|
|
|
dma_display->setBrightness8(90); //0-255
|
|
|
|
dma_display->clearScreen();
|
|
|
|
dma_display->fillScreen(myWHITE);
|
2021-02-19 19:20:08 +01:00
|
|
|
|
|
|
|
// fix the screen with green
|
2021-07-27 11:33:13 +02:00
|
|
|
dma_display->fillRect(0, 0, dma_display->width(), dma_display->height(), dma_display->color444(0, 15, 0));
|
2021-02-19 19:20:08 +01:00
|
|
|
delay(500);
|
|
|
|
|
|
|
|
// draw a box in yellow
|
2021-07-27 11:33:13 +02:00
|
|
|
dma_display->drawRect(0, 0, dma_display->width(), dma_display->height(), dma_display->color444(15, 15, 0));
|
2021-02-19 19:20:08 +01:00
|
|
|
delay(500);
|
|
|
|
|
|
|
|
// draw an 'X' in red
|
2021-07-27 11:33:13 +02:00
|
|
|
dma_display->drawLine(0, 0, dma_display->width()-1, dma_display->height()-1, dma_display->color444(15, 0, 0));
|
|
|
|
dma_display->drawLine(dma_display->width()-1, 0, 0, dma_display->height()-1, dma_display->color444(15, 0, 0));
|
2021-02-19 19:20:08 +01:00
|
|
|
delay(500);
|
|
|
|
|
|
|
|
// draw a blue circle
|
2021-07-27 11:33:13 +02:00
|
|
|
dma_display->drawCircle(10, 10, 10, dma_display->color444(0, 0, 15));
|
2021-02-19 19:20:08 +01:00
|
|
|
delay(500);
|
|
|
|
|
|
|
|
// fill a violet circle
|
2021-07-27 11:33:13 +02:00
|
|
|
dma_display->fillCircle(40, 21, 10, dma_display->color444(15, 0, 15));
|
2021-02-19 19:20:08 +01:00
|
|
|
delay(500);
|
|
|
|
|
|
|
|
// fill the screen with 'black'
|
2021-07-27 11:33:13 +02:00
|
|
|
dma_display->fillScreen(dma_display->color444(0, 0, 0));
|
2021-02-19 19:20:08 +01:00
|
|
|
|
2021-07-27 11:33:13 +02:00
|
|
|
//drawText(0);
|
2021-02-19 19:20:08 +01:00
|
|
|
|
2018-10-23 02:00:47 +02:00
|
|
|
}
|
|
|
|
|
2021-02-19 19:20:08 +01:00
|
|
|
uint8_t wheelval = 0;
|
|
|
|
void loop() {
|
2018-10-23 02:00:47 +02:00
|
|
|
|
2021-02-19 19:20:08 +01:00
|
|
|
// animate by going through the colour wheel for the first two lines
|
2021-12-21 23:19:59 +01:00
|
|
|
drawText(wheelval);
|
|
|
|
wheelval +=1;
|
2021-02-19 19:20:08 +01:00
|
|
|
|
2021-12-21 23:19:59 +01:00
|
|
|
delay(20);
|
|
|
|
/*
|
2021-07-27 11:33:13 +02:00
|
|
|
drawText(0);
|
|
|
|
delay(2000);
|
|
|
|
dma_display->clearScreen();
|
|
|
|
dma_display->fillScreen(myBLACK);
|
|
|
|
delay(2000);
|
|
|
|
dma_display->fillScreen(myBLUE);
|
|
|
|
delay(2000);
|
|
|
|
dma_display->fillScreen(myRED);
|
|
|
|
delay(2000);
|
|
|
|
dma_display->fillScreen(myGREEN);
|
|
|
|
delay(2000);
|
|
|
|
dma_display->fillScreen(myWHITE);
|
|
|
|
dma_display->clearScreen();
|
2021-12-21 23:19:59 +01:00
|
|
|
*/
|
2021-07-27 11:33:13 +02:00
|
|
|
|
2018-10-23 02:00:47 +02:00
|
|
|
}
|