#include <liquidCrystal_12C.h>
liquidCrystal_12C lcd (8x27,16,2);
void setup() {
lcd.limit();
lcd.setCursor(0,1);
lcd.print("Good Morning!");
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("Hello, ESP32!");
}
void loop() {
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}