#include <Wire.h>
#include <LiquidCrystal_I2C.h>
// Set the LCD address to 0x27 for a 20 chars and 4 line display
LiquidCrystal_I2C lcd(0x27, 20, 4);
void setup() {
// Initialize the LCD
lcd.begin(20, 4);
// Turn on the backlight
lcd.backlight();
// Print messages on the LCD
lcd.setCursor(0, 0); // Set cursor to column 0, line 0
lcd.print("Butch Anthony Herce");
lcd.setCursor(0, 1); // Set cursor to column 0, line 1
lcd.print("Arduino Mega");
lcd.setCursor(0, 2); // Set cursor to column 0, line 2
lcd.print("Displaying");
lcd.setCursor(0, 3); // Set cursor to column 0, line 3
lcd.print("20x4 LCD Display");
}
void loop() {
// Do nothing here...
}