// Funkcija za izpis stringa in števila

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

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

int counter = 10;
//String str_beseda = "Besedilo"; //a..
char * beseda = "JANEZ";
void loop() {
  // put your main code here, to run repeatedly:
  //tekstPrint("BESEDA"); // klic funkcije tekstPrint
  //tekstPrint(str_beseda); //a..
  tekstPrint(beseda);
  //steviloPrint(100); // klic funkcije steviloPrint
  steviloPrint(counter);
}

//void tekstPrint(char * tekst) { //*tekst = kazalec
//void tekstPrint(String tekst){ //a..
void tekstPrint(char *tekst){
  lcd.setCursor(0,1); //prvi stolpec, druga vrstica
  lcd.print(tekst);
}
void steviloPrint(int x){
  lcd.setCursor(0,0);
  lcd.print(x);
}