I am trying to use a WeAct 2.13" B/W Epaper with SSD1680. Everything seams to work fine except there is a line at the top of the display. using Adafruit KB2040 and Arduino IDE 1.8.19. also tried on teensy 4.1 and waveshare RP2040 zero.
#include "Adafruit_EPD.h"
#define EPD_DC 27
#define EPD_CS 26
#define EPD_BUSY 29
#define EPD_RESET 28
#define EPD_SPI &SPI
Adafruit_SSD1680 display(250, 122, EPD_DC, EPD_RESET, EPD_CS, -1, EPD_BUSY, EPD_SPI);
void setup() {
Serial.begin(115200);
display.begin();
display.clearBuffer();
display.setCursor(0, 0);
display.setTextColor(EPD_BLACK);
display.print("Hello World!");
display.display();
delay(5000);
display.clearBuffer();
}
void loop() {
}
