int seznam[] = {1, 2, 4, 6, 8, 10, 12, 14, 16};
int seznam1[] = {16, 14, 12, 10, 8, 6, 4, 2, 1};
int check = 0;
void setup() {
// Port D, pins 3 and 2 set to input_pullup:
DDRD &= 0xF3;
PORTD = 0b00001100;
// Serial communication start:
Serial.begin(115200);
}
void loop() { // delimo s številom bitov, ki jih zasede ena spremenljivka
// Reading both buttons:
int buttOn = PIND & 0x08;
int buttOff = PIND & 0x04;
// if blue button is held:
if (buttOn == 0){
check = 1;
}
// if red button is held:
else if (buttOff == 0){
check = 0;
}
// print of seznam:
if (check == 1){
for(int x = 0; x < (sizeof(seznam) / sizeof(seznam[0])); x++){
Serial.println(seznam[x]);
delay(350);
}
}
// print of seznam1:
else {
for(int x = 0; x < (sizeof(seznam1)/sizeof(seznam1[0])); x++){
Serial.println(seznam1[x]);
delay(350);
}
}
}