|
|
|
|
|
by shultays
1310 days ago
|
|
Be aware that those 3 color screens are very slow to update, 15-20 seconds. So not super useful for most kind of projects Unfortunately the fast color displays (we can buy) are not there yet. Only black & white (and grayscale) ones are fast enough to be used as somewhat generic screen you can interact with |
|
I just did a project with one. You are right, the three (or more) colour screens do indeed have very slow update cycles, and they usually don't support partial refresh either (just updating part of the screen)
BUT there are some tricks you can do. You can start most of them in two-colour mode, which does support partial updates, and you can define and upload a custom set of waveforms that govern how the screen performs its refresh and update cycles. I wrote an email to the company I purchased from (good-display) and they were very responsive and sent me some waveforms to try. These allow a much faster update (~1s) at the cost of some slight greyness, which gets worse over time, needing a full refresh after a while.
The resulting code I wrote now does something like -
It's not ideal, but it does allow you to do something like a static background image in color, then a clock and a few gauges that update more frequently.(my screen refresh routine cycles each pixel through each of the colour transitions, black->white, black->red, white->red, and the reverse)