Color Dke075Z83 800x480 B|R - martinberlin/cale-idf GitHub Wiki

  • Size: 800x480 7.5" Colors: B/W/RED
  • Brand: DKE
  • Controller: UC8179 (Presumably since I don't have datasheet)
  • Status: Implemented currently in develop branch
  • Partial update: Not supported by the controller

7.5-dke Tricolor epaper

DKE.top purchase link

Statistics

Sending a 48000 bytes buffer via SPI

STATS (ms)
422 _wakeUp settings+send Buffer
2002 update 
2425 total time in millis

Demo of photo rendered with CALE.es backend 7 5-photo-cale

C++ implementation example

#include <color/dke075z83.h>
EpdSpi io;
Dke075Z83 display(io);

void app_main(void)
{
   printf("CalEPD version: %s\n", CALEPD_VERSION);
   display.init(false);
   display.println("Hello World");
   display.setTextColor(EPD_RED);
   display.println("This is RED");
   display.fillCircle(display.width()/2, display.height()/2, 150, EPD_BLACK);
   display.update();
}