• Home
  • Microcontrollers
  • Frameworks
  • Protocols
  • 3D Printing
  • Web
  • Other
img
×

Simple example

  • epaper-TTGO-T5_1_2-hello

dependencies

  • GxEPD
lib_ldf_mode = deep+
lib_deps =
    GxEPD@3.1.0
Copied!

Example

#include <SPIFFS.h>
#include <epaper.h>

EPaper epaper;

void setup()
{
    Serial.begin(115200);
    SPIFFS.begin();

    epaper.init();
    epaper.display.fillScreen(GxEPD_WHITE);
    epaper.drawBitmap("/esp_home.bmp", 0, 50, true);
    epaper.displayText("Hello simple", 20, EPaper::RIGHT_ALIGNMENT);
    epaper.display.update();

}

void loop()
{
}
Copied!

Display

  • GxGDEW029Z10
  • 2,9 Zoll
  • White / Black / Red
  • 296x128

References

  • LilyGo epaper ESP-IDF repo LilyGO/ESP32_T5Epaper_2.9inch
    • fork from loboris/ESP32_ePaper_example
  • LilyGo epaper platformio-arduino repo Xinyuan-LilyGO/T5-Ink-Screen-Series
    • fork from TTGO-EPaper-Series
  • Waveshare specification pdf 2.9inch_e-Paper_Datasheet.pdf

Suppliers

  • Aliexpress ~ 20€
  • Simple example
    • dependencies
    • Example
  • Display
  • References
  • Suppliers

footer