ESP32 ePaper display library

User avatar
loboris
Posts: 514
Joined: Wed Dec 21, 2016 7:40 pm

ESP32 ePaper display library

Postby loboris » Mon Jun 12, 2017 2:23 pm

ePaper library for ESP32

https://github.com/loboris/ESP32_ePaper_example


Features
  • Full support for GDEH029A1 & SSD1608 based ePaper modules 4-wire SPI mode. Support for other controllers will be added later
  • emulated 4-bit gray scale mode
  • SPI displays oriented SPI driver based on spi-master driver. Does not use queues like spi-master to improve speed.
  • Combined DMA SPI transfer mode and direct SPI to improve speed
  • 4-bit Grayscale mode or 1-bit b/w mode can be selected during runtime
  • SPI speeds up to 40 MHz are tested and works without problems
  • Demo application included which demonstrates most of the library features
Graphics drawing functions
  • EPD_drawPixel Draw pixel at given x,y coordinates
  • EPD_drawLine Draw line between two points
  • EPD_drawFastVLine, EPD_drawFastHLine Draw vertical or horizontal line of given lenght
  • EPD_drawLineByAngle Draw line on screen from (x,y) point at given angle
  • EPD_drawRect, EPD_fillRect Draw rectangle on screen or fill given rectangular screen region with color
  • EPD_drawRoundRect, EPD_fillRoundRect Draw rectangle with rounded corners or fill given rectangular screen region with rounded corners
  • EPD_drawCircle, EPD_fillCircle Draw or fill circle on screen
  • EPD_drawEllipse, EPD_fillEllipse Draw or fill ellipse on screen
  • EPD_drawTriangel, EPD_fillTriangle Draw or fill triangle on screen
  • EPD_drawArc Draw circle arc on screen, from start angle to end angle, with given thickness. Can be outlined with different color
  • EPD_drawPolygon Draw poligon on screen with given number of sides (3~60). Can be outlined with different color and rotated by given angle.
Fonts
  • fixed width and proportional fonts are supported; 8 fonts embeded
  • unlimited number of fonts from file
  • 7-segment vector font with variable width/height is included (only numbers and few characters)
  • Proportional fonts can be used in fixed width mode.
  • Related functions:
    • EPD_setFont Set current font from one of embeded fonts or font file
    • EPD_getfontsize Returns current font height & width in pixels.
    • EPD_getfontheight Returns current font height in pixels.
    • set_7seg_font_atrib Set atributes for 7 segment vector font
    • getFontCharacters Get all font's characters to buffer
String write function
  • EPD_print Write text to display.
  • Strings can be printed at any angle. Rotation of the displayed text depends on font_ratate variable (0~360)
  • if font_transparent variable is set to 1, no background pixels will be printed
  • If the text does not fit the screen/window width it will be clipped ( if text_wrap=0), or continued on next line ( if text_wrap=1)
  • Two special characters are allowed in strings: \r (CR, 0x0D), clears the display to EOL, \n (LF, 0x0A), continues to the new line, x=0
  • Special values can be entered for X position:
    • CENTER centers the text
    • RIGHT right justifies the text horizontaly
    • LASTX continues from last X position; offset can be used: LASTX+n
  • Special values can be entered for Y:
    • CENTER centers the text verticaly
    • BOTTOM bottom justifies the text
    • LASTY continues from last Y position; offset can be used: LASTY+n
  • EPD_getStringWidth Returns the string width in pixels based on current font characteristics. Useful for positioning strings on the screen.
  • EPD_clearStringRect Fills the rectangle occupied by string with current background color
Images
  • EPD_jpg_image Decodes and displays JPG images. RGB colors are converted to 4-bit gray scale.
  • Limits:
    • Baseline only. Progressive and Lossless JPEG format are not supported.
    • Image size: Up to 65520 x 65520 pixels
    • Color space: YCbCr three components only. Gray scale image is not supported.
    • Sampling factor: 4:4:4, 4:2:2 or 4:2:0.
  • Can display the image from file or memory buffer
  • Image can be scaled by factor 0 ~ 3 (1/1, 1/2, 1/4 or 1/8)
  • Image is displayed from X,Y position on screen/window:
    • X: image left position; constants CENTER & RIGHT can be used; negative value is accepted
    • Y: image top position; constants CENTER & BOTTOM can be used; negative value is accepted

