Why And How Of Simpler PIC Display Driver
Earlier in my outline for starting a new PIC display driver project for a vacuum fluorescent display (VFD), I mentioned one objective was to "keep the PIC side very simple and move more display-specific logic into driving code". Let's go into more detail on that part of the plan.
In my previous PIC display projects, the code was written for a specific multi-segment display unit as part of the overall project. This meant the source code reflected whether the LED was a common-anode or common-cathode design, it also knew about which segment represented which parts of a particular digit. This knowledge was required because I put priority on making control communication interface easy. For the temperature demo, making my display unit show "72.3F" was a matter of sending the actual UTF-8 text string "72.3F" as bytes. The PIC then parsed that string and determined which segment to illuminate.
But there's a good chance we have several other matrix display projects in the future, and I didn't want to invest the time to hard code intricacies of each unit into the PIC. It would be much easier to adapt and experiment if such logic was moved to a more developer-friendly environment like Python on a Raspberry Pi. In the case of the current NEC VFD under consideration, there are segments corresponding to days of the week and other function specific segments like an "On and "Off" text, "OTR", little clock icon, etc. Most of which won't necessarily be present on another VFD unit, why spend the time to embed such knowledge in my PIC driver?
We also want the flexibility to explore using the display in ways that are far afield of its original intent. For starters, that seven-segment display in the center doesn't have to be constrained to display numbers for a clock. All these desires meant moving away from performing data interpretation on the PIC.
Instead, the PIC will accept a raw data stream where each bit corresponds to whether a segment is on or off. Each byte will correspond to 8 segments in a grid, and so forth. This means the task of mapping a desired digit to a set of segments will be the responsibility of driver code on host device rather than PIC peripheral. PIC will only concern itself with rapidly cycling through the matrix of digits keeping them all illuminated.