/* serLCD - Create custom character example 1 This example creates a custom smiley face character. */ #include #include // Set pin to the LCD's rxPin int pin = 2; serLCD lcd(pin); byte smiley[8] = { B00000, B10001, B00000, B00000, B10001, B01110, B00000, }; void setup() { lcd.createChar(1, smiley); lcd.printCustomChar(1); } void loop() {}