#include <LiquidCrystal.h>
// RS E D4 D5 R6 D7
LiquidCrystal lcd(19, 23, 18, 17, 16, 15);
void setup() {
lcd.begin(16, 2);
lcd.setCursor(6,0);
lcd.print("sus");
delay(1000);
lcd.clear();
delay(1000);
lcd.print("chltawon sinsuk");
lcd.setCursor(0,1);
lcd.print("65209010009");
Serial.begin(115200);
// Serial.println("Hello, ESP32!");
}
void loop() {
delay(10); // this speeds up the simulation
}