#include <LiquidCrystal.h>
LiquidCrystal lcd(23, 22, 21, 19,18, 5);
void setup() {
lcd.begin(16, 2);
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("Hello, ESP32!");
lcd.setCursor(0, 0);
lcd.print("AMIR IOT");
lcd.setCursor(0,1);
lcd.print("Hello World");
}
void loop() {
// put your main code here, to run repeatedly:
delay(1000); // this speeds up the simulation
}