#include <LiquidCrystal.h>
LiquidCrystal lcd(7, 6, 5, 4, 3, 2);
#define POT 13
void setup() {
// put your setup code here, to run once:
pinMode(POT, INPUT);
lcd.begin(16, 2);
lcd.print("hello wrold");
lcd.createChar();
}
int hitung = 0;
void loop() {
lcd.print("hello");
// lcd.print(hitung++);
}