#include <Wire.h>
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C LCD (0x27,16,2);
void setup() {
// put your setup code here, to run once:
LCD.init();
LCD.backlight();
LCD.print("Shams Robo Champs");
delay(2000);
}
void loop() {
// put your main code here, to run repeatedly:
LCD.clear();
LCD.setCursor(5,0);
LCD.print("SIUPS");
LCD.setCursor(4,1);
LCD.print("WELCOME");
delay(5000);
}