<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: 64pixels are enough</title>
	<atom:link href="http://tinkerlog.com/2009/03/21/64pixels-are-enough/feed/" rel="self" type="application/rss+xml" />
	<link>http://tinkerlog.com/2009/03/21/64pixels-are-enough/</link>
	<description>Alex' blog</description>
	<lastBuildDate>Mon, 30 Jan 2012 22:34:38 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Charlieplexed animated heart hoodie &#171; RobotSkirts</title>
		<link>http://tinkerlog.com/2009/03/21/64pixels-are-enough/comment-page-1/#comment-288999</link>
		<dc:creator>Charlieplexed animated heart hoodie &#171; RobotSkirts</dc:creator>
		<pubDate>Sun, 09 Oct 2011 22:06:43 +0000</pubDate>
		<guid isPermaLink="false">http://tinkerlog.com/?p=563#comment-288999</guid>
		<description>[...] The heart uses a technique called Charlieplexing to drive the 27 LEDs using just 6 pins. To finally get the device working, I just soldered wires directly to the heart. My favorite feature of this project was the simple Flash based animation tool Jimmie included to generate the Arduino sketch. It really made what could have been an arduous process of generating animation frame arrays very very easy. You can see the final few animations I programmed embedded below. I liked this badge idea so much, I ordered 2 of Alex&#8217; 64 pixel kits. [...]</description>
		<content:encoded><![CDATA[<p>[...] The heart uses a technique called Charlieplexing to drive the 27 LEDs using just 6 pins. To finally get the device working, I just soldered wires directly to the heart. My favorite feature of this project was the simple Flash based animation tool Jimmie included to generate the Arduino sketch. It really made what could have been an arduous process of generating animation frame arrays very very easy. You can see the final few animations I programmed embedded below. I liked this badge idea so much, I ordered 2 of Alex&#8217; 64 pixel kits. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lo and Behold, 64 Pixels are Enough! &#124; Coffeebot Labs</title>
		<link>http://tinkerlog.com/2009/03/21/64pixels-are-enough/comment-page-1/#comment-148428</link>
		<dc:creator>Lo and Behold, 64 Pixels are Enough! &#124; Coffeebot Labs</dc:creator>
		<pubDate>Sat, 13 Nov 2010 04:58:56 +0000</pubDate>
		<guid isPermaLink="false">http://tinkerlog.com/?p=563#comment-148428</guid>
		<description>[...] enamoured with Alex Weber&#8217;s 64 Pixels project from the moment I saw it. When I happened across it (via Make:blog, I think), I was just [...]</description>
		<content:encoded><![CDATA[<p>[...] enamoured with Alex Weber&#8217;s 64 Pixels project from the moment I saw it. When I happened across it (via Make:blog, I think), I was just [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tgfuellner</title>
		<link>http://tinkerlog.com/2009/03/21/64pixels-are-enough/comment-page-1/#comment-121140</link>
		<dc:creator>tgfuellner</dc:creator>
		<pubDate>Sun, 12 Sep 2010 17:40:05 +0000</pubDate>
		<guid isPermaLink="false">http://tinkerlog.com/?p=563#comment-121140</guid>
		<description>Simplicity rules!

I like this small thing. You can compile with current AVR-GCC instalations by using the compiler option
 -fno-inline-small-functions

In the Makefile:

COMPILE = avr-gcc -Wall -Os -fno-inline-small-functions -DF_CPU=$(CLOCK) -mmcu=$(DEVICE)</description>
		<content:encoded><![CDATA[<p>Simplicity rules!</p>
<p>I like this small thing. You can compile with current AVR-GCC instalations by using the compiler option<br />
 -fno-inline-small-functions</p>
<p>In the Makefile:</p>
<p>COMPILE = avr-gcc -Wall -Os -fno-inline-small-functions -DF_CPU=$(CLOCK) -mmcu=$(DEVICE)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: saw0</title>
		<link>http://tinkerlog.com/2009/03/21/64pixels-are-enough/comment-page-1/#comment-86253</link>
		<dc:creator>saw0</dc:creator>
		<pubDate>Mon, 28 Sep 2009 00:40:05 +0000</pubDate>
		<guid isPermaLink="false">http://tinkerlog.com/?p=563#comment-86253</guid>
		<description>Thank you so much :)

I found a Conversion table in the net.

Greetings

saw0</description>
		<content:encoded><![CDATA[<p>Thank you so much <img src='http://tinkerlog.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I found a Conversion table in the net.</p>
<p>Greetings</p>
<p>saw0</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://tinkerlog.com/2009/03/21/64pixels-are-enough/comment-page-1/#comment-86156</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Sat, 26 Sep 2009 14:56:58 +0000</pubDate>
		<guid isPermaLink="false">http://tinkerlog.com/?p=563#comment-86156</guid>
		<description>Hi saw0,
0x## is the hex notation.
As an example: 0x18 is one byte in hex. In bits it looks like this: 0001 1000, so first 4 digits is the 1, that last 4 is the 8. So that lights up the two LEDs in the middle.
Cheers,
Alex</description>
		<content:encoded><![CDATA[<p>Hi saw0,<br />
0x## is the hex notation.<br />
As an example: 0&#215;18 is one byte in hex. In bits it looks like this: 0001 1000, so first 4 digits is the 1, that last 4 is the 8. So that lights up the two LEDs in the middle.<br />
Cheers,<br />
Alex</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: saw0</title>
		<link>http://tinkerlog.com/2009/03/21/64pixels-are-enough/comment-page-1/#comment-86155</link>
		<dc:creator>saw0</dc:creator>
		<pubDate>Sat, 26 Sep 2009 14:49:46 +0000</pubDate>
		<guid isPermaLink="false">http://tinkerlog.com/?p=563#comment-86155</guid>
		<description>Hey Alex!

Thanks for pointing this out, now i also see that the wiring is different.

I uncommented the part, It works flawlessly now.

Thanks for this nice Blinky, my girlfriend loves it :)

Just another question: I don&#039;t quite understand how to make own animations:

    0x18,    // ___XX___
    0x3C,    // __XXXX__
    0x7E,    // _XXXXXX_
    0xDB,    // X_XXXX_X

how can i translate the &quot;0x##&quot; part so i know which pixel i actually lights?

Greets and thanks in advance!

saw0</description>
		<content:encoded><![CDATA[<p>Hey Alex!</p>
<p>Thanks for pointing this out, now i also see that the wiring is different.</p>
<p>I uncommented the part, It works flawlessly now.</p>
<p>Thanks for this nice Blinky, my girlfriend loves it <img src='http://tinkerlog.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Just another question: I don&#8217;t quite understand how to make own animations:</p>
<p>    0&#215;18,    // ___XX___<br />
    0&#215;3C,    // __XXXX__<br />
    0&#215;7E,    // _XXXXXX_<br />
    0xDB,    // X_XXXX_X</p>
<p>how can i translate the &#8220;0x##&#8221; part so i know which pixel i actually lights?</p>
<p>Greets and thanks in advance!</p>
<p>saw0</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://tinkerlog.com/2009/03/21/64pixels-are-enough/comment-page-1/#comment-86131</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Sat, 26 Sep 2009 06:41:20 +0000</pubDate>
		<guid isPermaLink="false">http://tinkerlog.com/?p=563#comment-86131</guid>
		<description>Hi saw0,

the pinout looks the same, but the LEDs  of your matrix is common anode, while the one I used, was common cathode.
There is a code snippet (display_active_row) in the source that is commented out right now. Try to use that part.

Cheers,
Alex</description>
		<content:encoded><![CDATA[<p>Hi saw0,</p>
<p>the pinout looks the same, but the LEDs  of your matrix is common anode, while the one I used, was common cathode.<br />
There is a code snippet (display_active_row) in the source that is commented out right now. Try to use that part.</p>
<p>Cheers,<br />
Alex</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: saw0</title>
		<link>http://tinkerlog.com/2009/03/21/64pixels-are-enough/comment-page-1/#comment-86068</link>
		<dc:creator>saw0</dc:creator>
		<pubDate>Fri, 25 Sep 2009 11:34:03 +0000</pubDate>
		<guid isPermaLink="false">http://tinkerlog.com/?p=563#comment-86068</guid>
		<description>Hello :)

I am trying to build this with a 8x8 Led-Matrix:

http://www.jsweihao.com/pro/dz-6.jpg

It has the same witing as the one from Futurelec, but somehow i only end up with the whole matrix lit constantly. Any hints?

Thanks

saw0</description>
		<content:encoded><![CDATA[<p>Hello <img src='http://tinkerlog.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I am trying to build this with a 8&#215;8 Led-Matrix:</p>
<p><a href="http://www.jsweihao.com/pro/dz-6.jpg" rel="nofollow">http://www.jsweihao.com/pro/dz-6.jpg</a></p>
<p>It has the same witing as the one from Futurelec, but somehow i only end up with the whole matrix lit constantly. Any hints?</p>
<p>Thanks</p>
<p>saw0</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://tinkerlog.com/2009/03/21/64pixels-are-enough/comment-page-1/#comment-80105</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Mon, 22 Jun 2009 20:02:36 +0000</pubDate>
		<guid isPermaLink="false">http://tinkerlog.com/?p=563#comment-80105</guid>
		<description>Chris, 
a CR2032 would work. Marcus did his Space Invader Button with it. http://interactive-matter.org/2009/04/space-invaders-button/
Maybe the battery life is a bit limitted.
Cheers,
Alex</description>
		<content:encoded><![CDATA[<p>Chris,<br />
a CR2032 would work. Marcus did his Space Invader Button with it. <a href="http://interactive-matter.org/2009/04/space-invaders-button/" rel="nofollow">http://interactive-matter.org/2009/04/space-invaders-button/</a><br />
Maybe the battery life is a bit limitted.<br />
Cheers,<br />
Alex</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://tinkerlog.com/2009/03/21/64pixels-are-enough/comment-page-1/#comment-80097</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Mon, 22 Jun 2009 18:32:10 +0000</pubDate>
		<guid isPermaLink="false">http://tinkerlog.com/?p=563#comment-80097</guid>
		<description>Is there anything special about a 3V CR2032 lithium battery that would make it unsuitable to power one of these?</description>
		<content:encoded><![CDATA[<p>Is there anything special about a 3V CR2032 lithium battery that would make it unsuitable to power one of these?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

