Close

E-paper basics 3: a bonus update mode (for animations)

A project log for Paperino

An easy-to-use, open source micro ePaper shield for the Particle & Arduino community

markusMarkus 05/17/2017 at 12:230 Comments

Our first log on e-paper basics described two update modes:

As we hinted in the log there is another update mode, we did not mention yet.

Both full and partial update take 0.8s at room temperature to drive the display. Here is a progress bar using partial updates:

Okay, so that takes a while. In general, e-paper displays are not suited for animations but rather for static content that only updates once in a while.

But there is a bonus update mode in our display's controller for exactly that. The mode is called "mono" or "fastPartial". It only drives pixels black and white (so no four gray levels in this mode) and takes around 250ms for an update.

The same animation as above with the mono update mode looks like this:

Not exactly suited for gaming (it's about 4 FPS), but definitely better than our standard 0.8s.

The mono update in a nutshell:

Discussions