4 x 64er LED Matrix Display

4 x 64er LED Matrix Display

Hello,

the sketch „MD_MAX72xx_PrintText_ML“ controls two displays connected to 12 modules.

It is stored in Arduino IDE

Examples * Examples own bibliotheks * MD_MAX72xx *

„abc“ is displayed on display 1 and „def“ is displayed on display 2

I want to display additional words following every 5 seconds

display 1: „abc“ display 2 „def“

waiting 5 seconds then

display 1: “123“ and display 2 “456“

etc.

What have i to do, to edit the sketch, that the two displays continiue with additional words and numbers with a delay of 5 seconds?

Nano Pin 11, 13 ,10 connected with display 1 und Nano Pin 11, 13, 9 connected with display 2

 struct LineDefinition  Line[] =

    {

      { MD_MAX72XX(HARDWARE_TYPE, 11, 13, 10, MAX_DEVICES), "abc", true },    

      { MD_MAX72XX(HARDWARE_TYPE, 11, 13, 9, MAX_DEVICES), "def", true }     

    };