#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd (0x27, 16,2);
void setup() {
// put your setup code here, to run once:
pinMode(A0, INPUT);
pinMode(A5, OUTPUT);
Serial.begin(9600);
lcd.begin(16, 2);
// you can now interact with the LCD, e.g.:
}
void loop() {
// put your main code here, to run repeatedly:
int a = analogRead(A0);
lcd.setCursor(0,0);
lcd.print("Data Analog = ");
lcd.println (a);
delay (500);
}