#include #include #include int main (int argc, char *argv[]){ unsigned char newChar [8] = { 0b11111, 0b10001, 0b10001, 0b10101, 0b11111, 0b10001, 0b10001, 0b11111, }; wiringPiSetupGpio(); static int fd; fd = lcdInit(2, 16, 4, 23, 16, 5, 6, 13, 19, 0, 0, 0, 0); lcdClear(fd); lcdPosition(fd, 0, 0); lcdCharDef(fd, 2, newChar); lcdPutchar(fd, 2); sleep(1); return 0; }