Hackaday Badge LCD Screen
The main user interface for the Hackaday Belgrade 2018 badge is the LCD screen up front and center. Looking at the badge's main menu, we can tell it can display text characters. 40 columns in width, and 20 rows in height according to DISP_BUFFER_WIDE
and DISP_BUFFER_HIGH
in hw.h. This is just a little under an Apple II's capabilities, which are 40 columns wide and 24 characters high.
Based on badge startup animation and the user program demo art, this screen is not strictly limited to character display. However, at first glance it's hard to tell if what we saw are creative text art or if we can do general purpose graphics on this screen. Where can we get this information? The datasheet for the screen, of course. Based on the badge schematic, we have a model number to use in a web search.
And it was a very easy search! The display unit is from a company whose product model numbers correspond to the unit's capabilities. It starts with NHD which is the company name Newhaven Display Inc, followed by a 2.4 indicating screen's physical size of 2.4" in diagonal, and 240320 meaning a graphics resolution of 240 by 320 pixels, etc.
One unexpected attribute of this LCD module is that it has an integrated controller chip. The display module datasheet has all the relevant electrical details, but for the specifics of data flow and command set, it asks the user to go look in the datasheet for the Sitronix ST7789V controller.
Newhaven Display's web site has an "Application Notes" section for their products. Clicking on the link for the 2.4" display with ST7789 controller points to this fragment of C code, which looks a lot like some of the badge display interface code in disp.c.
Also in disp.c is the text display code and a hard-coded basic font. So all the character display stuff is on the badge for us to hack. This is a very promising start to exploring the graphics capability of the badge. I'll definitely return to dig deeper.