[Question] LCD Widget Connections

yes, @krishnan. only change lybraries for wifi

//#define BLYNK_PRINT Serial  
//#include ESP8266WiFi.h
//#include BlynkSimpleEsp8266.h


// You should get Auth Token in the Blynk App.
// Go to the Project Settings (nut icon).
char auth[] = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
char ssid[] = "xxxxxxxxxxxxxx";
char pass[] = "xxxxxxxxxxxx";


WidgetLCD lcd(V1);


void setup()
{
  // Debug console
  Serial.begin(9600);

  Blynk.begin(auth, ssid, pass);
  
  lcd.clear(); //Use it to clear the LCD Widget
  lcd.print(4, 0, "Hello"); // use: (position X: 0-15, position Y: 0-1, "Message you want to print")
  lcd.print(0, 1, "word");
  // Please use timed events when LCD printintg in void loop to avoid sending too many commands
  // It will cause a FLOOD Error, and connection will be dropped

}

void loop()
{
  Blynk.run();

}

Edited with proper formatting / Fettkeewl