// funkcija za izpis niza stringov
#include <LiquidCrystal.h>
LiquidCrystal lcd(12,11,10,9,8,7);
int pin[7] = {13, 12, 11, 10, 9, 8, 7};
int x = 0;
int buttonPin = 1;
void setup() {
lcd.begin(16, 2);
// put your setup code here, to run once:
delay(700);
randomSeed(analogRead(0));
}
void loop() {
if (digitalRead(buttonPin)==HIGH){
lcd.setCursor(8,0);
lcd.print(random(7));
delay(500);
}
}