That didn't really state exactly how to do it, and I had read it before, but, I was able to work out from that how to address each LED individually, here is some code that lights them all in a row, then puts them out and repeats:
#include "Arduino_LED_Matrix.h"
ArduinoLEDMatrix matrix;
void setup()
{
matrix.begin();
}
uint8_t frame[8][12] = {
{ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
{ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
{ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
{ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
{ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
{ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
{ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
{ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
};
void loop()
{
for (int y = 0; y <= 7; y++) {
for (int x = 0; x <= 11; x++) {
frame[y][x] = 1;
matrix.renderBitmap(frame, 8, 12);
delay(50);
};
};
for (int y = 0; y <= 7; y++) {
for (int x = 0; x <= 11; x++) {
frame[y][x] = 0;
matrix.renderBitmap(frame, 8, 12);
};
};
delay(50);
}