volatile int k1=1;
volatile int k2=1;
void setup() {
pinMode(2, INPUT_PULLUP);
Serial.begin(9600);
attachInterrupt(digitalPinToInterrupt(2),tipka,RISING);
}
void tipka(){
Serial.println(String(k1) + "," + String(k2));
}
void loop() {
if(k1<6){
delay(500);
k1++;
if(k2<6 && k1==6){
k2++;
}
}else{
k1=1;
}
if(k1==6 && k2==6){
k1=1;
k2=1;
}
}