#include <Wire.h>
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27, 16, 2);
void setup()
{
// initialize the LCD
lcd.begin(16,2);
lcd.print("hi (^__^)");
lcd.setCursor(0, 1);
lcd.print("im mootez");
}
void loop()
{
// Do nothing here...
}