Hacker News new | ask | show | jobs
by Waterluvian 2133 days ago
When using my reader, sometimes mutations require a full screen invert. Sometimes stuff just seems to change trivially. What governs that? Is that done by the display or driver or higher level code?
4 comments

In my experience with Waveshare e-ink displays, it's up to the application when to perform a full or partial refresh. Generally after so many draws, ghosting begins to appear and so you perform a refresh.
The problem with e-ink is that redrawing pixels without cycling leads to ghosting after a few draws. Most displays automatically cycles the entire screen now and then to mitigate this. I guess it's up to software or firmware to detect when to do it.
The Waveshare displays do support partial refresh, but I haven't had time to look into exposing it into Node, yet.
Here is a good video on that subject:

https://www.youtube.com/watch?v=MsbiO8EAsGw

Application driven. KOReader (which I use on my Kindle) lets you even configure this to every X pages.