#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27, 16, 2); // I2C address 0x27, 16 column and 2 rows
void setup() {
// put your setup code here, to run once:
lcd.init();
lcd.backlight();
}
void loop() {
// put your main code here, to run repeatedly:
int analogValue = analogRead(A5);
float voltage = analogValue * (5* 1023);
lcd.setCursor(0,0);
lcd.print(voltage);
}