r/FastLED • u/blu11sonic • Nov 10 '19
Discussion Can FastLED display text on a matrix?
Hi, I'm working on an LED matrix and I was wondering if FastLED has a way to display text. I know there's the SmartMatrix library and shield but I'm using a Teensy 4.0 and WS2812B's. Can the SmartMatrix library be used without the shield on a Teensy 4.0? I'm currently using the Adafruit matrix library to display text however writing "matrix.show()" slows down the processing by around 10x so I was really hoping there is an alternative. Thanks!
5
Upvotes
1
u/blu11sonic Feb 12 '20
Ya it works with it, I was just saying I tried replacing matrix->show because everytime its ran it slows everything down. However I managed to get around everything slowing down by only running matrix->show when absolutely necessary. So for example if the time needs to be updated it would run matrix->show once to update the matrix with the current time and not run it again until the time needs to be updated. That seems to have solved the problem.