The Adafruit 2.9in eInk Under FeatherWing is an electronic paper display module that offers the benefits of low power consumption and high visibility even in bright sunlight. This 2.9-inch display is perfect for applications where a traditional LCD or OLED would consume too much power or be difficult to read. It is particularly well-suited for battery-powered devices, wearable technology, and outdoor applications where readability in sunlight is essential.
Common applications include:
Pin Number | Name | Description |
---|---|---|
1 | GND | Ground connection |
2 | 3V | 3.3V power supply |
3 | RST | Reset pin for the display |
4 | BUSY | Busy state output from the display |
5 | CS | Chip Select for SPI communication |
6 | SCK | Serial Clock for SPI communication |
7 | MOSI | Master Out Slave In for SPI communication |
8 | MISO | Master In Slave Out for SPI communication (not used) |
9 | D/C | Data/Command control pin |
To use the Adafruit 2.9in eInk Under FeatherWing with an Adafruit Feather board:
#include <Adafruit_EPD.h>
#include <Adafruit_GFX.h>
// Pin definitions (may vary depending on your specific setup)
#define EPD_CS 10
#define EPD_DC 9
#define EPD_RESET 8
#define EPD_BUSY 7
// Create an instance of the display
Adafruit_IL0373 display(296, 128, EPD_DC, EPD_RESET, EPD_CS, EPD_BUSY);
void setup() {
// Initialize the display
display.begin();
// Clear the buffer
display.clearBuffer();
// Draw some text on the screen
display.setCursor(10, 10);
display.setTextSize(1);
display.print("Hello, eInk!");
// Display the buffer on the screen
display.display();
}
void loop() {
// Nothing to do here
}
Ensure that you have installed the Adafruit_EPD
library in the Arduino IDE before uploading this code to your board.
Adafruit_EPD
library is installed and updated to the latest version in the Arduino IDE.Q: Can the display show images in color? A: No, this eInk display is monochrome, capable of displaying black, white, and red shades only.
Q: How long does the image last on the display after power is removed? A: eInk displays are bistable, meaning the image can remain on the screen indefinitely without power.
Q: Is the display readable in the dark? A: No, unlike an LCD or OLED, eInk displays do not emit light and require external lighting to be readable in the dark.
Q: Can I use this display with other microcontrollers besides Adafruit Feather boards? A: Yes, as long as the microcontroller supports SPI communication and operates at 3.3V logic levels, it can be used with this display. However, you may need to adjust the pin definitions in your code accordingly.