ESP32-HUB75-MatrixPanel-DMA/README.md

206 lines
11 KiB
Markdown
Raw Normal View History

2020-07-29 09:47:54 +02:00
# HUB75 LED matrix library for the ESP32, utilising DMA
2018-10-23 02:00:47 +02:00
2021-01-11 10:24:36 +01:00
## First time user? Please take the time to read the below
2021-01-11 10:24:02 +01:00
2020-11-28 09:13:39 +01:00
This ESP32 Arduino library for HUB75 / HUB75E connector type 64x32 RGB LED 1/16 Scan OR 64x64 RGB LED 1/32 Scan LED Matrix Panel, utilises the DMA functionality provided by the ESP32's I2S 'LCD Mode' which basically means that pixel data is sent straight from memory, via the DMA controller, to the relevant LED Matrix GPIO pins with little CPU overhead.
2018-10-23 02:00:47 +02:00
2020-07-29 09:47:54 +02:00
As a result, this library can theoretically provide ~16-24 bit colour, at various brightness levels without noticeable flicker.
2018-10-23 02:09:16 +02:00
Ones interested in internals of such matrixes could find [this article](https://www.sparkfun.com/news/2650) useful.
2021-02-16 21:21:38 +01:00
Due to the high-speed optimised nature of this library, only specific panels are supported. Please do not raised issues with respect to panels not supported on the list below.
2020-08-13 15:17:47 +02:00
## Panels Supported
* 64x32 (width x height) pixel 1/16 Scan LED Matrix 'Indoor' Panel, such as this [typical RGB panel available for purchase](https://www.aliexpress.com/item/256-128mm-64-32-pixels-1-16-Scan-Indoor-3in1-SMD2121-RGB-full-color-P4-led/32810362851.html).
2021-02-16 21:21:38 +01:00
* 64x64 pixel 1/32 Scan LED Matrix 'Indoor' Panel.
2021-02-19 10:16:05 +01:00
* 32x16 pixel 1/4 Scan LED Matrix 'Indoor' Panel using an ingenious workaround as demonstrated in the 32x16_1_4_ScanPanel example.
* Any of the above panel resolution / scan rates based on [FM6126](FM6126A.md) / ICN2038S chips. Refer to PatternPlasma example on how to use.
2020-08-11 13:42:54 +02:00
## Panel driver chips known to be working well
* ICND2012
* RUC7258
* FM6126A AKA ICN2038S, FM6124 (if specified properly)
2020-08-13 15:17:47 +02:00
## Panels Not Supported
2021-02-16 21:21:38 +01:00
* 1/8 Scan LED Matrix Panels are not supported.
* RUL5358 / SHIFTREG_ABC_BIN_DE based panels are not supported.
* Any other panel not listed above.
Please use an [alternative library](https://github.com/2dom/PxMatrix) if you bought one of these.
## Update for 16x32 Panels
2021-02-10 17:05:09 +01:00
* There is a virtual panel class available to work with 16x32 panels (see: [examples/16x32 Panel](/examples/P6_32x16_1_4_ScanPanel). This Panel includes drawing lines and rectanges, text and scrolling text
2018-10-23 02:11:30 +02:00
2021-02-16 21:21:38 +01:00
# Getting Started
## 1. Library Installation
2018-10-23 02:00:47 +02:00
* Dependency: You will need to install Adafruit_GFX from the "Library > Manage Libraries" menu.
2020-07-29 09:47:54 +02:00
* Download and unzip this repository into your Arduino/libraries folder (or better still, use the Arduino 'add library from .zip' option.
* Library also tested to work fine with PlatformIO, install into your PlatformIO projects' lib/ folder as appropriate.
2018-10-29 23:57:10 +01:00
2021-02-16 21:21:38 +01:00
## 2. Wiring ESP32 with the LED Matrix Panel
2018-10-23 02:00:47 +02:00
2020-11-28 09:39:35 +01:00
By default the pin mapping is as follows (defaults defined in ESP32-HUB75-MatrixPanel-I2S-DMA.h).
2018-10-23 02:00:47 +02:00
```
HUB 75 PANEL ESP 32 PIN
+-----------+
| R1 G1 | R1 -> IO25 G1 -> IO26
| B1 GND | B1 -> IO27
| R2 G2 | R2 -> IO14 G2 -> IO12
2020-12-19 18:07:03 +01:00
| B2 E | B2 -> IO13 E -> N/A (required for 1/32 scan panels, like 64x64. Any available pin would do, i.e. IO32 )
2019-07-13 21:00:25 +02:00
| A B | A -> IO23 B -> IO19
| C D | C -> IO 5 D -> IO17
| CLK LAT | CLK -> IO16 LAT -> IO 4
| OE GND | OE -> IO15 GND -> ESP32 GND
2018-10-23 02:00:47 +02:00
+-----------+
```
However, if you want to change this, simply provide the wanted pin mapping as part of the class initialization structure. For example, in your sketch have something like the following:
```
// Change these to whatever suits
#define R1_PIN 25
#define G1_PIN 26
#define B1_PIN 27
#define R2_PIN 14
#define G2_PIN 12
#define B2_PIN 13
#define A_PIN 23
#define B_PIN 22
#define C_PIN 5
#define D_PIN 17
2020-12-19 18:07:03 +01:00
#define E_PIN -1 // required for 1/32 scan panels, like 64x64. Any available pin would do, i.e. IO32
#define LAT_PIN 4
#define OE_PIN 15
#define CLK_PIN 16
HUB75_I2S_CFG::i2s_pins _pins={R1_PIN, G1_PIN, B1_PIN, R2_PIN, G2_PIN, B2_PIN, A_PIN, B_PIN, C_PIN, D_PIN, E_PIN, LAT_PIN, OE_PIN, CLK_PIN};
HUB75_I2S_CFG mxconfig(
64, // Module width
32, // Module height
2, // chain length
_pins, // pin mapping
);
dma_display = new MatrixPanel_I2S_DMA(mxconfig);
```
2018-10-24 00:58:49 +02:00
The panel must be powered by 5V AC adapter with enough current capacity. (Current varies due to how many LED are turned on at the same time. To drive all the LEDs, you need 5V4A adapter.)
2021-02-16 21:21:38 +01:00
## 3. Run a Test Sketch
2020-08-14 11:02:58 +02:00
2020-11-28 10:45:30 +01:00
Below is a bare minimum sketch to draw a single white dot in the top left. You must call .begin() before you call ANY pixel-drawing (fonts, lines, colours etc.) function of the MatrixPanel_I2S_DMA class.
2020-08-14 11:02:58 +02:00
2020-08-14 11:21:31 +02:00
No .begin() before other functions = Crash
2020-08-14 11:02:58 +02:00
```
2020-11-28 09:39:35 +01:00
#include <ESP32-HUB75-MatrixPanel-I2S-DMA.h>
2020-11-28 10:45:30 +01:00
MatrixPanel_I2S_DMA matrix;
2020-08-14 11:02:58 +02:00
void setup()
{
// MUST DO THIS FIRST!
matrix.begin(); // Use default values for matrix dimentions and pins supplied within ESP32-HUB75-MatrixPanel-I2S-DMA.h
2020-08-14 11:02:58 +02:00
// Draw a single white pixel
2020-08-14 11:06:07 +02:00
matrix.drawPixel(0,0, matrix.color565(255,255,255)); // can do this after .begin() only
2020-08-14 11:02:58 +02:00
}
void loop()
2020-08-14 11:06:07 +02:00
{ }
2020-08-14 11:02:58 +02:00
```
2021-02-16 21:21:38 +01:00
Once this is working, refer to the [PIO Test Patterns](/examples/PIO_TestPatterns) example. Note: Requires the use of PlatformIO, which you should probably use if you aren't already.
# More Information
## Build-time options
Although Arduino IDE does not seem to offer any way of specifying compile-time options for external libs there are other IDE's (like PlatformIO/Eclipse) that could use that. This lib supports the following compile-time defines
**USE_GFX_ROOT** - Use lightweight version of AdafuitGFX, without Adafruit BusIO extensions
**NO_GFX** - Build without AdafuitGFX, only native methods supported based on manipulating DMA buffer. I.e. no methods of drawing circles/shapes, typing text or using fonts!!!
This might save some resources for applications using it's own internal graphics buffer or works solely with per-pixel manipulation. For example Aurora effects can work fine w/o AdafruitGFX.
**NO_FAST_FUNCTIONS** - do not build auxiliary speed-optimized functions. Those are used to speed-up operations like drawing straight lines or rectangles. Otherwise lines/shapes are drawn using drawPixel() method. The trade-off for speed is RAM/code-size, take it or leave it ;)
2021-02-16 21:21:38 +01:00
2018-10-24 00:58:49 +02:00
2020-09-06 18:22:51 +02:00
## Can I use with a larger panel (i.e. 64x64px square panel)?
2020-08-15 16:38:06 +02:00
If you want to use with a 64x64 pixel panel (typically a HUB75*E* panel) you MUST configure a valid *E_PIN* to your ESP32 and connect it to the E pin of the HUB75 panel! Hence the 'E' in 'HUB75E'
2018-10-24 00:58:49 +02:00
2021-02-16 21:21:38 +01:00
## Can I chain panels?
Yes.
For example: If you want to chain two of these horizontally to make a 128x32 panel you can do so by setting the MATRIX_WIDTH to '128' and connecting the panels in series using the HUB75 ribbon cable.
Similarly, if you wanted to chain 4 panels to make a 256x32 px horizontal panel, you can easily by setting the MATRIX_WIDTH to '256' and connecting the panels in series using the HUB75 ribbon cable.
You MUST either change the MATRIX_WIDTH or MATRIX_HEIGHT values within the 'ESP32-HUB75-MatrixPanel-I2S-DMA.h' file OR pass a [compile time option](https://github.com/mrfaptastic/ESP32-HUB75-MatrixPanel-I2S-DMA/issues/48#issuecomment-749402379) if using PlatformIO for your development (you should use this).
2021-01-11 10:24:02 +01:00
2021-02-16 21:21:38 +01:00
Finally, if you wanted to chain 4 x (64x32px) panels to make 128x64px display (essentially a 2x2 grid of 64x32 LED Matrix modules), a little more magic will be required. Refer to the [Chained Panels](examples/ChainedPanels/) example.
2020-08-02 23:47:02 +02:00
2020-08-15 16:38:06 +02:00
Resolutions beyond 128x128 are likely to result in crashes due to memory constraints etc. You're on your own at this point.
2020-08-03 15:51:48 +02:00
2020-08-11 21:49:36 +02:00
![ezgif com-video-to-gif](https://user-images.githubusercontent.com/12006953/89837358-b64c0480-db60-11ea-870d-4b6482068a3b.gif)
2020-09-06 18:33:39 +02:00
## Panel Brightness
2019-07-31 00:37:40 +02:00
By default you should not need to change / set the brightness setting as the default value (16) is sufficient for most purposes. Brightness can be changed by calling `setPanelBrightness(int XX)` or `setBrightness8(uint8_t XX)`.
2020-09-06 18:31:21 +02:00
The value to pass 'setPanelBrightness' must be a value less than MATRIX_CHAIN_WIDTH in pixels. For example for a single 64x32 LED Matrix Module, a value must be less than 64. However, if you set the brightness too high, you may experience ghosting.
2020-09-06 18:31:21 +02:00
2020-12-19 18:07:03 +01:00
Also you may use method `setPanelBrightness8(x)`, where x is a uint8_t value between 0-255. Library will recalculate required brightness level depending on matrix width (mostly useful with FastLED-based sketches).
2020-09-06 18:31:21 +02:00
Example:
2019-07-29 14:27:52 +02:00
```
void setup() {
Serial.begin(115200);
matrix.begin(); // setup the LED matrix
2020-09-06 18:31:21 +02:00
matrix.setPanelBrightness(16); // Set the brightness. 32 or lower ideal for a single 64x32 LED Matrix Panel.
2019-07-29 14:27:52 +02:00
2020-12-19 18:07:03 +01:00
// or another way
matrix.setPanelBrightness8(192); // Set the brightness to about 3/4 or 75% (192/256) of maximum.
2019-07-29 14:27:52 +02:00
}
```
2020-09-06 18:33:39 +02:00
Summary: setPanelBrightness(xx) value can be any number from 0 (display off) to MATRIX_WIDTH-1. So if you are chaining multiple 64x32 panels, then this value may actually be > 64 (or you will have a dim display). Changing the brightness will have a huge impact on power usage.
2020-08-25 00:51:33 +02:00
2020-08-13 15:17:47 +02:00
![It's better in real life](image.jpg)
## Latch blanking
If you face issues with image ghosting when pixels has clones with horizontal offset, than you try to change Latch blanking value. Latch blanking controls
for how many clock pulses matrix output is disabled via EO signal before/after toggling LAT signal. It hides row bits transitioning and different panels may
require longer times for proper operation. Default value is 1 clock before/after LAT row transition. This could be controlled with `MatrixPanel_I2S_DMA::setLatBlanking(uint8_t v)`. v could be between 1 to 4, default is 1, larger values won't give any benefit other than reducing brightness.
An example:
```
matrix.setLatBlanking(2);
```
2020-11-06 00:53:55 +01:00
## Power, Power and Power!
2020-11-28 09:39:35 +01:00
Having a good power supply is CRITICAL, and it is highly recommended, for chains of LED Panels to have a 2000uf capacitor soldered to the back of each LED Panel across the [GND and VCC pins](https://github.com/mrfaptastic/ESP32-HUB75-MatrixPanel-I2S-DMA/issues/39#issuecomment-720780463), otherwise you WILL run into issues with 'flashy' graphics whereby a large amount of LEDs are turned on and off in succession (due to current/power draw peaks and troughs).
2020-11-06 00:53:55 +01:00
2020-11-13 01:14:20 +01:00
Refer to this guide written for the [rpi-rgb-led-matrix library](https://github.com/hzeller/rpi-rgb-led-matrix/blob/master/wiring.md#a-word-about-power) for an explanation.
2020-11-28 09:39:35 +01:00
- Refer to this [example](https://github.com/mrfaptastic/ESP32-HUB75-MatrixPanel-I2S-DMA/issues/39#issuecomment-722691127) issue of what can go wrong with a poor powersupply.
- Refer to [this comment](https://github.com/mrfaptastic/ESP32-HUB75-MatrixPanel-I2S-DMA/issues/35#issuecomment-726419862) in regards to certain panels not playing nice with voltages, and a 3.3volt signal that the ESP32 GPIO can only provide.
2020-11-06 00:53:55 +01:00
2020-07-29 09:47:54 +02:00
## Inspiration
2018-10-24 00:58:49 +02:00
* 'SmartMatrix' project code: https://github.com/pixelmatix/SmartMatrix/tree/teensylc
* Sprite_TM's demo implementation here: https://www.esp32.com/viewtopic.php?f=17&t=3188
2018-10-23 02:09:16 +02:00