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

Pedro147:
Hi Brattan,

I just realised that these two code examples do not use Ledcontrol library so when I get home from work I will see what else I have found online and post the link or code for them. But in the meantime -

Scrolltest2 .ino, by Riva on this forum, is attached to the fourth post in this thread Max72XX scrolling text code - #12 by Pedro147 - LEDs and Multiplexing - Arduino Forum

The MAX7219 library I use in Scrolltest2.ino is just a subset of the LedControl library that I hacked to reduce size as original project ran on a ATmega8 and I was running out of space. If you replace the MAX7219 references with LedControl then it should still work okay.
#include <MAX7219.h> becomes
#include <LedControl.h>
and
MAX7219 lc=MAX7219(DIN,CLK,LOAD,numDevices); becomes
LedControl lc=LedControl (DIN,CLK,LOAD,numDevices);

EDIT: I have attached the latest test version of my scrolling code that does kerning that has been modified for the MAX7219 from the Rainbowduino it used to work on. It compiled okay but I don't have a matrix to test it on so beware. Maybe some kind soul will test it and confirm it works okay.

ScrollTest4MAX.ino (14.2 KB)