#include <LiquidCrystal.h>
LiquidCrystal Lcd(2,0,4,16,17,5);
int potentiometer(0);
void setup()
{
Lcd.begin(16,2);
pinMode(A0,INPUT);
}
void loop()
{
int a;
a=analogRead(A0);
Lcd.clear();
Lcd.setCursor(0,0);
Lcd.print("Mr_smart_001_");
delay(10);
}