// Funkcija za izpis števila, besedila, znaka
#include <LiquidCrystal.h>
LiquidCrystal lcd(12, 11, 10, 9, 8, 7);

byte hertz[8] = {
  0b00000,
  0b01010,
  0b11111,
  0b11111,
  0b11111,
  0b01110,
  0b00100,
  0b00000
};


void setup() {
  // put your setup code here, to run once:
  lcd.begin(16,2);
  lcd.createChar(2, hertz);
}

void loop() {
  // put your main code here, to run repeatedly:
  lcd.setCursor(5,0);
  lcd.write(2);
  tekstPrint("go die"); //funkcija izpis besedila
  steviloPrint(80); //funkcija izpis števila

}

void tekstPrint(char tekst[]){ //char *tekst ali String tekst
  lcd.setCursor(0,1);
  lcd.print(tekst);
}
void steviloPrint(int x){
  lcd.setCursor(0,0);
  lcd.print(x);
}