#include <LedControl.h>
//Muhammad Rafli Rangga Pratama
//22.11.4668
//22IF02
int DIN = 13;
int CS = 12;
int CLK = 11;
LedControl lc = LedControl(DIN, CLK, CS, 0);
void setup() {
lc.shutdown(0, false);
lc.setIntensity(0,0);
lc.clearDisplay(0);
}
void loop() {
lc.setLed(0, 1, 1, true);
lc.setLed(0, 1, 6, true);
lc.setLed(0, 2, 0, true);
lc.setLed(0, 2, 2, true);
lc.setLed(0, 2, 5, true);
lc.setLed(0, 2, 7, true);
lc.setLed(0, 4, 3, true);
lc.setLed(0, 4, 4, true);
lc.setLed(0, 5, 1, true);
lc.setLed(0, 5, 6, true);
lc.setLed(0, 6, 2, true);
lc.setLed(0, 6, 3, true);
lc.setLed(0, 6, 4, true);
lc.setLed(0, 6, 5, true);
lc.setLed(0, 7, 3, true);
lc.setLed(0, 7, 4, true);
}