#include<Wire.h>
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27,16,2);
void setup()
{
lcd.init();//Print a message to the LCD.
lcd.backlight();
lcd.setCursor(0,0);
lcd.print("Welcome to TVsTS");
lcd.setCursor(2,1);
lcd.print(" TVSTS ");
}
void loop()
{}