#include <LiquidCrystal.h>
LiquidCrystal lcd(13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3);
unsigned char specialchar[8]={0x00,0x0A,0x00,0x00,0x11,0x0E,0x00};
void setup() {
lcd.begin(16,2);
lcd.clear();
lcd.createChar(0, specialchar);
}
void loop() {
lcd.setCursor(0,0);
lcd.print("Welcome");
lcd.setCursor(0,1);
lcd.print("Sergio es puto");
lcd.write(byte(0));
}