Hello! I’m trying to setup 4 vertical panels, each one 8x128 pixels in serpentine. I want to assemble them with a gap between them. I can set them up in 2D Configuration if I leave no gap:
Panel 0: offset 0, 0
Panel 1: offset 8, 0
Panel 2: offset 16, 0
Panel 3: offset 24, 0
In this way I have a matrix dimension of 4096 pixels. This works fine. I have a 4 output board and each panel is in an output with 1024 pixels.
I want a gap, so that effects like Colored Bursts show up correctly. So I tried this:
Panel 0: offset 0, 0
Panel 1: offset 16, 0
Panel 2: offset 32, 0
Panel 3: offset 48, 0
This doesn’t work: the ESP32 reboots and the configuration is not updated.
If I leave a 2 pixel gap (X offsets of 0, 10, 20, 30), it works. But if I leave a 4 pixel gap (0, 12, 24, 36), it crashes. What could be going on? I seem to have plenty of free heap available. Thanks!