Close
0%
0%

FreEader - minimal e-book reader

HTML/EPUB <pandoc> LATEX <dvipng> png <imagemagick> pbm <pbmtojbg85> SD-Card <uC> 4.4" E-Ink

Similar projects worth following

I read a lot with my Sony Reader PRS-350. But I am happy with it only because I can run an alternative firmware on it (PRS+).

The alternative firmware allows me to:

  • define a global style sheet, so every ebook uses the same font family, size, spacing and layout,

When I want to read I do two things:

  • power on the e-reader
  • choose the book I want to read

While reading I do one single thing:

  • press a button to turn to the next page.

That the typesetting and layouting engine runs on the e-reader itself is inefficient and stupid. The typesetting and layouting needs only be defined once on your host machine (e.g. ebook library), ebooks then are converted once to a compressed plain black-and-white pixel stream to be stored and displayed on the e-reader.

A minimalistic e-reader therefore does three things.

  • listen for user button presses
  • load pixel data from storage (e.g SD card)
  • show pixel data on display (e.g E-Ink)

Have you seen me mention terms like EPUB, MOBI, DRM, embedded Linux, Android, typesetting, layouting, WLAN in the above list?

No? Because an e-reader in the end is just there to toggle the right pixels on your E-Ink. There is no need for a full blown OS ,there is no need for a touch screen, there is no need for a dictionary, there is no need for any apps and there is no need for network access (and monitoring).

This project thus consists of four parts:

  • Conversion toolchain (EPUB/HTML => JBIP1 compresed bilevel pixel stream)
  • Ahead-of-time device menu render toolchain
  • Minimalistic hardware (ARM Cortex M4 uC, SD card reader, E-Ink display)
  • Firmware that decompresses JBIP1 bilevel pixel stream to E-Ink display

This setup should have a very low power profile and may even run on direct solar power.

STM32 Development Board schematic diagram.pdf

salvaged from www.good-display.com, before public link had disappeared

Adobe Portable Document Format - 57.86 kB - 03/26/2016 at 10:48

Preview
Download

GDE043A2.pdf

salvaged from www.good-display.com, before public link had disappeared

Adobe Portable Document Format - 597.93 kB - 03/26/2016 at 10:48

Preview
Download

E-paper Demo Kit Manual.pdf

salvaged from www.good-display.com, before public link had disappeared

Adobe Portable Document Format - 1.14 MB - 03/26/2016 at 10:48

Preview
Download

Application Example for E-Book.pdf

salvaged from www.good-display.com, before public link had disappeared

Adobe Portable Document Format - 37.11 kB - 03/26/2016 at 10:48

Preview
Download

3.5,4.3,6inch E-paper demo kit sample codes.rar

salvaged from www.good-display.com, before public link had disappeared

x-rar - 168.67 kB - 03/26/2016 at 10:48

