The Adafruit Circuit Playground E-Ink Gizmo is an innovative display add-on designed for the Circuit Playground Express and Circuit Playground Bluefruit development boards. This E-Ink (or E-Paper) display provides a high-contrast, low-power solution for displaying graphics and text. Unlike traditional displays, the E-Ink display retains the image even when power is removed, making it ideal for low-power applications where intermittent updates are required.
Common applications include:
Pin | Description |
---|---|
GND | Ground connection |
3V | 3.3V power from the Circuit Playground board |
A1 | SPI Clock (SCK) |
A2 | SPI Data (MOSI) |
A3 | Data/Command control pin (D/C) |
A4 | Display reset pin (RST) |
A5 | Busy status indicator (BUSY) |
A6 | Chip select for SPI (CS) |
To use the E-Ink Gizmo with a Circuit Playground board, you will need to include the Adafruit Circuit Playground library and the Adafruit EPD (E-Paper Display) library in your Arduino IDE.
#include <Adafruit_CircuitPlayground.h>
#include <Adafruit_EPD.h>
// Initialize the display here using the appropriate pins
Adafruit_IL0373 display = Adafruit_IL0373(152, 152, A1, A2, A3, A4, A5, A6);
void setup() {
// Initialize the display
display.begin();
}
void loop() {
// Your code to update the display goes here
}
Q: Can the display show colors? A: No, the E-Ink Gizmo is a monochrome display capable of showing black and white pixels.
Q: How do I clear the display? A: You can clear the display by filling it with white pixels and then updating the display.
Q: Is the E-Ink Gizmo waterproof? A: No, the E-Ink Gizmo is not waterproof. Protect it from moisture and handle it with care.
For further assistance, consult the Adafruit support forums or the detailed guides available on the Adafruit Learning System website.