#include <LiquidCrystal.h>
// RS, E, D4, D5, D6, D7
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
void setup() {
lcd.begin(16, 2); // 16 columns, 2 rows
lcd.print("Hello, U Aung!"); // First line
lcd.setCursor(0, 1); // Column 0, Row 1 (second line)
lcd.print("Fuck U");
}
void loop() {
// nothing here
}