Hi
I use u8g2 for Adafruit and ESP32-HUB75-MatrixPanel-I2S-DMA to drive 2 HUB75 6464 LEDs
I want to display a scroll text (I turned on the double_buff for smoother display)
it works well , but when I increase the length of str
eg:
const char *str="12345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890";
The scrolling speed will become very slow, I guess in drawUTF8, even the part beyond the LED display range is still calculated ,is there any good solution?
Hi I use u8g2 for Adafruit and ESP32-HUB75-MatrixPanel-I2S-DMA to drive 2 HUB75 6464 LEDs I want to display a scroll text (I turned on the double_buff for smoother display)
it works well , but when I increase the length of str eg:
const char *str="12345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890";
The scrolling speed will become very slow, I guess in drawUTF8, even the part beyond the LED display range is still calculated ,is there any good solution?Thank you very much!!