Have you guys had a problem like this? Spliting image in the LED Panel
It's just run examples testcolors demo for Adafruit RGBmatrixPanel library. Or you guys can suggest another library that might support my LED panel(P10 32x16 RGB LED Panel 1/4s?
xfpd
May 29, 2025, 8:19pm
2
Looks like you do not have the right board... not enough RAM.
You cannot use this size panel with an Arduino UNO (ATmega328) or ATmega32u4
- you need a chip with more RAM!
Okay i willl try with another arduino UNO, thanks
Try a dozen Unos, all will fail. Not enough memory.
xfpd:
not enough RAM.
32 * 16 * 3 = 1.5k... should fit but there is not much RAM left for anything else.
Please check for loose connections. Is pin B connected to the right pin?
b707
May 30, 2025, 6:35pm
7
Rintin:
32 * 16 * 3 = 1.5k...
The library uses a 4bit colors, so it will be a 32*16 *3 / 2 = 750 bytes
The source of the issue is a scan factor - the RGBmatrixPanel library doesn't support a 1/4s panels.
Try another libraries -
for ESP32 boards:
An Adafruit GFX Compatible Library for the ESP32, ESP32-S2, ESP32-S3 to drive HUB75 LED matrix panels using DMA for high refresh rates. Supports panel chaining.
or (STM32 / RP2040)
STM32Duino library for RGB, Monochrome and Two-color led matrix panels
You are right. But I would expect line L4-L7 to be mapped on line L0-L3 and not blanked.