#include <Wire.h>
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27,16 ,2);
void setup()
{
lcd.begin(16,2);
lcd.backlight();
}
void loop(){
lcd.setCursor(0,1);
lcd.print("Yeayy Euphoriaa");
lcd.scrollDisplayLeft();
delay(75);
// put your setup code here, to run once:
}
// put your main code here, to run repeatedl