Other display functions
  • EPD_fillScreen Fill the whole screen with color
  • EPD_setRotation Set screen rotation; PORTRAIT, PORTRAIT_FLIP, LANDSCAPE and LANDSCAPE_FLIP are supported
  • compile_font_file Function which compiles font c source file to binary font file which can be used in EPD_setFont() function to select external font. Created file has the same name as source file and extension .fnt
Global wariables
  • orientation current screen orientation
  • font_rotate current font rotate angle (0~395)
  • font_transparent if not 0 draw fonts transparent
  • font_forceFixed if not zero force drawing proportional fonts with fixed width
  • text_wrap if not 0 wrap long text to the new line, else clip
  • _fg current foreground color for fonts
  • _bg current background for non transparent fonts
  • _angleOffset angle offset for arc, polygon and line by angle functions
  • image_debug print debug messages during image decode if set to 1
  • cfont Currently used font structure
  • EPD_X X position of the next character after EPD_print() function
  • EPD_Y Y position of the next character after EPD_print() function
  • _width screen width (larger dimension) in pixels
  • _height screen height (smaller dimension) in pixels
Full functions syntax and descriptions can be found in EPD.h and EPDspi.h files.
Full demo application, well documented, is included, please analyze it to learn how to use the library functions.



Connecting the display

To run the demo, attach the display module to ESP32. Default pins used are:
  • mosi: 23
  • sck: 18
  • CS: 5 (display CS)
  • DC: 26 (display DC)
  • RST: 27 (display RESET)
  • BUSY: 32 (display BUSY output)
The display can be powered from 3.3V or from GPIO pin. See EPDspi.h for configuration options.

If you want to use different pins, change them in EPDspi.h

Using make menuconfig select tick rate 1000 ( → Component config → FreeRTOS → Tick rate (Hz) ) to get more accurate timings


How to build

Configure your esp32 build environment as for other ESP32 projects and esp-idf examples.

Clone the repository

Code: Select all

git clone https://github.com/loboris/ESP32_ePaper_example.git
Execute menuconfig and configure your Serial flash config and other settings. Included sdkconfig.defaults sets some defaults to be used.
Navigate to ePaper Display DEMO Configuration and set SPIFFS options (or just use defaults, recommended for this demo).
Select if you want to use wifi to get the time from NTP server and set your WiFi SSID and password.

Code: Select all

make menuconfig
Make and flash the example.

Code: Select all

make all && make flash
Prepare SPIFFS image

The demo uses some image and font files and it is necessary to flash the spiffs image

To flash already prepared image (components/spiffs_image/image/spiffs_image.img), execute:

Code: Select all

make copyfs
:idea:
You can also prepare different SFPIFFS image and flash it to ESP32 if you want to include your own files.
Tested and works under Linux, Windows and Mac OS.

Files to be included on spiffs are in components/spiffs_image/image/ directory. You can add more files or remove the existing files.

When the file system content is prepared, execute:

Code: Select all

make makefs
to create spiffs image in build directory without flashing to ESP32.

Or execute:

Code: Select all

make flashfs
to create spiffs image in build directory and flash it to ESP32

More info about using SPIFFS on ESP32: viewtopic.php?f=18&t=1901&p=8924#p8924

Tested on Waveshare 2.9" ePaper module connected to SparkFun ESP32 Thing board.
Image
http://www.waveshare.com/wiki/2.9inch_e-Paper_Module

Pictures from demo application:
Image
Image
Image
Image
Image

enitalp
Posts: 60
Joined: Thu Jan 12, 2017 10:03 pm

Re: ESP32 ePaper display library

Postby enitalp » Mon Jun 12, 2017 4:15 pm

:shock:

:thumbup:

User avatar
ESP_krzychb
Posts: 394
Joined: Sat Oct 01, 2016 9:05 am
Contact:

Re: ESP32 ePaper display library

Postby ESP_krzychb » Mon Jun 12, 2017 5:28 pm

Love the last picture with Flintstones and disconnected USB.
It is like a crowning final chord of a music masterpiece :D

syohana
Posts: 1
Joined: Fri Jul 21, 2017 9:41 pm

Re: ESP32 ePaper display library

Postby syohana » Fri Jul 21, 2017 10:03 pm

