I just release the Processing Blinkenlights Library. It displays Blinkenlight movies (*.bml) on your screen.
Basically the Library parse a .BML file (format description) and display its content as Image on the screen.
Get the library on the google code project site.
Edit 21.09.2010:
I just updated the library to v0.5 — major speed improvements and 8bpp bml files works fine.
Here are two simple examples:
Here is an example Sketch how to use the Library:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | import processing.lib.blinken.*; BlinkenLibrary blink; void setup() { blink = new BlinkenLibrary(this, “bnf_auge.bml”); blink.loop(); frameRate(20); background(0); size(170, 140); } void draw() { image(blink, 0, 0, 170, 140); } |
The library is just a quick hack, I ripped some code from the gifAnimation library.

One Trackback