aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authormrfaptastic <12006953+mrfaptastic@users.noreply.github.com>2020-11-28 09:45:30 +0000
committermrfaptastic <12006953+mrfaptastic@users.noreply.github.com>2020-11-28 09:45:30 +0000
commit460b823200a764049c67b41d4e5043d254094506 (patch)
tree7ca372a2ee955e17979da9027dca9334edee8a85 /examples
parent5214d0540e05cb0b0cb08f10bb9cbeffccc7d7f8 (diff)
Update library class and name
Diffstat (limited to 'examples')
-rw-r--r--examples/AnimatedGIFPanel/AnimatedGIFPanel.ino2
-rw-r--r--examples/AuroraDemo/AuroraDemo.ino2
-rw-r--r--examples/BitmapIcons/BitmapIcons.ino2
-rw-r--r--examples/ChainedPanels/ChainedPanels.ino2
-rw-r--r--examples/ChainedPanelsAuroraDemo/ChainedPanelsAuroraDemo.ino4
-rw-r--r--examples/DoubleBufferSwap/DoubleBufferSwap.ino2
-rw-r--r--examples/FM6126Panel/FM6126Panel.ino2
-rw-r--r--examples/Glediator3_TPM2_MatrixPanel/Glediator3_TPM2_MatrixPanel.ino2
-rw-r--r--examples/PatternPlasma/PatternPlasma.ino2
-rw-r--r--examples/testshapes_32x64/testshapes_32x64.ino2
10 files changed, 11 insertions, 11 deletions
diff --git a/examples/AnimatedGIFPanel/AnimatedGIFPanel.ino b/examples/AnimatedGIFPanel/AnimatedGIFPanel.ino
index f78d5ff..75e0d4f 100644
--- a/examples/AnimatedGIFPanel/AnimatedGIFPanel.ino
+++ b/examples/AnimatedGIFPanel/AnimatedGIFPanel.ino
@@ -25,7 +25,7 @@
// ----------------------------
-RGB64x32MatrixPanel_I2S_DMA dma_display;
+MatrixPanel_I2S_DMA dma_display;
AnimatedGIF gif;
File f;
int x_offset, y_offset;
diff --git a/examples/AuroraDemo/AuroraDemo.ino b/examples/AuroraDemo/AuroraDemo.ino
index dbc0dc5..f1bde22 100644
--- a/examples/AuroraDemo/AuroraDemo.ino
+++ b/examples/AuroraDemo/AuroraDemo.ino
@@ -21,7 +21,7 @@
/* -------------------------- Class Initialisation -------------------------- */
#include <ESP32-HUB75-MatrixPanel-I2S-DMA.h>
-RGB64x32MatrixPanel_I2S_DMA matrix;
+MatrixPanel_I2S_DMA matrix;
#include <FastLED.h>
diff --git a/examples/BitmapIcons/BitmapIcons.ino b/examples/BitmapIcons/BitmapIcons.ino
index 310c8a8..09c6815 100644
--- a/examples/BitmapIcons/BitmapIcons.ino
+++ b/examples/BitmapIcons/BitmapIcons.ino
@@ -28,7 +28,7 @@
// Display
-RGB64x32MatrixPanel_I2S_DMA display; // RGB Panel
+MatrixPanel_I2S_DMA display; // RGB Panel
// Wifi Logo, generated using LCD Image Converter: http://www.riuson.com/lcd-image-converter
const char wifi_image1bit[] PROGMEM = {
diff --git a/examples/ChainedPanels/ChainedPanels.ino b/examples/ChainedPanels/ChainedPanels.ino
index da3b3f4..55c4b02 100644
--- a/examples/ChainedPanels/ChainedPanels.ino
+++ b/examples/ChainedPanels/ChainedPanels.ino
@@ -171,7 +171,7 @@
* Create physical DMA panel class AND virtual (chained) display class.
******************************************************************************/
#include <ESP32-VirtualMatrixPanel-I2S-DMA.h>
-RGB64x32MatrixPanel_I2S_DMA dma_display;
+MatrixPanel_I2S_DMA dma_display;
VirtualMatrixPanel virtualDisp(dma_display, NUM_ROWS, NUM_COLS, PANEL_RES_X, PANEL_RES_Y, true);
diff --git a/examples/ChainedPanelsAuroraDemo/ChainedPanelsAuroraDemo.ino b/examples/ChainedPanelsAuroraDemo/ChainedPanelsAuroraDemo.ino
index 9379d7c..ac63d1f 100644
--- a/examples/ChainedPanelsAuroraDemo/ChainedPanelsAuroraDemo.ino
+++ b/examples/ChainedPanelsAuroraDemo/ChainedPanelsAuroraDemo.ino
@@ -47,10 +47,10 @@ int lastPattern = 0;
/* -------------------------- Class Initialisation -------------------------- */
//#include <ESP32-HUB75-MatrixPanel-I2S-DMA.h>
-//RGB64x32MatrixPanel_I2S_DMA matrix;
+//MatrixPanel_I2S_DMA matrix;
#include <ESP32-VirtualMatrixPanel-I2S-DMA.h>
-RGB64x32MatrixPanel_I2S_DMA matrix;
+MatrixPanel_I2S_DMA matrix;
// Added support for 'Chained' virtual panel configurations.
VirtualMatrixPanel virtualDisp(matrix, NUM_ROWS, NUM_COLS, PANEL_RES_X, PANEL_RES_Y, true);
diff --git a/examples/DoubleBufferSwap/DoubleBufferSwap.ino b/examples/DoubleBufferSwap/DoubleBufferSwap.ino
index 8ed410c..6d71f75 100644
--- a/examples/DoubleBufferSwap/DoubleBufferSwap.ino
+++ b/examples/DoubleBufferSwap/DoubleBufferSwap.ino
@@ -1,6 +1,6 @@
#include <ESP32-HUB75-MatrixPanel-I2S-DMA.h>
-RGB64x32MatrixPanel_I2S_DMA display(true); // Note the TRUE -> Turns of secondary buffer - "double buffering"!
+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;
diff --git a/examples/FM6126Panel/FM6126Panel.ino b/examples/FM6126Panel/FM6126Panel.ino
index f1820be..94fe6b4 100644
--- a/examples/FM6126Panel/FM6126Panel.ino
+++ b/examples/FM6126Panel/FM6126Panel.ino
@@ -4,7 +4,7 @@
#include <Arduino.h>
#include <ESP32-HUB75-MatrixPanel-I2S-DMA.h>
-RGB64x32MatrixPanel_I2S_DMA dma_display;
+MatrixPanel_I2S_DMA dma_display;
#include <FastLED.h>
diff --git a/examples/Glediator3_TPM2_MatrixPanel/Glediator3_TPM2_MatrixPanel.ino b/examples/Glediator3_TPM2_MatrixPanel/Glediator3_TPM2_MatrixPanel.ino
index dc884a8..ccc06f9 100644
--- a/examples/Glediator3_TPM2_MatrixPanel/Glediator3_TPM2_MatrixPanel.ino
+++ b/examples/Glediator3_TPM2_MatrixPanel/Glediator3_TPM2_MatrixPanel.ino
@@ -1,6 +1,6 @@
/* -------------------------- Class Initialisation -------------------------- */
#include <ESP32-HUB75-MatrixPanel-I2S-DMA.h>
-RGB64x32MatrixPanel_I2S_DMA matrix;
+MatrixPanel_I2S_DMA matrix;
#include "TPM2.h" // https://github.com/rstephan/TPM2
diff --git a/examples/PatternPlasma/PatternPlasma.ino b/examples/PatternPlasma/PatternPlasma.ino
index 5f8cb95..e8a16d9 100644
--- a/examples/PatternPlasma/PatternPlasma.ino
+++ b/examples/PatternPlasma/PatternPlasma.ino
@@ -44,7 +44,7 @@
#include <ESP32-HUB75-MatrixPanel-I2S-DMA.h>
-RGB64x32MatrixPanel_I2S_DMA dma_display;
+MatrixPanel_I2S_DMA dma_display;
#include <FastLED.h>
diff --git a/examples/testshapes_32x64/testshapes_32x64.ino b/examples/testshapes_32x64/testshapes_32x64.ino
index a30d05c..e3746fe 100644
--- a/examples/testshapes_32x64/testshapes_32x64.ino
+++ b/examples/testshapes_32x64/testshapes_32x64.ino
@@ -1,5 +1,5 @@
#include <ESP32-HUB75-MatrixPanel-I2S-DMA.h>
-RGB64x32MatrixPanel_I2S_DMA dma_display;
+MatrixPanel_I2S_DMA dma_display;
// Or use an Alternative non-DMA library, i.e:
//#include <P3RGB64x32MatrixPanel.h>