Main Content

Introduction to e-Paper displays
e-Paper (aka e-ink) displays are a fascinating new technology that most people will be most familiar with from the proliferation of Kindle and similar reading displays. The unique property of the e-paper display is that it retains its image even with power not applied. This means that it can require very low power to operate the user interface of an e-paper device, since power only really needs to be applied to the display when the content is actually changing. For a reader, the user spends most of his or her time reading the page, and page flips are a relatively small fraction of the overall experience, so it’s a perfect fit.

e-Paper displays have excellent contrast even when viewed in bright sunshine and are generally not backlit as LCDs are. The original kindles had no lighting whatsoever built into them, and one had to add a third-party light to read them in the dark, just like one would read a paper book. At one point I owned a kindle that snapped into a case that had a popup LED that pointed down at the display, illuminating it. Eventually frontlit e-paper displays were invented and my current generation kindle is frontlit, with a special light distribution layer that sits above the e-paper layer.

e-Paper displays for the Hobbyist
I’ve been fascinated by e-paper technology for a while and I sought out hobbyist-friendly e-paper vendors that sell products I could use with a raspberry pi or arduino. The primary vendor I came across was Waveshare. They sell a variety of e-paper displays of different sizes and shapes, even flexible displays. There are displays attached to a Raspberry Pi hat, and there are displays that connect to separate breakout boards. You can buy displays with no breakout board whatsoever, just a flex cable, and mount the connector for the flex yourself if you so desire.

There are both 2-color (black and white) and 3-color (red black and white, or yellow black and white) displays available. I recommend sticking with the 2-color displays unless your application specifically calls out the need for a third color. I’ll explain why in the following section.

In addition to Waveshare, another vendor is Gooddisplay, and you can find them on AliExpress. In my opinion, Gooddisplay doesn’t have the variety of breakout boards that Waveshare has, but they sell many displays that are compatible with the Waveshare breakout boards.

The common theme of all these hobbyist-friendly e-paper displays is that they use the SPI bus. SPI typically uses four data lines: MOSI, MISO, SCK, and CS. These e-paper displays do not use the MISO pin, but they do add several more pins: DC, BUSY, and RST. DC is a data/command select line, BUSY tells whether the display is busy, and RST is a reset. So plan on dedicating 6 IO pins to implement the full interface. It might be possible to omit the RST or BUSY — I haven’t tried and I’m not sure.

e-Paper refresh
Jumping into my project, I had little knowledge of how the technology actually worked. What I found was that drawing on an e-Paper display is a slow process, sometimes excruciatingly slow. Note to self: Do the research before buying the hardware!

Most of what I learned about how the displays work came from Ben Krasnow’s video on improving e-paper refresh. Each cell in an e-Paper display is made up of little colored ink particles of different charges. By applying the proper voltages, you can make particles of one charge float to the top and particles of the other charge float to the bottom. For reasons that are perhaps too technical to go into in this blog post, it doesn’t suffice to simply hit the display with a DC voltage and leave it there — you’ll either end up with ghosting issues, or you can permanently damage the display.

The displays implement an internal Lookup Table (LUT) that specifies various voltage and duration steps. There are LUTs for black-to-black, black-to-white, white-to-black, and white-to-white. The default LUTs on a black and white display may take a couple seconds to refresh. This is regardless of whether you change a single pixel or change the entire display. You can shorten the LUTs so that fewer voltage transitions are used, at the possible ramification of shortening the display life or introducing ghosting artifacts. It’s possible to get the refresh rate up to two to three frames per second. The Ben Krasnow video I linked earlier goes into great detail about this.

For 3-color displays the process is even slower. We only have two charges (+,-) but we have three particles (red, white, black), so it doesn’t suffice to simply assign each particle a charge. The speculation is that different size particles are used, so you might for example have small white particles and larger red particles, and by the appropriate set of voltages applied to the cell, you can sort the particles so the larger red ones end up on top of the smaller white ones. The bottom line is that the 3-color displays can take 12 seconds or more to do a refresh display. Yes, that’s right — 12 second refresh on a 3-color e-Paper. Not only that, but it’s a a distracting process of flickering and flashing as this happens. Whether it can be sped up, I do not know. For this reason, I recommend avoiding these 3-color displays unless you specifically have a need for a 3-color display.”

Link to article