#include <LedControl.h>
LedControl lc = LedControl(11, 13, 10, 1);
/*const int buttone1 = 2; // the number of the pushbutton pin
const int buttone2 = 3;
const int buttone3 = 4;
const int buttone4 = 5;
int buttonState = 0; // variable for reading the pushbutton status*/
void setup() {
Serial.begin(9600);
lc.shutdown(0, false);
lc.setIntensity(0, 8);
lc.clearDisplay(0);
/*pinMode(buttone1, INPUT);
pinMode(buttone2, INPUT);
pinMode(buttone3, INPUT);
pinMode(buttone4, INPUT);*/
}
void loop() {
}