Skip to content
New issue

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

Bug in Example_Display_Scrolling_Text #3

Open
GoogleCodeExporter opened this issue Feb 19, 2016 · 1 comment
Open

Bug in Example_Display_Scrolling_Text #3

GoogleCodeExporter opened this issue Feb 19, 2016 · 1 comment

Comments

@GoogleCodeExporter
Copy link

There's a bug in Example_Display_Scrolling_Text:

  m.writeSprite(32, 0, buffer);
  m.setColumn(32 + buffer[0], 0);

in method void printCharWithShift(char c, int shift_speed)
This works for up to 4 MAX7219's only because of writing to X coordinate of 32.

It should be:
  m.writeSprite(maxInUse * 8, 0, buffer);
  m.setColumn(maxInUse * 8 + buffer[0], 0);
to work for more than 4 MAX7219's.

Original issue reported on code.google.com by [email protected] on 16 Nov 2014 at 2:15

@GoogleCodeExporter
Copy link
Author

Thankx a lot buddy .I was stuck for a week over this. 

Original comment by [email protected] on 26 Mar 2015 at 9:06

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant