Sketch examples of scrolling text on 8x8 LED matrix w/ MAX72xx

Pedro, thank you SOOOOOOOOOOOOOOOOOOOOOOOOO much!!!!! This is just what I was looking for, I don't know how I missed that thread (115559), it's basically what I'm trying to do, it's perfect! :slight_smile:
I'm digging into the code now, can't wait to go home and try it out!!! :smiley:

dhenry, that's a good tip. I wanted even more basic information tho, how actual scrolling would work? I thought about it and it seems that I need to shift each column of bits to the side. So if top of the letter A is "00111100", I'll need to make it into "01111000", and then "11110000". Then it will start to wrap around " "01110001". So how would I do this "byte shifting" programatically with for loops, etc.? At this point I have no idea, but hopefully I can figure out it from the examples that Pedro showed me.