#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27 , 16,2);
int POT = 0 ;
void setup() {
lcd.init();
lcd.backlight();
}
void loop() {
lcd.clear();
int POT = analogRead(13);
lcd.setCursor(5,0);
lcd.print(" IAVAZ ");
lcd.setCursor(6,1);
lcd.print("POT:");
lcd.print(POT);
delay(1000);
lcd.clear();
}