// Micro Robotics
#include "LedControl.h"
#include "binary.h"
#define DIN 3
#define CS 4
#define CLK 5
#define DEV 1 //No of Devices
LedControl lc=LedControl(DIN,CLK,CS,DEV);
void setup() {
lc.shutdown(0,false);
lc.setIntensity(0,8); // Set the brightness (0-15)
lc.clearDisplay(0);
}
void loop() {
lc.setRow(0,0,B11111111); //ROW 0 COLUMN 0
delay(1000);
lc.setRow(0,7,B11110000); //ROW 7 COLUMN 0
delay(1000);
lc.clearDisplay(0);
delay(1000);
}