Page 1 of 1

E-ink wifi display project featured on Hacker News

Posted: Tue Jun 14, 2016 7:14 am
by jumasheff
Project description: https://davidgf.net/page/41/e-ink-wifi-display
HN comments: https://news.ycombinator.com/item?id=11894613

How hard is it to port the project to uPython?

Re: E-ink wifi display project featured on Hacker News

Posted: Tue Jun 14, 2016 8:07 am
by pythoncoder
Porting that looks interesting but probably non trivial. As a partial alternative we have an e-ink diver for the Pyboad https://github.com/peterhinch/micropython-epaper.git which can run in a micropower environment. The driver is fairly large and also requires a significant amount of RAM (8K) for the frame buffer so I have my doubts whether it could be ported to the WiPy or to ESP8266 boards. A solution might be to link a Pyboard to one of these boards, or to use a CC3000/CC3100 module with a Pyboard.

Re: E-ink wifi display project featured on Hacker News

Posted: Tue Jun 14, 2016 8:28 am
by jumasheff
@pythoncoder got it, thank you.