#include <LiquidCrystal_I2C.h>
#define I2C_Addr 0x27
#define LCD_Columns 20
#define LCD_Rows 4
LiquidCrystal_I2C lcd(I2C_Addr, LCD_Columns, LCD_Rows);
void setup() {
// actual program - init
lcd.init();
lcd.backlight(); //to indicate the device is ON
//Surname, Name
lcd.setCursor(0, 0); //where will arduino put the message, (Space before character, Number of Row to be used)
lcd.print("Capili, Angelica"); //println keme
//Grade and Section
lcd.setCursor(0,1);
lcd.print("12 - C Wisdom");
//Birthday in MM/DD/YYYY
lcd.setCursor(0,2);
lcd.print("01/04/2006");
}
void loop() {
// put your main code here, to run repeatedly:
}