#include <LiquidCrystal_I2C.h>
int pot;
LiquidCrystal_I2C lcd(0x27, 16, 2);
void setup() {
lcd.init();
lcd.backlight();
// put your setup code here, to run once:
pinMode(25, INPUT);
}
void loop() {
pot = analogRead(25);
lcd.setCursor (0,0);
lcd.print ("Pot: ");
lcd.print (pot);
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}