#include <LiquidCrystal_I2C.h>
//included the library of I2C LCD
LiquidCrystal_I2C lcd(0x27, 16, 2);
//declared the I2C LCD
void setup(){
lcd.init();
//used the built-in function of keypad library function to initialize the LCD
lcd.backlight();
//turn on the backlight of LCD
lcd.print("FRIDAY CPC");
// print on the LCD
}
void loop(){
}