-
Notifications
You must be signed in to change notification settings - Fork 23
Closed
Labels
conclusion: resolvedIssue was resolvedIssue was resolvedtopic: codeRelated to content of the project itselfRelated to content of the project itselftype: imperfectionPerceived defect in any part of projectPerceived defect in any part of project
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
Metadata
Metadata
Assignees
Labels
conclusion: resolvedIssue was resolvedIssue was resolvedtopic: codeRelated to content of the project itselfRelated to content of the project itselftype: imperfectionPerceived defect in any part of projectPerceived defect in any part of project