Honda CD Spinner Demo
I am at a good stopping point for my exploration of a retired CD player control panel from a Honda Accord. At this point I can interact with all audio control button and knobs, and control what is displayed on its output LCD controlled by Sanyo LC75883 chip. My Arduino sketch toggles through several different modes when I press the "Mode" button (read via LC75883): Turn all segments on, or a "drawing mode" of turning on individual segments selected via the quadrature encoder knob. Very functional, but I wanted to put together something a little flashier before I move on to the next project.
After I figured out the Toyota tape deck, I made a simple Larson scanner. I could do another Larson scanner with this LCD, but I thought I could put together something more interesting. The central attention-getting element of this segmented LCD is a series of 24 segments arranged in a circle. I've never seen this LCD work in normal operation, but since it is a CD player, I assume it showed graphics that resembled a spinning CD. A quick test confirmed that I could show a spinning animation, so I will make that the centerpiece for a demo. The next question is what to do with remaining segments.

There are ten 7+ segment displays. Four to the left of the spinner, three above, and four to the right. Some of these have additional segments, likely to display specific subsets of the alphabet. That works for static text, but it rules out scrolling text.
There are two additional segments that appear to be 7-segment numeric display but are not. Above the spinner is apparently a clock, as there are two elements that pretend to be "1" of a 7-segment numeric display but is in fact a single segment. And far to the right is a number that appear to be a 7-segment display but is in fact only three segments and thus extremely limited.
I also have a few miscellaneous elements for describing CD operation. "DISC", "TRACK" "RPT", etc. Plus six numbered CDs for the six-disc changer. I haven't thought of anything useful to do with those beyond a Larson scanner-like animation.
I settled on the following:
- Focus on center spinning CD animation using its 24 segments.
- All the individually controllable 7-segment displays will use their outer 6 segments and also display a spinning animation.
- There will be 12 frames in the animation, which works out evenly for the 24-segment CD and 6-segment outer digit segments.
- Most of the remaining segments will form a near-vertical section of 1 in 12 bands, they will animate left-and-right in a Larson scanner-like manner.
The animation cycle: CD and digits spins clockwise, and the bands will move in one direction. The motion will slow, then reverse and acceleration. Then it will decelerate and reverse again, and the loop repeats. It didn't turn out quite as visually interesting as I had hoped, but I'm not going to invest in the time to make a better animation. It is sufficient to show off the fact I have full control all segments independent of this LCD's original designed purpose.

Source code for this demo is part of the investigation project available on GitHub.