aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authormrfaptastic <12006953+mrfaptastic@users.noreply.github.com>2020-08-09 19:13:13 +0100
committermrfaptastic <12006953+mrfaptastic@users.noreply.github.com>2020-08-09 19:13:13 +0100
commit3ff7155bf0bc56fdc0e133e7887468766ebaadbb (patch)
tree0e6518c44dd76c62e83a0210f748bcf63553f09b /examples
parenteab828b837ec6a715af0648627799895e7e9124b (diff)
Update ChainedPanels example, VirtualDisplay Class and Graphic. Thanks Brian and Galaxy-Man for input.
Diffstat (limited to 'examples')
-rw-r--r--examples/ChainedPanels/ChainedPanels.ino270
-rw-r--r--examples/ChainedPanels/VirtualDisplayGraphic.pngbin80725 -> 104323 bytes
2 files changed, 178 insertions, 92 deletions
diff --git a/examples/ChainedPanels/ChainedPanels.ino b/examples/ChainedPanels/ChainedPanels.ino
index ffdb5e2..3f90042 100644
--- a/examples/ChainedPanels/ChainedPanels.ino
+++ b/examples/ChainedPanels/ChainedPanels.ino
@@ -1,59 +1,40 @@
-/*******************************************************************
- This is the PatternPlasma Demo adopted for use with multiple
- displays arranged in a non standard order
-
- What is a non standard order?
-
- When you connect multiple panels together, the library treats the
- multiple panels as one big panel arranged horizontally. Arranging
- the displays like this would be a standard order.
-
- [ 4 ][ 3 ][ 2 ][ 1 ] (ESP32 is connected to 1)
-
- If you wanted to arrange the displays vertically, or in rows and
- columns this example might be able to help.
-
- [ 4 ][ 3 ]
- [ 2 ][ 1 ]
-
- It creates a virtual screen that you draw to in the same way you would
- the matrix, but it will look after mapping it back to the displays.
-
+/******************************************************************************
-----------
Steps to use
-----------
1) In ESP32-RGB64x32MatrixPanel-I2S-DMA.h:
- - Set the MATRIX_HEIGHT to be the y resolution of the physical chained panels in a line (if the panels are 32 x 16, set it to be 16)
- - Set the MATRIX_WIDTH to be the sum of the x resolution of all the physical chained panels (i.e. If you have 4 x (32px w x 16px h) panels, 32x4 = 128)
+ - Set the MATRIX_HEIGHT to be the y resolution of the physical chained
+ panels in a line (if the panels are 32 x 16, set it to be 16)
+ - Set the MATRIX_WIDTH to be the sum of the x resolution of all the physical
+ chained panels (i.e. If you have 4 x (32px w x 16px h) panels, 32x4 = 128)
- 2) In the sketch:
+ 2) In the sketch (i.e. this example):
- - Set values for NUM_ROWS, NUM_COLS, PANEL_RES_X, PANEL_RES_Y. There are comments beside them
- explaining what they are in more detail.
- - Other than where the matrix is defined and matrix.begin in the setup, you should now be using the virtual display
- for everything (drawing pixels, writing text etc). You can do a find and replace of all calls if it's an existing sketch
- (just make sure you don't replace the definition and the matrix.begin)
- - If the sketch makes use of MATRIX_HEIGHT or MATRIX_WIDTH, these will need to be replaced with the width and height
- of your virtual screen. Either make new defines and use that, or you can use virtualDisp.width() or .height()
+ - Set values for NUM_ROWS, NUM_COLS, PANEL_RES_X, PANEL_RES_Y.
+ There are comments beside them explaining what they are in more detail.
+ - Other than where the matrix is defined and matrix.begin in the setup, you
+ should now be using the virtual display for everything (drawing pixels, writing text etc).
+ You can do a find and replace of all calls if it's an existing sketch
+ (just make sure you don't replace the definition and the matrix.begin)
+ - If the sketch makes use of MATRIX_HEIGHT or MATRIX_WIDTH, these will need to be
+ replaced with the width and height of your virtual screen.
+ Either make new defines and use that, or you can use virtualDisp.width() or .height()
- Parts:
- ESP32 D1 Mini * - https://s.click.aliexpress.com/e/_dSi824B
- ESP32 I2S Matrix Shield (From my Tindie) = https://www.tindie.com/products/brianlough/esp32-i2s-matrix-shield/
+ Thanks to:
- * * = Affilate
+ * Brian Lough for the original example as raised in this issue:
+ https://github.com/mrfaptastic/ESP32-RGB64x32MatrixPanel-I2S-DMA/issues/26
- If you find what I do useful and would like to support me,
- please consider becoming a sponsor on Github
- https://github.com/sponsors/witnessmenow/
+ YouTube: https://www.youtube.com/brianlough
+ Tindie: https://www.tindie.com/stores/brianlough/
+ Twitter: https://twitter.com/witnessmenow
+ * Galaxy-Man for the kind donation of panels make/test that this is possible:
+ https://github.com/Galaxy-Man
- Written by Brian Lough
- YouTube: https://www.youtube.com/brianlough
- Tindie: https://www.tindie.com/stores/brianlough/
- Twitter: https://twitter.com/witnessmenow
- *******************************************************************/
+*****************************************************************************/
//#define USE_CUSTOM_PINS // uncomment to use custom pins, then provide below
@@ -75,36 +56,132 @@
#define OE_PIN 13
-/* Include FastLED, DMA Display (for module driving), and VirtualMatrixPanel
- * to enable easy painting & graphics for a chain of individual LED modules.
- */
+ /******************************************************************************
+ * VIRTUAL DISPLAY / MATRIX PANEL CHAINING CONFIGURATION
+ *
+ * Note 1: If chaining from the top right to the left, and then S curving down
+ * then serpentine_chain = true and top_down_chain = true
+ * (these being the last two parameters of the virtualDisp(...) constructor.
+ *
+ * Note 2: If chaining starts from the bottom up, then top_down_chain = false.
+ *
+ * Note 3: By default, this library has serpentine_chain = true, that is, every
+ * second row has the panels 'upside down' (rotated 180), so the output
+ * pin of the row above is right above the input connector of the next
+ * row.
+
+ Example 1 panel chaining:
+ +-----------------+-----------------+-------------------+
+ | 64x32px PANEL 3 | 64x32px PANEL 2 | 64x32px PANEL 1 |
+ | ------------ <-------- | ------------xx |
+ | [OUT] | [IN] | [OUT] [IN] | [OUT] [ESP IN] |
+ +--------|--------+-----------------+-------------------+
+ | 64x32px|PANEL 4 | 64x32px PANEL 5 | 64x32px PANEL 6 |
+ | \|/ ----------> | -----> |
+ | [IN] [OUT] | [IN] [OUT] | [IN] [OUT] |
+ +-----------------+-----------------+-------------------+
+
+ Example 1 configuration:
+
+ #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 NUM_ROWS 2 // Number of rows of chained INDIVIDUAL PANELS
+ #define NUM_COLS 3 // Number of INDIVIDUAL PANELS per ROW
+
+ virtualDisp(dma_display, NUM_ROWS, NUM_COLS, PANEL_RES_X, PANEL_RES_Y, true, true);
+
+ = 192x64 px virtual display, with the top left of panel 3 being pixel co-ord (0,0)
+
+ ==========================================================
+
+ Example 2 panel chaining:
+
+ +-------------------+
+ | 64x32px PANEL 1 |
+ | ----------------- |
+ | [OUT] [ESP IN] |
+ +-------------------+
+ | 64x32px PANEL 2 |
+ | |
+ | [IN] [OUT] |
+ +-------------------+
+ | 64x32px PANEL 3 |
+ | |
+ | [OUT] [IN] |
+ +-------------------+
+ | 64x32px PANEL 4 |
+ | |
+ | [IN] [OUT] |
+ +-------------------+
+
+ Example 2 configuration:
+
+ #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 NUM_ROWS 4 // Number of rows of chained INDIVIDUAL PANELS
+ #define NUM_COLS 1 // Number of INDIVIDUAL PANELS per ROW
+
+ virtualDisp(dma_display, NUM_ROWS, NUM_COLS, PANEL_RES_X, PANEL_RES_Y, true, true);
+
+ virtualDisp(dma_display, NUM_ROWS, NUM_COLS, PANEL_RES_X, PANEL_RES_Y, true, true);
+
+ = 128x64 px virtual display, with the top left of panel 1 being pixel co-ord (0,0)
+
+ ==========================================================
+
+ Example 3 panel chaining (bottom up):
+
+ +-----------------+-----------------+
+ | 64x32px PANEL 4 | 64x32px PANEL 3 |
+ | <---------- |
+ | [OUT] [IN] | [OUT] [in] |
+ +-----------------+-----------------+
+ | 64x32px PANEL 1 | 64x32px PANEL 2 |
+ | ----------> |
+ | [ESP IN] [OUT] | [IN] [OUT] |
+ +-----------------+-----------------+
+
+ Example 1 configuration:
+
+ #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 NUM_ROWS 2 // Number of rows of chained INDIVIDUAL PANELS
+ #define NUM_COLS 2 // Number of INDIVIDUAL PANELS per ROW
+
+ virtualDisp(dma_display, NUM_ROWS, NUM_COLS, PANEL_RES_X, PANEL_RES_Y, true, false);
+
+ = 128x64 px virtual display, with the top left of panel 4 being pixel co-ord (0,0)
+
+*/
+
+
-#define NUM_ROWS 2 // Number of rows panels in your overall display
-#define NUM_COLS 1 // number of panels in each row
#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.
-/* Create physical module driver class AND virtual (chained) display class. */
+#define NUM_ROWS 2 // Number of rows of chained INDIVIDUAL PANELS
+#define NUM_COLS 2 // Number of INDIVIDUAL PANELS per ROW
+
+
+/******************************************************************************
+ * Create physical DMA panel class AND virtual (chained) display class.
+ ******************************************************************************/
#include <ESP32-VirtualMatrixPanel-I2S-DMA.h>
RGB64x32MatrixPanel_I2S_DMA dma_display;
-VirtualMatrixPanel virtualDisp(dma_display, NUM_ROWS, NUM_COLS, PANEL_RES_X, PANEL_RES_Y);
+VirtualMatrixPanel virtualDisp(dma_display, NUM_ROWS, NUM_COLS, PANEL_RES_X, PANEL_RES_Y, true);
-/* FastLED Global Variables for Pattern */
-#include <FastLED.h>
-int time_counter = 0;
-int cycles = 0;
-CRGBPalette16 currentPalette;
-CRGB currentColor;
-
-CRGB ColorFromCurrentPalette(uint8_t index = 0, uint8_t brightness = 255, TBlendType blendType = LINEARBLEND) {
- return ColorFromPalette(currentPalette, index, brightness, blendType);
-}
+/******************************************************************************
+ * Setup!
+ ******************************************************************************/
void setup() {
+ delay(2000);
Serial.begin(115200);
-
Serial.println(""); Serial.println(""); Serial.println("");
Serial.println("*****************************************************");
Serial.println(" HELLO !");
@@ -115,44 +192,53 @@ void setup() {
#else
dma_display.begin();
#endif
-
- // fill the screen with 'black'
- //dma_display.fillScreen(dma_display.color444(0, 0, 0));
+
+
+
+ // Sanity checks
+ if (NUM_ROWS <= 1) {
+ Serial.println(F("There is no reason to use the VirtualDisplay class for a single horizontal chain and row!"));
+ }
+
+ if (dma_display.width() != NUM_ROWS*NUM_COLS*PANEL_RES_X )
+ {
+ Serial.println(F("\r\nERROR: MATRIX_WIDTH and/or MATRIX_HEIGHT in 'ESP32-RGB64x32MatrixPanel-I2S-DMA.h'\r\nis not configured correctly for the requested VirtualMatrixPanel dimensions!\r\n"));
+ Serial.printf("WIDTH according dma_display is %d, but should be %d. Is your NUM_ROWS and NUM_COLS correct?\r\n", dma_display.width(), NUM_ROWS*NUM_COLS*PANEL_RES_X);
+ return;
+ }
+
+ // So far so good, so continue
virtualDisp.fillScreen(virtualDisp.color444(0, 0, 0));
+ virtualDisp.drawDisplayTest(); // draw text numbering on each screen to check connectivity
- // Set current FastLED palette
- currentPalette = RainbowColors_p;
+ delay(3000);
- virtualDisp.drawRect(4, 4, PANEL_RES_X * NUM_COLS - 8, PANEL_RES_Y * NUM_ROWS - 8, virtualDisp.color565(255, 255, 255));
- delay(5000);
+ Serial.println("Chain of 64x32 panels for this example:");
+ Serial.println("+--------+---------+");
+ Serial.println("| 4 | 3 |");
+ Serial.println("| | |");
+ Serial.println("+--------+---------+");
+ Serial.println("| 1 | 2 |");
+ Serial.println("| (ESP) | |");
+ Serial.println("+--------+---------+");
-}
+ virtualDisp.setFont(&FreeSansBold12pt7b);
+ virtualDisp.setTextColor(virtualDisp.color565(0, 0, 255));
+ virtualDisp.setTextSize(2);
+ virtualDisp.setCursor(10, virtualDisp.height()-20);
+
+ // Red text inside red rect (2 pix in from edge)
+ virtualDisp.print("1234") ;
+ virtualDisp.drawRect(1,1, virtualDisp.width()-2, virtualDisp.height()-2, virtualDisp.color565(255,0,0));
+ // White line from top left to bottom right
+ virtualDisp.drawLine(0,0, virtualDisp.width()-1, virtualDisp.height()-1, virtualDisp.color565(255,255,255));
+
+
+
+}
void loop() {
- for (int x = 0; x < virtualDisp.width(); x++) {
- for (int y = 0; y < virtualDisp.height(); y++) {
- int16_t v = 0;
- uint8_t wibble = sin8(time_counter);
- v += sin16(x * wibble * 3 + time_counter);
- v += cos16(y * (128 - wibble) + time_counter);
- v += sin16(y * x * cos8(-time_counter) / 8);
-
- currentColor = ColorFromPalette(currentPalette, (v >> 8) + 127); //, brightness, currentBlendType);
- virtualDisp.drawPixelRGB888(x, y, currentColor.r, currentColor.g, currentColor.b);
-
- }
- }
-
- time_counter += 1;
- cycles++;
-
- if (cycles >= 2048) {
- time_counter = 0;
- cycles = 0;
- }
-
-
} // end loop \ No newline at end of file
diff --git a/examples/ChainedPanels/VirtualDisplayGraphic.png b/examples/ChainedPanels/VirtualDisplayGraphic.png
index 3573895..449e802 100644
--- a/examples/ChainedPanels/VirtualDisplayGraphic.png
+++ b/examples/ChainedPanels/VirtualDisplayGraphic.png
Binary files differ