// include the library code: #include // initialize the library by associating any needed LCD interface pin // with the arduino pin number it is connected to const int rs = 12, en = 11, d4 = 5, d5 = 4, d6 = 3, d7 = 2; LiquidCrystal lcd(rs, en, d4, d5, d6, d7); byte Heart[] = { B00000, B01010, B11111, B11111, B01110, B00100, B00000, B00000 }; void setup() { // set up the LCD's number of columns and rows: lcd.begin(16, 2); lcd.createChar(0, Heart); } void loop() { // set the cursor to column 0, line 1 // (note: line 1 is the second row, since counting begins with 0): // Print a message to the LCD. lcd.setCursor(2, 0); lcd.print("Fab Academy!"); lcd.setCursor(5, 1); lcd.print("Sarah "); lcd.setCursor(11, 1); lcd.write(byte(0)); }