#include <LedControl.h>
const int DIN = 11;
const int CS = 10;
const int CLK = 13;
LedControl lc = LedControl(DIN, CLK, CS, 1);
void setup() {
lc.shutdown(0, false);
lc.setIntensity(0, 8);
}
void loop() {
lc.setLed(0,1,1,true);
lc.setLed(0,3,5,true);
delay(500);
lc.clearDisplay(0);
lc.setRow(0,4,B11111111);
lc.setRow(0,7,B10101010);
delay(500);
lc.clearDisplay(0);
lc.setColumn(0,0,B11100111);
delay(500);
lc.clearDisplay(0);
}