#include <LiquidCrystal_I2C.h>
// initialize the library by associating any needed LCD interface pin
// with the arduino pin number it is connected to
LiquidCrystal_I2C lcd(0x27, 16, 2); // set the LCD address to 0x27 for a 16 chars and 2 line display
void setup() {
lcd.init(); // initialize the lcd
lcd.backlight(); // Turn on the LCD screen backlight
}
void loop() {
lcd.setCursor(0, 0);
//1234567890123456
// lcd.print(" _ _ ");
// lcd.setCursor(0, 1);
// lcd.print(" (^ _ ^) ");
// lcd.print(" _ - ");
// lcd.setCursor(0, 1);
// lcd.print(" (U w U) ");
lcd.print(" _ ! _ ");
lcd.setCursor(0, 1);
lcd.print(" (O _ O) ");
}