#include <Wire.h>
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27,16,2); // set the LCD address to 0x27 for a 20 chars and 4 line display
void setup()
{
lcd.init(); // initialize the lcd
// Print a message to the LCD.
lcd.backlight();
lcd.home();
lcd.clear();
lcd.print(" 12-3 projects");
lcd.setCursor(0,1);
lcd.print(" lcd 16*2 i2c ");
}
void loop()
{
}