E-Paper 2.7" always display old text (can't clean)

Hi,
I have a Waveshare E-Paper 2.7" B&W with Waveshare Esp32 board.
In my code i have a initialise e-paper display function but its looks that if a fill all screan with white the screen won't clean from old text.
any idea why ?

void initDisplay() {
  display.init(115200);
  SPI.end();
  SPI.begin(13, 12, 14, 15);
  display.setFullWindow();
  display.firstPage();
  display.fillScreen(GxEPD_WHITE);
  display.fillScreen(GxEPD_WHITE);
  display.setPartialWindow(0, 0, display.width(), display.height());
  display.fillScreen(GxEPD_WHITE);
}

This topic was automatically closed 120 days after the last reply. New replies are no longer allowed.