#include <LiquidCrystal_I2C.h>
const int potPin = 15;
int potValue = 0;
LiquidCrystal_I2C lcd(0x27, 16, 2);
void setup()
{
lcd.init();
lcd.backlight();
lcd.clear();
}
void loop()
{
lcd.setCursor(0,0);
lcd.print(" Suverna Sengar ");
lcd.setCursor(0,1);
lcd.print(" 22490 ");
delay(2000);
lcd.clear();
potValue = analogRead(potPin);
lcd.setCursor(0,0);
lcd.print("ADC Value =");
lcd.setCursor(12,0);
lcd.print(potValue);
delay(1000);
}