Closed
Description
Hello,
I'm using this library to drive an Arduino RGB Shield (5x12 LED Matrix).
With the following piece of code:
MATRIX.beginText(MATRIX.width(), 0, 80, 80, 80);
MATRIX.print("H");
MATRIX.endText(SCROLL_RIGHT);
I get this behavior (5th frame):
ooooo o....
ooooo o....
oooooooo....
ooooo o....
............
insted of this one (5th frame):
....o o....
....o o....
....oooo....
....o o....
............
As you can see, pixels are not turned off properly, resulting in a character trace.
Character traces also occurs when using SCROLL_DOWN but not with SCROLL_LEFT or SCROLL_UP.
Any suggestion on how to remove such traces?
Thank you.
EDIT
Just noticed that:
- traces are not present when using the letter "i" (either capitalized or not) and SCROLL_RIGHT
- traces are present when using the letter "i" (either capitalized or not) and SCROLL_DOWN