#include <WiFi.h>
#include <Wire.h>
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27, 16, 2);
void setup()
{
// Initialize the LCD
lcd.begin(16, 2);
lcd.backlight();
// Display the text
lcd.setCursor(0, 0);
lcd.print("Welcome To");
lcd.setCursor(7, 1);
lcd.print("PPPP");
}
void loop() {
// No code
}