//We always have to include the library #include "LedControl.h" /* Now we need a LedControl to work with. ***** These pin numbers will probably not work with your hardware ***** pin 12 is connected to the DataIn pin 11 is connected to the CLK pin 10 is connected to LOAD ***** Please set the number of devices you have ***** But the maximum default of 8 MAX72XX wil also work. */ LedControl lc=LedControl(12,11,10,1);//pins 12,11,10,1=Number of Devices /* we always wait a bit between updates of the display */ unsigned long delaytime=20; /* This time we have more than one device. But all of them have to be initialized individually. */ void setup() { //we have already set the number of devices when we created the LedControl int devices=lc.getDeviceCount(); //we have to init all devices in a loop for(int address=0;address