Merge pull request #372 from drvkmr/master

Fixed setBrightness in ChainedPanelsAuroraDemo
This commit is contained in:
mrfaptastic 2023-01-19 07:11:42 +00:00 committed by GitHub
commit c1d85fad42
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -109,13 +109,13 @@ void setup()
// OK, now we can create our matrix object
matrix = new MatrixPanel_I2S_DMA(mxconfig);
// let's adjust default brightness to about 75%
matrix->setBrightness8(96); // range is 0-255, 0 - 0%, 255 - 100%
// Allocate memory and start DMA display
if( not matrix->begin() )
Serial.println("****** !KABOOM! I2S memory allocation failed ***********");
// let's adjust default brightness to about 75%
matrix->setBrightness8(96); // range is 0-255, 0 - 0%, 255 - 100%
// create VirtualDisplay object based on our newly created dma_display object
virtualDisp = new VirtualMatrixPanel((*matrix), NUM_ROWS, NUM_COLS, PANEL_RES_X, PANEL_RES_Y, SERPENT, TOPDOWN);