• Home
  • Microcontrollers
  • Frameworks
  • Protocols
  • 3D Printing
  • Web
  • Other
  • ESP32
    • Datasheets
    • Software
    • Timer Cam OV3660
    • TTGO T-Display
    • TTGO T5-EPaper
    • M5 Stick C Plus
    • FireBeetle
    • M5 Atom Lite
    • ESP-Now
    • ESP-Mesh
    • Wall Display
    • Round Display
    • S2 Saola 1
    • C3 Dev Kit M1
    • Debug
    • ESP32 D1 Mini
    • ESP32 C3 DevKit M1
  • Risc-V
  • STM32
  • nRF52
    • Thread SensorTag
    • UWB DWM3001 cdk
    • UWB DWM1001 dev
    • Trick Tracker
    • Simple Mesh SensorTag
    • nRF52840 USB dongle
    • nRF52832 UART dongle
  • nRF53
    • thingy53
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