Live data from Hacker News

E-Ink Magic Calendar that runs off a battery powered Raspberry Pi

github.com

131–140 of 171 posts

Re: E-Ink Magic Calendar that runs off a battery powered Raspberry Pi

#131
post #124

Earlier quoted context omitted.

Just curious but is it the lack of mass production or something sinister like patents / monopoly?

Patents & monopoly

Apparently, this is not true according to an HN user robinsoh who works in the industry. Check his comment history more info:

https://news.ycombinator.com/threads?id=robinsoh

Re: E-Ink Magic Calendar that runs off a battery powered Raspberry Pi

#132

Hey man, this is so cool. I hope it’s okay to plug here: I am working towards releasing a similar product for sale: https://www.invisible-computers.com/ Unfortunately the display isn’t as big as the one you chose and it isn’t battery powered. But I am starting to ship the first units, so there is that :)

Completely off topic, but you could have followed "Breakfast at Tiffany's" with "Dinner with Andre"!

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

Re: E-Ink Magic Calendar that runs off a battery powered Raspberry Pi

#133
post #13

Earlier quoted context omitted.

I find the ESP32 much easier to develop for, you don't need to install any toolchains, just plug in and drop code into the virtual USB drive that shows up! I wish all microcontrollers were like that these days.

That sounds like a very specific bootloader that you're using ESP-IDF is still very nice though, and being CMake based makes it easy to integrate outside code It supports serial based uploads, which are still pretty nice with the bundled serial monitor (one key combo to build, upload, and restart) and OTA uploads

Oh sure, but it's still way better than the last time I had to deal with an STM32 and install about 5 different things, modify a "boards.txt" file (which there were 3 copies of on my system in different places and I had no idea which was the real one) and then hit the program button with one hand with a mouse in the air while carefully timing a short of a reset trace on a PCB with the other with my elbow holding down the PCB. STM32s really suck. Never had to do that with an ESP32, at least someone made a nice bootloader for it.

Re: E-Ink Magic Calendar that runs off a battery powered Raspberry Pi

#134

The main problem with e-ink is finding a display that doesn't cost 5x what an LCD of the same size would cost. This display was $179 before it became unavailable. That's on the low end for such displays bigger than phone-sized. If the e-ink people ever overcome their cost problem, we'll see many more products.

I just used an old eBook reader I had lying around. It shows the weather forecast.

Re: E-Ink Magic Calendar that runs off a battery powered Raspberry Pi

#135
post #16

Earlier quoted context omitted.

There are 31" and 42" e-ink displays available, but they cost a few thousand dollars. The 42" is pretty close to 2ft by 3ft, 25" x 33".

>There are 31" and 42" e-ink displays available, but they cost a few thousand dollars. The 42" is pretty close to 2ft by 3ft, 25" x 33". I must have 4 or 5 old Kindles in a drawer by now, somehow. I wonder if you could hack together a grid of old Kindles to make a giant e-ink screen?

A lot of these kinds of projects render out an image and send that to the display. If you did it on a server, cut up the images, and had each kindle pull their image it should be pretty trivial. The only immediate issue that comes to mind is making sure they're relatively in sync when pulling a new image if you're worried about polling too often.

Re: E-Ink Magic Calendar that runs off a battery powered Raspberry Pi

#136
post #131
post #124

Earlier quoted context omitted.

Patents & monopoly

Apparently, this is not true according to an HN user robinsoh who works in the industry. Check his comment history more info: https://news.ycombinator.com/threads?id=robinsoh

He doesn't seem to ever provide any evidence for his claims other than a repeated "I work in the display industry"..

Re: E-Ink Magic Calendar that runs off a battery powered Raspberry Pi

#137
post #131
post #124

Earlier quoted context omitted.

Patents & monopoly

Apparently, this is not true according to an HN user robinsoh who works in the industry. Check his comment history more info: https://news.ycombinator.com/threads?id=robinsoh

At least this [1] article seems to indicate the presence of patents

[1] https://www.businesswire.com/news/home/20171220005895/en/E-I...

Re: E-Ink Magic Calendar that runs off a battery powered Raspberry Pi

#139

The main problem with e-ink is finding a display that doesn't cost 5x what an LCD of the same size would cost. This display was $179 before it became unavailable. That's on the low end for such displays bigger than phone-sized. If the e-ink people ever overcome their cost problem, we'll see many more products.

Is there any kind of projector display might would work for this?

Re: E-Ink Magic Calendar that runs off a battery powered Raspberry Pi

#140
post #59

Earlier quoted context omitted.

Cause EInk display code works nice to just ship it an image type file. So, it's gotta be rasterized before, using Chromium makes that super easy - rather than hand crafting PNG. I personally make SVG then rasterize but this isn't that terrible.

I was going down this route once, trying to use Inkscape headless. Is there a SVG-2-bitmap tool you can recommend?

Another one is rsvg: https://www.tutorialspoint.com/unix_commands/rsvg.htm
Post reply on HN