#include MatrixPanel_I2S_DMA display(true); // Note the TRUE -> Turns of secondary buffer - "double buffering"! // Double buffering is not enabled by default with the library. const byte row0 = 2+0*10; const byte row1 = 2+1*10; const byte row2 = 2+2*10; void setup() { // put your setup code here, to run once: delay(1000); Serial.begin(115200); delay(200); Serial.println("...Starting Display"); display.begin(); // setup display with pins as per defined in the library display.setTextColor(display.color565(128, 128, 128)); // Buffer 0 test display.fillScreen(display.color565(128, 0, 0)); display.setCursor(3, row0); display.print(F("Buffer 0")); display.setCursor(3, row1); display.print(F(" Buffer 0")); Serial.println("Wrote to to Buffer 0"); display.showDMABuffer(); delay(1500); // Buffer 1 test display.flipDMABuffer(); display.fillScreen(display.color565(0, 128, 0)); // shouldn't see this display.setCursor(3, row0); display.print(F("Buffer 1")); display.setCursor(3, row2); display.print(F(" Buffer 1")); Serial.println("Wrote to to Buffer 1"); display.showDMABuffer(); delay(1500); } void loop() { // Flip the back buffer display.flipDMABuffer(); // Write: Set bottow row to black for (int y=20;y