//Nome:Estrela José Marcolino
#include <LiquidCrystal.h>
LiquidCrystal lcd(12,11,10,9,8,7);
uint8_t heart[8]={0x00,0x0A,0x1F,0x1F,0x1F,0x0E,0x04,0x00};
void setup() {
lcd.begin(16, 2);
lcd.createChar(3, heart);
lcd.print(" Seja Feliz Hoje");
lcd.setCursor(0, 1);
lcd.print(" \x03 Estrela ");
}
void loop() {
// put your main code here, to run repeatedly:
delay(1); // this speeds up the simulation
}