We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Seems the module i bought has all the matrixes -180 degrees. I tried modifying cpp to
void LedMatrix::commit() { for (byte col = myNumberOfDevices * 8; col > 0; col--) { sendByte(col / 8, col % 8 + 1, cols[col]); } }
But that just reverse it on each screen, not the entire scroll.
Any idea how to fix it?
The text was updated successfully, but these errors were encountered:
Probably similar solution to #7 if I was to guess, I'll have a look and see what I can do.
Sorry, something went wrong.
No branches or pull requests
Seems the module i bought has all the matrixes -180 degrees. I tried modifying cpp to
void LedMatrix::commit() {
for (byte col = myNumberOfDevices * 8; col > 0; col--) {
sendByte(col / 8, col % 8 + 1, cols[col]);
}
}
But that just reverse it on each screen, not the entire scroll.
Any idea how to fix it?
The text was updated successfully, but these errors were encountered: