//
//A4 connects to SDA
//A5 connects to SLC
#include <Wire.h>
#include <LiquidCrystal.h>
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27,16,2); // set the LCD address to 0x3F for a 16 chars and 2 line display
void setup()
{
//lcd.begin();
lcd.init(); // initialize the lcd
// Print a message to the LCD.
lcd.backlight();
lcd.setCursor(0,0);
lcd.print("I Love RUPP");
lcd.setCursor(0,1);
lcd.print("Lab CA:102C");
lcd.setCursor(0,2);
lcd.print("Nh chue k'bal nas");
}
void loop()
{
}