Thanks Loboris for this awesome library, it will be very useful to me.

I found a small bug while trying to get it working. Test 10 was crashing with various different memory errors seemingly at random including "Guru Meditation Error of type LoadProhibited occurred on core 0. Exception was unhandled.".

Turns out that in function "EPD_jpg_image", if the file is not found then instead of printing a file not found error it will crash at the line under "exit" where it closes the file, because dev.fhndl has not been defined.

Setting dev.fhndl to NULL at the top of the function stopped it crashing and now the whole demo runs perfectly EXCEPT test 10 does nothing because it is unable to load the files.

I'm not sure yet why it can't load the files, turning on image_debug reveals that the error message is "File error: Bad file numbers". I just flashed it on with "make all", I guess maybe I need to do something extra to put those files on? I tried the make copyfs, makefs and flashfs commands from your instructions but they all fail with the error "make: *** No rule to make target `makefs'. Stop.". Any idea what I'm doing wrong?

Anyway, hopefully this will be helpful so nobody else has to track down this bug! Thanks again for the awesome library, it will get me started much quicker with the epaper display.

User avatar
ESP_krzychb
Posts: 394
Joined: Sat Oct 01, 2016 9:05 am
Contact:

Re: ESP32 ePaper display library

Postby ESP_krzychb » Sat Aug 05, 2017 5:10 pm

Hi @loboris,

Thank you for this great component and comprehensive demo.
As usual with your applications I got it up and running in no time.
ESP32 with ePaper display.jpg
ESP32 with ePaper display
ESP32 with ePaper display.jpg (274.12 KiB) Viewed 28850 times
This should be a great solution for battery powered projects.

fhng11214
Posts: 8
Joined: Wed Nov 01, 2017 10:35 pm

Re: ESP32 ePaper display library

Postby fhng11214 » Wed Nov 01, 2017 10:43 pm

I too got "make: *** No rule to make target `makefs'. Stop." with >make copyfs, like syohana. But compiled it with esp-idf v2 and toolchain 1.22.0-61 fixed it.

Updated to latest esp-idf and toolchain, it failed at "make all"

Code: Select all

CC build/spiffs/spiffs_vfs.o
/Users/lighflares/esp/epaper/ESP32_ePaper_example/components/spiffs/./spiffs_vfs.c: In function 'vfs_spiffs_register':
/Users/lighflares/esp/epaper/ESP32_ePaper_example/components/spiffs/./spiffs_vfs.c:826:9: error: unknown field 'fd_offset' specified in initializer
         .fd_offset = 0,
         ^
In file included from /Users/lighflares/esp/epaper/ESP32_ePaper_example/components/spiffs/./spiffs_vfs.c:24:0:
/Users/lighflares/esp/esp-idf/components/vfs/include/esp_vfs.h:39:37: warning: initialized field overwritten [-Woverride-init]
 #define ESP_VFS_FLAG_DEFAULT        0
                                     ^
/Users/lighflares/esp/epaper/ESP32_ePaper_example/components/spiffs/./spiffs_vfs.c:827:18: note: in expansion of macro 'ESP_VFS_FLAG_DEFAULT'
         .flags = ESP_VFS_FLAG_DEFAULT,
                  ^
/Users/lighflares/esp/esp-idf/components/vfs/include/esp_vfs.h:39:37: note: (near initialization for 'vfs.flags')
 #define ESP_VFS_FLAG_DEFAULT        0
                                     ^
/Users/lighflares/esp/epaper/ESP32_ePaper_example/components/spiffs/./spiffs_vfs.c:827:18: note: in expansion of macro 'ESP_VFS_FLAG_DEFAULT'
         .flags = ESP_VFS_FLAG_DEFAULT,
                  ^
/Users/lighflares/esp/epaper/ESP32_ePaper_example/components/spiffs/./spiffs_vfs.c:828:18: warning:initialization from incompatible pointer type [-Wincompatible-pointer-types]
         .write = &vfs_spiffs_write,
                  ^
/Users/lighflares/esp/epaper/ESP32_ePaper_example/components/spiffs/./spiffs_vfs.c:828:18: note: (near initialization for 'vfs.<anonymous>.write')
make[1]: *** [spiffs_vfs.o] Error 1
make: *** [component-spiffs-build] Error 2

Who is online

Users browsing this forum: No registered users and 28 guests