I’m trying to adapt +Mark Kriegsman 16X16 Fireworks code from github to my 16X25 home grown matrix with limited success.
I’m using the 3.1 version of FastLED on an Arduino MEGA2560.
My matrix is built from 16 strips of 25 WS2812b each.
Each strip is connected to a separate pin on the MEGA.
I modified the original sketch to match my HW config and got the animation going with constants PIXEL_WIDTH 15 and PIXEL_HEIGHT 16.
I tried modifying to PIXEL_WIDTH 16 but the animation did not work anymore. The animation worked for PIXEL_WIDTH 16 if set PIXEL_HEIGHT 15. The animation also worked for PIXEL_HEIGHT 25 if I set PIXEL_WIDTH 10 !
Looks like the sketch limits the total size of the array to less than 256 or I’m hitting a memory limitation on the MEGA2560 !? My mediocre programming skills just can’t figure out how to modify the original sketch for a 16X25 array.
Any hints ?