Hello FastLED Community. I have built a 42x7 matrix in a serpentine layout (one data pin), and have the basics working with the XYMatrix example sketch. I would like to display text and simple bitmaps. Google searches are turning up a wide variety of options none of which I have found to be straight forward for my custom WS2811 matrix.
I have found a 5x7 font that would fit my matrix (link below), but am unclear how to map their hex values to what I assume is binary on/off for columns of pixels.
I have had some success and a bit of confusion. Two of the examples in LEDMatrix put my esp32 in crash loop. I did get MatrixGFXDemo to work, though I cannot seem to slow down the delays between demos, or get it to display more than ~20 characters of text. My hope is to display a graphic/bitmap and some simple text (not scrolling text) at the same time. Will keep trying and follow up.
@Roger_Guess the main FastLED branch is not stable on ESP32, sadly, which may be the problems you’re having.
Try https://github.com/samguyer/FastLED
The delays between demos in MatrixGFXDemo are simple delay() commands in loop(), I’m not sure how you can not increase the delay value or what isn’t working for you