#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C LCD(0x27, 16, 2);
void setup() {
LCD.init();
LCD.backlight();
}
void loop() {
// put your main code here, to run repeatedly:
LCD.clear();
LCD.print("HELLO BITCHES");
delay(2000);
LCD.clear();
LCD.print("byeeeeee");
delay(2000);
}