//YWROBOT
//Compatible with the Arduino IDE 1.0
//Library version:1.1
#include <Wire.h>
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27,16,2); // set the LCD address to 0x27 for a 16 chars and 2 line display
// Heart
uint8_t heart[8] = {
0b00000,
0b01010,
0b11111,
0b11111,
0b11111,
0b01110,
0b00100,
0b00000,
};
void setup()
{
lcd.init();
lcd.backlight();
lcd.setCursor(1,0);
lcd.print("Hii I am AJ");
delay(1000);
}
void loop()
{
for(int i =0;i<=20;i++){
lcd.setCursor(0,0);
lcd.print("I \x03 Electroboffin");
lcd.createChar(3, heart);
lcd.scrollDisplayRight();
delay(100);
}
lcd.backlight();
for(int i=0 ;i<=20;i++){
lcd.setCursor(0,0);
lcd.print("I \x03 Electroboffin");
lcd.createChar(3, heart);
lcd.scrollDisplayRight();
delay(100);
}
lcd.noBacklight();
}
uno:A5.2
uno:A4.2
uno:AREF
uno:GND.1
uno:13
uno:12
uno:11
uno:10
uno:9
uno:8
uno:7
uno:6
uno:5
uno:4
uno:3
uno:2
uno:1
uno:0
uno:IOREF
uno:RESET
uno:3.3V
uno:5V
uno:GND.2
uno:GND.3
uno:VIN
uno:A0
uno:A1
uno:A2
uno:A3
uno:A4
uno:A5
lcd1:GND
lcd1:VCC
lcd1:SDA
lcd1:SCL