#include <LiquidCrystal.h>
LiquidCrystal lcd(12,11,10,9,8,7); //RE,E, D4...D7

void setup() {
  lcd.begin(16, 2); //16 stolpcev in 2 vrstici
}

int counter = 10;


void loop() {
  tekstPrint("BESEDILO!!"); // klic funkcije tekstPrint
  steviloPrint(counter); // klic funkcije steviloPrint
}

void tekstPrint(char * tekst) { // * tekst = kazalec --> kaže na prvi string v besedilu (B), zvezdica pa pomeni da vzame celo besedilo
  lcd.setCursor(0,1); //1 stolpec, 2 vrstica
  lcd.print(tekst);
}

void steviloPrint(int x) {
  lcd.setCursor(0,0);
  lcd.print(x);
}