// enter the I2C address and the dimensions of your LCD here #include LiquidCrystal_I2C lcd(0x27, 20, 4); // set the LCD address to 0x3F for a 20 chars and 4 line display void setup() { // Serial.begin(115200); lcd.init(); lcd.backlight(); lcd.clear(); lcd.setCursor(0, 0); lcd.print("Hello World"); lcd.setCursor(0, 1); lcd.print("Fab Academy2021"); lcd.setCursor(0, 2); lcd.print("Output Devices"); lcd.setCursor(0, 3); lcd.print("Mona Peyvasteh"); } void loop() { delay(5); } // Print a message on four lines of the LCD. // lcd.setCursor(2,0); //Set cursor to character 2 on line 0 // lcd.print("Hello world!"); // // lcd.setCursor(2,1); //Move cursor to character 2 on line 1 // lcd.print("LCD Testing"); // // lcd.setCursor(2,2); //Set cursor to character 2 on line 2 // lcd.print("Output Device"); // // lcd.setCursor(2,3); //Set cursor to character 2 on line 3 // lcd.print("It's Mona!");