Download

  • 1 × STM32F303 Microprocessors, Microcontrollers, DSPs / ARM, RISC-Based Microcontrollers
  • 1 × GDE043A2 4.3 inch E-paper 800x600

  • Flowchart of {e-book -> bi-level image} conversion toolchain

    ventosus03/26/2016 at 12:02 0 comments

    How do we get from an arbitrary formatted e-book to our bi-level image byte-stream?

    With a comletely free toolchain, of course. A graph says more than words.

    Try it out for yourself at our repository: https://github.com/ventosus/freeader

  • Salvage disappeared schematics and firmware code from good-display.com

    ventosus03/26/2016 at 11:10 0 comments

    All example schematic and firmware code examples from the good display GDE043A2 e-paper display seem to have disappeared from the web. Luckily I had downloaded them last year already and now uploaded to hackaday.io [4] so they shall be preserved until eternety.

    In the meantime, the GDE043A2 seems to have been deprecated and replaced with the GDEP043WC3 [3], a new 4.3" display with dimensions 800x480px, a resolution of 217 DPI and 16 gray levels. I don't quite like the aspect ratio of that display (16:9.6). They promote it as e-paper phone display, in that regard, that ratio may well make sense, but it's not ideal for the FreEader.

    However, the GDE043A2 [1] and its demo kit [2] seem to still be available, I'd better hurry up purchasing one...

    1. http://www.buy-lcd.com/index.php?route=product/product&path=2897_8369&product_id=12515
    2. http://www.buy-lcd.com/index.php?route=product/product&path=2897_8369&product_id=14630
    3. http://www.good-display.com/products_detail/&productId=317.html
    4. https://hackaday.io/project/4025-freeader-minimal-e-book-reader#menu-files

  • looking for an Electrophoretic Display (EPD)

    ventosus09/13/2015 at 19:51 0 comments

    Which EPD should I design for?

    An EPD from http://www.eink.com/ is ouf of question, as they don't sell to individuals.

    But there are at least two others, that sell EPDs to individuals, have informative documentation and even offer development kits:

    So which one should I go with?

    My prerequisites are to get a small EPD around 4" with a good resolution.

    I first looked at this here: http://www.pervasivedisplays.com/products/441, but it has only 113dpi (400x300 px) which may be suitable as an electronic shelf label, but not ideal for an e-book reader. This EPD is only black/white (1 bit color).

    Then I found this here: http://www.good-display.com/products_detail/&productId=167.html which has awesome 230dpi (800x600 px). There is even a development kit based on an STM32F103xx with schematics and complete firmware code which should be easy to migrate to a STM32F303xx. This EPD is black/darkGray/lightGray/white (2 bit color).

    I guess I will get one of their kits to experiment with before designing my own hardware.

  • prerendered menu sketch

    ventosus09/13/2015 at 19:30 0 comments

    Althoug freeader should be a minimal reader, there must be some way to navigate between books, e.g. a kind of menu structure.

    This menu structure will also be prerendered pixel data, like the books themselves.

    I use Edje from the Enlightenment Foundation Libraries (EFL) as underlying theming and layouting engine.

    https://docs.enlightenment.org/auto/eio/edje_main.html

    https://docs.enlightenment.org/auto/edje/edcref.html

    Why Edje? I have built other things on top of the EFL, know them well and like them a lot.

    https://github.com/ventosus/edje2yuv

    https://openmusickontrollers.github.io/lv2/synthpod/

    With Evas (the EFL canvas library) you can draw to pretty much everying (X11, openGL, Wayland, framebuffer, pixel buffer, ...). Here I draw to a pixel buffer and then compress it with JBIG1.

    By using Edje, the menu structure can be themed to the last nut. I've experimented a bit and below you can see two screenshots of a sketch of a simple menu theme.

    The menu structure will have limited capabilities, e.g. navigating a directory tree and loading a given book.

    I have just uploaded my repository with the current toolchain.

    https://github.com/ventosus/freeader

  • From 768ms to 506ms with CCM (Core Coupled Memory)

    ventosus09/08/2015 at 21:15 0 comments

    I run my tests on a STM32F303CC for now, which has a nice feature called CCM (Core Coupled Memory).

    From AN4296 (http://www.st.com/web/en/resource/technical/document/application_note/DM00083249.pdf):

    [...] The STM32F303xB/C and STM32F358xC CCM RAM is tightly coupled with the CortexTM
    core. it is primarily intended to execute code at maximum system clock frequency (72 MHz)
    without any wait state penalty. It thus allows to significantly decrease critical task execution
    time, compared to code execution from Flash memory.
    CCM RAM is typically used for real-time and computation intensive routines [...]

    [...] When code is located in CCM RAM and data stored in the regular SRAM, the Cortex-M4
    core is in the optimum Harvard configuration. [...]

    [...] A benchmark between the STM32F103xx and STM32F303xx microcontrollers using
    STMicroelectronics MC library V3.4 shows [...] that the STM32F303xx is 20.33 % faster than the
    STM32F103xx thanks to the CCM RAM [...]

    I have of course tested this by adding support for CCM RAM to libopencm3 and was quite surprised with the speed up in decompressing 1 page of 800x600px JBIG1 encoded data from 768ms (code on FLASH) to 506ms (code on CCM RAM).

    The speed up is quite substantial with -34 %.

    Lessons learned:

    • I will definitely design for an STM32F30x
    • and put the decompression algorithm code (and other time critical code) into CCM RAM

  • 768ms to decompress 800x600px JBIG1 compressed page on STM32F3

    ventosus09/06/2015 at 09:10 0 comments

    I've measured decompression time of JBIG1 compressed page 0013 of 'flatland' on a STM32F303CC.

    The source page was the following 800x600px image with an umcompressed size of 60kB.

    The corresponding JBIG1 compressed image had a size of 7kB (11.6%) and was directly flashed to uC flash memory.

    It took 768ms to decompress with the uC running @72MHz.

    This may seem like a lot, but it will take around 1000-1500ms to refresh a 800x600 e-ink display in the first place.

    With parallelising the three loops which load compressed image data from SD card, decompress and display it line by line, this should work out well, though.

    Lessons learned:

    • I'll need at least an ARM Cortex M3 running @72MHz with at least 8kB of RAM for the freeader hardware design, can't possibly go below if I want to use prerendered compressed image data and refresh the display under 1.5s.
    • A will thus design for STM32F30[2,3], as it is pin-compatible with STM32F103, but features an embedded DFU bootloader.

  • Choosing an image compression algo

    ventosus09/05/2015 at 15:43 0 comments

    The freeader will be designed to load prerendered text as bilevel (1 bit per pixel) image data.

    Considering an image size of 800x600 pixels, this gives a raw storage size of (800*600/8=60kB) per page.

    To safe space on the SD card and to speed up loading of pixel data from the SD card by the uC, we'd like to compress the pixel data if possible.

    The following questions arise thereby:

    • Are there special compression algorithms for bilevel text documents?
    • Are there decompression algorithms suitable to run on a uC?

    So, let us compare some widely used compression algorithms to the raw image data (pbm)

    The CCITT*, and JBIG* are special compression algorithms for bilevel image data (FAX, scanned documents).

    I use two cases for the comparison, in each one I have compressed the first 99 pages of 'Flatland'. Once all pages appended into a single image, and once each page on its own.

    From the figures below, you can clearly see, that the JBIG* algorithms perform best. Only the Group 4 version of the CCITT compression may be suitable, though.

    So, which one of CCITT Group 4, JBIG1 and JBIG2 whould we use on the uC to decode image data?

    This is a matter of available libraries, computational cost and memory usage. Ideally, a given decompression algorithm should not use any dynamic memory and would be designed with a byte stream API, e.g. read some bytes of compressed data until a complete image line has been decompressed, update the decompressed image line on the display, read next chunk of compressed bytes from SD, ...

    Are there any free decompression libraries out there:

    CCITT: http://www.libtiff.org/, ftp://alpha.greenie.net/pub/mgetty/tools/viewfax-2.4.tar.gz

    JBIG1: https://www.cl.cam.ac.uk/~mgk25/jbigkit/

    JBIG2: http://www.ghostscript.com/jbig2dec.html

    There is no standalone library for CCITT compression, but the algorithms could be extracted from various projects (libtiff, imagemagick, gimp, viewfax). CCITT compression is lightweight, can be implemented with a byte stream filter design and would thus be readonable to be run on a uC. But I would need to write the filters from scratch for usage on uC.

    There is a library for JBIG1 compression/decompression, it uses only ~4kB static memory, uses no dynamic memory, has a byte stream API and is optimally suited to be run on a uC. It can directly be used on a uC.

    There are separate projects for JBIG2 compression/decompression. The decompression library needs a lot of memory, as whole pages need to be present in memory (no byte stream filter design). It would need to be migrated to a a byte stream API design to be usuable on a uC. The JBIG2 compression has a lossless and lossy mode. The lossless mode is similar to JBIG1, the lossy mode can reach much higher decompression rates (but it needs a lot of memory).

    We obviously have a winner, it's JBIG1, as it has a readily available library with a byte stream API design, uses little static memory only and offers very good compression (10%).

    I will need to test the algorithm on a real uC, though, to find out how computationally expensive it is...

  • test book: Flatland, by Edwin A. Abbott

    ventosus08/31/2015 at 20:47 0 comments

    For doing tests with the freeader ebook conversion toolchain, I need a test ebook, right?

    I chose a short classic as simple test ebook:

    • Flatland: a romance of many dimensions by Edwin A. Abbott

    https://en.wikipedia.org/wiki/Flatland

    Why? Because it's short (short conversion times) and I like it alot.

    It's about politics, hierarchy, power, suppression, religion, geometry, reality and it's a lot of fun to read.

    The narrator is a rectangle living and explaining live in Flatland and to be chosen one day to experience the third dimension.

    If you shouldn't know it already, go read it, it's freely available from project gutenberg.

    https://www.gutenberg.org/ebooks/97

View all 8 project logs

Enjoy this project?

Share

Discussions

David Turner wrote 02/18/2024 at 16:07 point

Your project provides minimal resource usage and does not require a complex operating system or additional features. This is of course a huge plus. But I don’t understand who it’s aimed at. I would rather buy myself a new e-reader, especially since I love reading. By the way, I hate writing something the other way around, I even found argumentative essays for college and used https://studymoose.com/essay-types/argumentative-essays for this. It's certainly interesting what you do. But if you don't succeed, will you stop or keep trying? Of course I believe in you!

  Are you sure? yes | no

stevenaughtonnsx11 wrote 02/18/2024 at 16:06 point

nice try

  Are you sure? yes | no

nenihec794 wrote 11/29/2021 at 19:40 point

Today, it is very convenient to maintain a love of reading, since e-books have been popular for a long time and are very easy to use. I would like to recommend you an article, check this https://krispitech.com/7-easy-mobile-ebooks-to-use/ link to learn about seven easy mobile e-books to use. A big plus is that thanks to free e-books, our school bags have become much lighter. You can easily read your favorite book anywhere anytime with ebook reader apps compatible with a variety of mobile devices.

  Are you sure? yes | no

Similar Projects

Does this project spark your interest?

Become a member to follow this project and never miss any updates