• Home
  • Robotics
  • 3D Printing
  • Web
  • Microcontrollers
  • Frameworks
  • Protocols
  • Other
  • Explore knowledge
  • Loading graph.
    Depth
    …
    … visible
  • Home
  • Robotics
  • 3D Printing
  • Web
  • Microcontrollers
  • Frameworks
  • Protocols
  • Other
Tools
    Pages
    • Microcontrollers
      • ESP32
        • C3 Dev Kit M1
        • Datasheets
        • Debug
        • ESP-Mesh
        • ESP-Now
        • ESP32 C3 DevKit M1
        • ESP32 D1 Mini
        • ESP32-C3 0.42 Oled
        • FireBeetle
        • M5 Atom Lite
        • M5 Stick C Plus
        • m5 stick V
        • Round Display
        • S2 Saola 1
        • Software
        • Thermostat Control
        • Timer Cam OV3660
        • TTGO T-Display
        • TTGO T5-EPaper
        • Wall Display
        • Waveshare S3 3.5 Inch display
      • nRF52
        • nRF52832 UART dongle
        • nRF52840 USB dongle
        • Simple Mesh SensorTag
        • Thread SensorTag
        • Trick Tracker
        • UWB DWM1001 dev
        • UWB DWM3001 cdk
      • nRF53
        • thingy53
      • Risc-V
      • STM32
        • Black Pill
        • Blue Pill
        • Dev EBox F407
    Pages
    • Microcontrollers
      • ESP32
        • C3 Dev Kit M1
        • Datasheets
        • Debug
        • ESP-Mesh
        • ESP-Now
        • ESP32 C3 DevKit M1
        • ESP32 D1 Mini
        • ESP32-C3 0.42 Oled
        • FireBeetle
        • M5 Atom Lite
        • M5 Stick C Plus
        • m5 stick V
        • Round Display
        • S2 Saola 1
        • Software
        • Thermostat Control
        • Timer Cam OV3660
        • TTGO T-Display
        • TTGO T5-EPaper
        • Wall Display
        • Waveshare S3 3.5 Inch display
      • nRF52
        • nRF52832 UART dongle
        • nRF52840 USB dongle
        • Simple Mesh SensorTag
        • Thread SensorTag
        • Trick Tracker
        • UWB DWM1001 dev
        • UWB DWM3001 cdk
      • nRF53
        • thingy53
      • Risc-V
      • STM32
        • Black Pill
        • Blue Pill
        • Dev EBox F407
    Home/Microcontrollers/ESP32/ttgo-t5-epaper
    Metadata
    description
    ESP32 with epaper display
    date
    2020-12-24
    tags
    Board, Display
    features
    ["ePaper 2.9 Inch","GxGDEW029Z10 296 x 128","White / Black / Red"]
    image-ttgo_t5-epaper.png
    ×

    Simple example

    • epaper-TTGO-T5_1_2-hello

    dependencies

    • GxEPD
    Ini
    lib_ldf_mode = deep+
    lib_deps =
        GxEPD@3.1.0

    Example

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

    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€
    ← PreviousTTGO T-DisplayNext →M5 Stick C Plus
    On this page
    • Simple example
      • dependencies
      • Example
    • Display
    • References
    • Suppliers
    Open page ×