#include <LiquidCrystal.h>
LiquidCrystal lcd (13,12,11,10,9,8);
void setup() {
// put your setup code here, to run once:
lcd.begin(16,2);
lcd.setCursor(4,0);
lcd.print("Welcome To");
delay(1000);
lcd.clear();
lcd.setCursor(4,1);
lcd.print("Shahid Iqbal");
delay(1000);
lcd.clear();
lcd.setCursor(4,0);
lcd.print("Thank You");
delay(1000);
}
void loop() {
// put your main code here, to run repeatedly:
lcd.clear();
lcd.setCursor(0,0);
lcd.print("Show the Value = ");
int pot =analogRead(A5);
lcd.setCursor(7,1);
lcd.print(pot);
delay(5000);
}