//include the library code :
#include <LiquidCrystal.h>;
//initialize the library by associating any needed LCD interface pin
//with the arduino pin number it is connected to
const int potentiometerPin = A0;
LiquidCrystal lcd(10,9,7,6,5,4);
void setup(){
//set up the LCD's numberof columns and rows:
lcd.begin(16,2);
//print a massage to the LCD.
lcd.print("KISHORE KUMAR");
}
void loop(){
int sensorvalue = analogRead(potentiometerPin);
lcd.setCursor(0,1);
lcd.print("REG NO 12403689");
lcd.print(sensorvalue);
delay(500);
}