#include <LiquidCrystal.h>
LiquidCrystal lcd(2, 11, 12, 7, 6, 5);
void setup() {
lcd.begin(16, 2);
lcd.print("hallo anak muda");
}
void loop() {
// Nothing to do here for this example
lcd.setCursor(15,1);
}
#include <LiquidCrystal.h>
LiquidCrystal lcd(2, 11, 12, 7, 6, 5);
void setup() {
lcd.begin(16, 2);
lcd.print("hallo anak muda");
}
void loop() {
// Nothing to do here for this example
lcd.setCursor(15,1);
}