#include <LiquidCrystal.h>
LiquidCrystal lcd (6,7,8,9,10,11);
const int potpin1 =A0;
const int ledpin1 =5;
void setup() {
pinMode(potpin1,INPUT);
pinMode(ledpin1,OUTPUT);
lcd.begin (16,2);
lcd.clear();
}
void loop() {
int potvalue=analogRead(potpin1);
lcd.setCursor(0,0);
lcd.print("helo world");
lcd.setCursor(0,1);
lcd.print("Menampilkan teks");
}