Programming for the Four Letter Phat for Rasp Pi

Can anyone tell me if it is possible to address the segments of the displays (A to N) directly to display custom characters or shapes?
Or is this only able to display the printable alphanumeric characters (ASCII values 32 to 127)?

image

Thanks in advance Ray B.

Hi Ray, I haven’t used that board myself, but from a quick look at the datasheet for the driver chip on board, it may be possible. The onboard libraries from Pimoroni will probably only allow for ASCII, but take a look at the datasheet here (just from a Google search): https://cdn-shop.adafruit.com/datasheets/ht16K33v110.pdf

Thanks Sam, I will work through it on the week end.
Regards,
Ray.

1 Like

Found the solution, should have explored the Function Referance doc further.

The command;
"fourletterphat.set.digit_raw(pos,bitmask)"
does exactly that, sets each or any of the 14 segments as needed.

Thanks again,
Ray.

Nice! Looks like a great solution.