#include <LED.h>
byte i;
//array 12 LED
LED led[12]={LED(2), LED(3), LED(4), LED(5), LED(6), LED(7), LED(8), LED(9), LED(10), LED(11), LED(12), LED(13)};
//konstanta penanda led
const byte H1=0; const byte K1=1; const byte M1=2;
const byte H2=3; const byte K2=4; const byte M2=5;
const byte H3=6; const byte K3=7; const byte M3=8;
const byte H4=9; const byte K4=10; const byte M4=11;
void setup(){
for(i=0;i<12;i++){
led[i].off();
}
delay(200);
}
void loop() {
led[H1].on();
}