#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(39, 16,2);
byte dinoLeft[8] {
0b00111,
0b00111,
0b01110,
0b10111,
0b11110,
0b01010,
0b00010,
0b00000
};
byte dinoRight[8]= {
0b00111,
0b00111,
0b01110,
0b10111,
0b11110,
0b01010,
0b01000,
0b00000
};
byte bush[8]= {
0b00100,
0b10100,
0b10101,
0b10101,
0b01101,
0b00110,
0b00100,
0b00100 };
int x=0;
void setup() { lcd.init(); lcd.backlight();
lcd.createChar(1,dinoLeft); lcd.createChar(2,dinoRight);
lcd.createChar(3,bush);
lcd.setCursor(0,0); lcd.print(char(3));
}
void loop() { lcd.clear();
lcd.setCursor(x,1); lcd.print(char(1)); delay(30);
lcd.setCursor(x,1); lcd.print(char(2)); delay(30);
x++; if(x>15) x=0;
}