As @Wilberforce says, take a look at the Multiple chained MAX7219 heading in the link above.
Then, it's just a matter of something like:
require("Font6x8").add(Graphics);
var text = "Hello world with lots and lots of text";
var x = 0;
function scroll() {x--;
if (x<-g.stringWidth(text)) x=g.getWidth();
g.clear();
g.drawString(text, x, 0);
g.flip();
}
setInterval(scroll, 20);
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
As @Wilberforce says, take a look at the
Multiple chained MAX7219
heading in the link above.Then, it's just a matter of something like: