#include <LiquidCrystal.h>
LiquidCrystal lcd(12,11,10,9,8,7);//RS,E,D4 ...D7
void setup() {
lcd.begin(16,2); // 16 stolpec in dve vrstici
}
int counter = 10;
char * beseda = "JANEZ SIFRER";
void loop() {
tekstPrint(beseda);
steviloPrint(counter);
}
void tekstPrint(char * tekst){
lcd.setCursor(0,1);
lcd.print(tekst);
}
void steviloPrint(int x){
lcd.setCursor(0,0);
lcd.print(x);
}