/*
HELLO WELT project with LCD 20x4 (I2C) Display
YWROBOT
Compatible with the Arduino IDE 1.0
Date : 8.11.2023
Autor : Donna Klepaczewski
*/
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd (0x27,20,2 );
//LCD address to 0x27 for 20 chars and 4 line display
void setup() {
lcd.init(); //
//print a message to the LCD
lcd.backlight();
lcd.setCursor(3,0); // text start in columns 3 at 0 rows
lcd.print("Hello, world!");
lcd.setCursor(2,1); //text start in columns 2 at 1.rows
lcd.print("Ywrobot Arduino!");
lcd.setCursor(0,2);
lcd.print("Arduino LCM IIC 2004");
lcd.setCursor(2,3);
lcd.print("Power by Ec-yuan");
}
void loop() {
// put your main code here, to run repeatedly:
}