Search content
Sort by

Showing 4 of 4 results by Nautilina
Post
Topic
Board Project Development
Re: Using the Kobo Mini eReader as a dynamic (BIP0032) Bitcoin tip jar
by
Nautilina
on 08/09/2013, 08:43:25 UTC
Awesome! does it have a black and white web browser?

There is one hidden in the settings on an unmodified device, but it's not great to use on such a slow display. Certainly usable if you were stuck and desperate to check your email though.
Post
Topic
Board Project Development
Re: Using the Kobo Mini as a BIP0032 Bitcoin tip jar.
by
Nautilina
on 08/09/2013, 00:53:55 UTC
That sounds great. Would love to have that thing and your source code.

Would love to see a tutorial or source code in the near future.

Which function would you be most interested in replicating?

I'm a little bogged down with other projects at the moment, but I do intend to clean it up and publish the source on Github at some point.

I may look into implementing one with my raspberry pi.

If you're willing to have it tethered by USB, it's even easier. The device can present as an interface for direct writing, saving having to deal with power management and WiFi connectivity.
Post
Topic
Board Project Development
Re: Using the Kobo Mini as a BIP0032 Bitcoin tip jar.
by
Nautilina
on 07/09/2013, 10:51:48 UTC
Where did you get your Kobo mini?

I bought mine at a local chain store which was attempting to move their inventory.

They seem to go on sale quite regularly in the US and UK; I imagine they'd be available somewhere online at a comparable price if you search around.  


Damn those things cost more then 80 bucks over here. Dangit.

If you aren't able to find one, there's a number of different hackable Kobo readers that all run extremely similar software internally. Many of the Kindle models are usable in a similar manner and have quite active communities, though I've no firsthand experience with them.

That sounds great. Would love to have that thing and your source code.

There's actually not a lot of source code to show just yet. The default loader is entirely based on bash scripts, to which I've just been extending and adding my own features to. It does run Python quite well, I've just not quite been able to master writing to the screen in a sensible fashion with it yet.
Post
Topic
Board Project Development
Topic OP
Using the Kobo Mini eReader as a dynamic (BIP0032) Bitcoin tip jar
by
Nautilina
on 07/09/2013, 07:33:25 UTC
http://i.imgur.com/cjNiE4d.jpg

For around USD$20 I was able to pick up a brand new Kobo Mini eReader, with the intent on turning it into
a nifty Bitcoin tool. It sports an 800x600 E-Ink display, an 800MHz processor, has WiFi and USB networking,
and runs the very hacker-friendly BusyBox Linux. The storage is claimed to be 1GB by the box, but it actually
contains a 4GB MicroSD card internally.

There's a variety of interesting things that can be done with such a low power, low cost device, but for the
moment I am focused on building a tip jar that uses a deterministic wallet to display an infinite number of
fresh addresses displayed as QR codes.

http://i.imgur.com/ajK7BDz.gif

(In real life, there's a 500ms delay as the screen transitions through black under the QR code. Both frames of the animation are real photos of the QR code on the device.)

So why bother having a dynamic tip jar address rather than one printed on paper? The answer, quite simply,
is privacy. It avoids transactions on the blockchain from being associated with both you, and with other
tippers. It also hides the total number of tips received, if that is an issue for the vendor. Alternatively, it
could also display a total of all the watched deterministic addresses. The only limit is screen space.

Currently the system uses a very large set of pre-rendered Bitcoin QR codes, and simply rotates through
them as a preset interval (currently 5 minutes), and goes into hibernation in-between. I intend to replace
this with a better Python script that will render them on the fly given an Armory seed. The device only has
knowledge of the public keys, so there's absolutely no danger of tips being stolen if the device is.




I've found that it also works quite admirably when pulling data from an external data source. Displaying bitcoincharts:

http://i.imgur.com/HOgpt0k.jpg

Displaying mining data from bfgminer's API on another host:

http://i.imgur.com/HlpDwrt.jpg


The device internally is very suited to it's new task. MicroSD cards can be switched at will to provide different
software or to replace a damaged install. The entire operating system is stored on the MicroSD card, meaning
it is almost impossible to brick.


http://i.imgur.com/O7XtaMb.jpg


There's also an unpopulated serial header, but I've not needed to try that yet.

I'm not sure how well the battery will last under any of the demonstrated conditions, but I've only used 13%
or so in hours of hacking with the WiFi permanently enabled (normally it would be only on intermittently). The
chief feature of using an E-Ink display is that no power is consumed when idle, only when actively
redrawing the display.

None of my code is particularly presentable at the moment, but it's incredibly easy to hack something like this
together if you've some bash scripting experience and a few hours of spare time. There is wiki with some
information on the internal daemons and behavior available too.