Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Line at the top of display #77

Open
Errorcode95 opened this issue Sep 2, 2023 · 1 comment
Open

Line at the top of display #77

Errorcode95 opened this issue Sep 2, 2023 · 1 comment

Comments

@Errorcode95
Copy link

Errorcode95 commented Sep 2, 2023

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() {
}

IMG_20230902_124224

@Srafington
Copy link

You may have an SSD 1675 instead of a 1680. I have a 1675 that came from after Adafruit moved to the 1680 and was trying to treat it like a 1680, and I had the exact issue you are showing here. Soon as I changed to the 1675 class, the line went away

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants