//YWROBOT
//Compatible with the Arduino IDE 1.0
//Library version:1.1
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27,20,4); // set the LCD address to 0x27 for a 16 chars and 2 line display
void setup()
{
lcd.init(); // initialize the lcd
// Print a message to the LCD.
lcd.backlight();
pinMode(13, OUTPUT);
}
void loop()
{
lcd.setCursor(3,0);
lcd.print("Gernata school");
lcd.setCursor(4,1);
lcd.print("Yara Awawdi");
delay(1800);
lcd.clear();
digitalWrite(13,1);
lcd.setCursor(0,2);
lcd.print("the led on Pin 13 on!");
delay(1000);
lcd.clear();
digitalWrite(13,0);
lcd.setCursor(0,3);
lcd.print("the led on Pin 13 off!");
delay(1000);
lcd.clear();
}