#include <LiquidCrystal.h>
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
void setup() {
lcd.begin(16, 2); // Inisialisasi LCD dengan ukuran 16x2
lcd.print("Hello, World!"); // Tampilkan teks di baris pertama
}
void loop() {
// put your main code here, to run repeatedly:
}