#include <LiquidCrystal.h>
LiquidCrystal lcd(12,11,10,9,8,7); // RS, E , D4..D7
int x = 10;
void setup() {
lcd.begin(16,2); // 16 stolpcev 2 vrstici
}
void loop() {
lcd.setCursor(0,1); // premakne 5 stolpec 1 vrstica
lcd.print("Stevec: ");
lcd.setCursor(10,1); // premakne 5 stolpec 1 vrstica
lcd.print(millis()/100);
lcd.setCursor(0,0); // premakne 5 stolpec 1 vrstica
lcd.print("primer: ");
}