#include <Wire.h>
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27, 16, 2);
void setup(){
lcd.begin(16,2);
lcd.clear();
lcd.backlight();
lcd.setCursor(4,0);
lcd.print("HALLOOO");
lcd.setCursor(6,5);
lcd.print("BROO");
}
void loop() {
// put your main code here, to run repeatedly:
}