#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27,16,2);
void setup() {
lcd.init();
lcd.backlight();
//lcd.setCursor(0,0);
//lcd.print("Hola mundo");
// put your setup code here, to run once:
}
void loop() {
int pot1=analogRead(35);
lcd.setCursor(1,0);
lcd.print("POT: ");
lcd.setCursor(7,0);
lcd.print(pot1);
delay(500);
lcd.clear();
}