The Adafruit 2.13in Tri-Color eInk Display is an electronic paper display module capable of rendering images and text in three distinct colors: red, black, and white. With a 2.13-inch diagonal size, this display leverages the low-power eInk technology, making it an ideal choice for applications where battery life is critical. Common applications include e-readers, dynamic price tags, wearable devices, and any portable device where a power-efficient, non-backlit display is beneficial.
Pin Number | Name | Description |
---|---|---|
1 | GND | Ground connection |
2 | 3V3 | 3.3V power supply input |
3 | CLK | SPI clock |
4 | MOSI | SPI Master Out Slave In |
5 | CS | SPI Chip Select |
6 | DC | Data/Command control pin |
7 | RST | Reset pin |
8 | BUSY | Busy state output pin |
To use the Adafruit 2.13in Tri-Color eInk Display in a circuit:
#include <Adafruit_EPD.h>
#include <Adafruit_GFX.h>
// Pin definitions for the Arduino UNO
#define EPD_CS 10
#define EPD_DC 9
#define EPD_RST 8
#define EPD_BUSY 7
#define SRAM_CS 6
#define EPD_MOSI 11
#define EPD_CLK 13
// Create display instance
Adafruit_IL0373 display(212, 104, EPD_DC, EPD_RST, EPD_CS, SRAM_CS, EPD_MOSI, EPD_CLK, EPD_BUSY);
void setup() {
display.begin(); // Initialize the display
display.clearBuffer(); // Clear the buffer
// Draw a simple message on the screen
display.setCursor(10, 50);
display.setTextColor(EPD_BLACK);
display.print("Hello, eInk!");
// Display the buffer on the screen
display.display();
}
void loop() {
// Nothing to do here
}
Q: Can the display show images in full color? A: No, the display is capable of showing images and text in red, black, and white only.
Q: How do I update the display content?
A: Use the display library's functions to draw on the buffer and then call the display.display()
function to update the screen.
Q: Is the display sunlight-readable? A: Yes, eInk displays are known for their excellent sunlight readability.
Q: How long does the image last on the display after power is removed? A: eInk displays are bistable, meaning the image can persist indefinitely without power.