#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27,16,2);
void setup() {
// put your setup code here, to run once:
}
void loop() {
// put your main code here, to run repeatedly:
int pot = analogRead(A0);
lcd.begin(16,2);
lcd.backlight();
lcd.setCursor(3,0);
lcd.print("Resistancy:");
lcd.setCursor(5,1);
lcd.print(pot);
}