#include <Wire.h>
#include <LiquidCrystal_I2C.h>
// Set the LCD address to 0x27 for a 16 chars and 2 line display
LiquidCrystal_I2C lcd(0x27, 16, 2);
void setup()
{
lcd.begin(0x27, 16, 2);
// Turn on the blacklight and print a message.
lcd.backlight();
}
void loop()
{
lcd.clear();
lcd.setCursor(3,0);
lcd.print("Hello! I am");
delay (1000);
lcd.clear();
lcd.setCursor(2,0);
lcd.print("Mark Vincent");
lcd.setCursor(5,1);
lcd.print("Bulawan");
delay (1000);
lcd.clear();
lcd.setCursor(7,0);
lcd.print("From");
lcd.setCursor(1,1);
lcd.print ("BET-CpET 3A NS");
delay (1000);
lcd.clear();
lcd.setCursor(0,0);
lcd.print("I am done doing");
lcd.setCursor(0,1);
lcd.print ("Activity4-Topic1");
delay (1000);
lcd.clear();
}