<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Project Lab</title>
	<atom:link href="http://nootropicdesign.com/projectlab/feed/" rel="self" type="application/rss+xml" />
	<link>http://nootropicdesign.com/projectlab</link>
	<description></description>
	<lastBuildDate>Mon, 23 Jan 2012 16:45:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Displaying Android Phone Video on an RGB LED Matrix</title>
		<link>http://nootropicdesign.com/projectlab/2012/01/22/displaying-android-video-on-led-matrix/</link>
		<comments>http://nootropicdesign.com/projectlab/2012/01/22/displaying-android-video-on-led-matrix/#comments</comments>
		<pubDate>Sun, 22 Jan 2012 12:09:17 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Arduino]]></category>
		<category><![CDATA[IOIO]]></category>
		<category><![CDATA[Level 10]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://nootropicdesign.com/projectlab/?p=1023</guid>
		<description><![CDATA[Difficulty Level = 10 [What's this?] I bought this awesome RGB LED matrix panel from Adafruit and really wanted to see if I could make it display video from an Android phone. It was somewhat difficult, but by using my Android phone, the OpenCV computer vision library for Android, a Sparkfun IOIO board, and an [...]]]></description>
			<content:encoded><![CDATA[<p><strong><em>Difficulty Level = 10</em></strong>  <a target="_blank" href="/projectlab/difficulty-levels/">[What's this?]</a></p>
<p>I bought this awesome <a target="_blank" href="http://www.adafruit.com/products/420">RGB LED matrix panel</a> from Adafruit and really wanted to see if I could make it display video from an Android phone.  It was somewhat difficult, but by using my Android phone, the <a target="_blank" href="http://opencv.willowgarage.com/wiki/Android">OpenCV computer vision library for Android</a>, a <a target="_blank" href="http://www.sparkfun.com/products/10748">Sparkfun IOIO board</a>, and an Arduino, I got it working.  </p>
<p><img src="http://nootropicdesign.com/projectlab/wp-content/uploads/2012/01/RGBMatrixDiagram.png" alt="" title="RGBMatrixDiagram" width="640" height="269" class="alignleft size-full wp-image-1100"  style="border:none";/><br />
<br clear="all"/></p>
<p>All of the hardware and software setup details are below, but before I explain how it works, let&#8217;s see it in action:</p>
<p><iframe width="640" height="480" src="http://www.youtube.com/embed/yhA4Jne7o14?rel=0" frameborder="0" allowfullscreen></iframe></p>
<h3>How It Works</h3>
<p>This is not a beginner project, so if you don&#8217;t have experience doing any Android development, you&#8217;ll need to be patient.  Just getting your Eclipse development environment set up for Android development with the OpenCV and IOIO libraries took me a couple of hours, and I&#8217;ve been using Eclipse for about 10 years.</p>
<p>An Android app running on the phone captures video frames and processes them down to a lower resolution suitable for the 16&#215;32 LED matrix.  <a href="http://opencv.willowgarage.com/wiki/" target="_blank">OpenCV</a> is a powerful computer vision/image processing library, and there&#8217;s a <a href="http://opencv.willowgarage.com/wiki/Android" target="_blank">version that runs on Android</a>.  I used the OpenCV library to convert the video frames to 16&#215;32 pixel resolution to match the LED matrix.  I also constrained the color space of the frames to 12 bit color.  That is, each pixel has 4 bits each for red, green, and blue.  That means that each pixel can have 16 different brightness levels of red/green/blue, yielding 4096 possible colors.  In other words, all of the image processing is performed on the phone because it&#8217;s much more powerful than the Arduino.</p>
<p>The 16&#215;32 12-bit image uses 1024 bytes of memory on the phone (2 bytes per pixel).  The Android then uses the IOIO library to write this data out one of the IOIO board&#8217;s serial ports.  Each frame starts with a two-byte frame marker 0xF0 0&#215;00, then the bytes for the pixel values are written.  The performance bottleneck is between the phone and the IOIO board.  I can only write about 4 frames per second, even though the serial interface between the IOIO and Arduino is 115200 baud.  Since each pixel really only needs 1.5 bytes instead of 2, I could pack the pixel data tighter to get perhaps one more frame per second, but didn&#8217;t think it was worth the trouble.</p>
<p>The green wire in the picture below is a serial connection from the IOIO and Arduino.  The Arduino code simply reads the pixel values, using the frame marker to know when a new frame begins.  The pixel values are written to the LED matrix panel using the Adafruit library for controlling the panel.  Driving this matrix is no small feat for the Arduino, since the matrix panel does not do any PWM on its own; the Arduino needs to generate the PWM.  This matrix driver software could have been written for the IOIO to control the matrix directly without an Arduino, but Adafruit had really tuned this library for high-performance and very precise timing, so I thought I&#8217;d better stay with the Arduino code for now.  The result is video at about 4 frames per second.  Not very fast, but the color rendition is pretty good.</p>
<h3>Hardware Setup</h3>
<p><a href="http://nootropicdesign.com/projectlab/wp-content/uploads/2012/01/RGBMatrixHardware.jpg"><img src="http://nootropicdesign.com/projectlab/wp-content/uploads/2012/01/RGBMatrixHardware-sm.jpg" alt="" title="RGBMatrixHardware-sm" width="640" height="480" class="alignleft size-full wp-image-1045" style="border:none;"/></a><br />
<br clear="all"/><br />
The RGB matrix panel is wired to the Arduino <a href="http://ladyada.net/products/rgbledmatrix/">just as Adafruit&#8217;s instructions describe</a>.  They have an excellent page that describes how the panel works and how to use it.  </p>
<p>The RGB matrix and the Arduino are powered by a 5V regulated power supply that can provide 2A (also from Adafruit).  The IOIO board is powered independently by a 9V supply that can provide 1A.  It&#8217;s important to provide plenty of current to the IOIO board so that the phone can charge, however you can adjust a potentiometer on the IOIO to reduce the charging current.  As with any project with multiple power supplies, all the grounds must be connected.  A single green wire provides the serial data feed from the IOIO to the Arduino RX pin.  </p>
<p>I used a diffuser in front of the display to make it look much better.  Without a diffuser, the LEDs are simply blinding and it&#8217;s not easy to see any image.  My diffuser is a piece of acrylic with paper vellum on it.  The diffuser is held about 5mm in front of the LED panel (with a little roll of duct tape as a spacer).</p>
<p><a href="http://nootropicdesign.com/projectlab/wp-content/uploads/2012/01/RGBMatrixDiffuser.jpg"><img src="http://nootropicdesign.com/projectlab/wp-content/uploads/2012/01/RGBMatrixDiffuser.jpg" alt="" title="RGBMatrixDiffuser" width="640" height="480" class="alignleft size-full wp-image-1044"  style="border:none;" /></a><br />
<br clear="all"/><br />
The phone (a Samsung Nexus S) is connected to the IOIO via USB.  I mounted above the panel by holding it very gently with a Panavise.</p>
<p><a href="http://nootropicdesign.com/projectlab/wp-content/uploads/2012/01/RGBMatrixCameraMount.jpg"><img src="http://nootropicdesign.com/projectlab/wp-content/uploads/2012/01/RGBMatrixCameraMount.jpg" alt="" title="RGBMatrixCameraMount" width="640" height="480" class="alignleft size-full wp-image-1043" style="border:none;" /></a><br />
<br clear="all"/></p>
<h3>Software Setup</h3>
<p><b style="color:#EDC100;">Android + IOIO + OpenCV Software</b><br />
The hardest part of the software setup is preparing your development environment for Android, IOIO, and OpenCV development.  The details of how to do this are beyond the scope of this article, but all of the steps are documented in various places.</p>
<ol>
<li>Set up your Android development environment: this is documented on the <a href="http://developer.android.com/sdk/installing.html" target="_blank">Android SDK website</a>.  After you have performed this step, you will be able to write simple Android programs and run them on your phone.</li>
<li>Install the IOIO library: see <a href="http://www.sparkfun.com/tutorials/280" target="_blank">this great Sparkfun tutorial</a> which describes how to run Android apps that communicate with a connected IOIO board.  After you have performed this step, you will be able to upload the HelloIOIO app to your phone and have it communicate with your IOIO board.  Don&#8217;t move on to the next step until you are sure you have the IOIO working with your phone.</li>
<li>Install the OpenCV library for Android by following <a href="http://opencv.itseez.com/doc/tutorials/introduction/android_binary_package/android_binary_package.html#get-the-opencv-package-for-android-development" target="_blank">these instructions</a>.  After successfully doing this, you should be able to run the OpenCV Android examples on your Android phone.  Don&#8217;t proceed until you have this working successfully.</li>
<li>Now that you have all the supporting libraries in place, download the <a href="http://nootropicdesign.com/projectlab/downloads/RGBMatrixDriver.zip" target="_blank">RGBMatrixDriver Android application project</a> and install it in your Eclipse workspace and open it.  With luck, it will compile cleanly.  If not, make sure that the project is correctly pointing to the IOIO and OpenCV libraries as in the image below.<img src="http://nootropicdesign.com/projectlab/wp-content/uploads/2012/01/RGBMatrixAndroidProperties.png" style="border:none;" /></li>
<li>You may need to customize the code a bit.  I used IOIO pin 7 to send serial data to the Arduino, so you may need to change the pins specified in the call to <code>openUart</code> in <code>RGBMatrixActivity.java</code>.  You may also need to change some screen dimensions specified in <code>RGBMatrixView.java</code> to work with your phone &#8212; just follow the comments.</li>
</ol>
<p>Once you have the application running on your phone, this is what it looks like in action.  The video image is displayed with the same resolution and colors as the RGB matrix.</p>
<p><iframe width="640" height="480" src="http://www.youtube.com/embed/zn6Ky3Qc5w4?rel=0" frameborder="0" allowfullscreen></iframe></p>
<p><b style="color:#EDC100;">Arduino Software</b><br />
Now that the hard part is done, it&#8217;s easy to get the Arduino software installed.</p>
<ol>
<li>First, you&#8217;ll need Adafruit&#8217;s library for driving the panel.  <a href="https://github.com/adafruit/RGB-matrix-Panel/downloads" target="_blank">It&#8217;s available here</a>.  Install it in your Arduino sketchbook libraries folder just like any other library.</li>
<li>Then download and install the <a href="http://nootropicdesign.com/projectlab/downloads/RGBMatrixSerial.zip" target="_blank"><code>RGBMatrixSerial</code> sketch</a> and install it in your Arduino sketchbook.  Compile it and upload it onto your Arduino.  The sketch is so simple, I&#8217;ll show the whole thing here:
<pre class="codeblockscroll">
#include "RGBmatrixPanel.h"

#define A   A0
#define B   A1
#define C   A2
#define CLK 8
#define LAT A3
#define OE  9
#define WIDTH 32

int count = 0;
byte currentByte = 0;
byte lastByte = 0;
uint16_t color;
RGBmatrixPanel matrix(A, B, C, CLK, LAT, OE, true);

void setup()
{
  Serial.begin(115200);
  matrix.begin();
}

void loop() {
  int index;
  while (Serial.available()) {

    lastByte = currentByte;
    currentByte = Serial.read();

    // Look for the frame marker 0xF000
    if ((lastByte == 0xF0) &#038;&#038; (currentByte == 0x00)) {
      count = 0;
      matrix.swapBuffers(false);
    } else {
      if ((count % 2) == 1) {
        color = (lastByte << 8) | currentByte;
        index = (count-1)/2;
        matrix.drawPixel(index % WIDTH, index / WIDTH, color);
      }
      count++;
    }
  }
}
</pre>
</li>
</ol>
<h3>Future Ideas</h3>
<ul>
<li>increase the framerate a bit by packing 2 pixels in 3 bytes of transmitted data (only really need 1.5 bytes per pixel), but need different frame marker detection.</li>
<li>use the <a href="http://www.adafruit.com/products/607">32x32 matrix panel from Adafruit</a></li>
<li>try BlueTooth connection between phone and IOIO board (need to upgrade IOIO firmware)</li>
<li>Get an Arduino Mega ADK and use it to interface with the Android phone instead of the IOIO.  The framerate should be higher.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://nootropicdesign.com/projectlab/2012/01/22/displaying-android-video-on-led-matrix/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Vintage Holiday Ads for Our Kits!</title>
		<link>http://nootropicdesign.com/projectlab/2011/12/03/vintage-holiday-ads/</link>
		<comments>http://nootropicdesign.com/projectlab/2011/12/03/vintage-holiday-ads/#comments</comments>
		<pubDate>Sat, 03 Dec 2011 15:18:51 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Art]]></category>

		<guid isPermaLink="false">http://nootropicdesign.com/projectlab/?p=1009</guid>
		<description><![CDATA[Here are our new holiday ads for some of our kits&#8230;show your friends! Click through for product info! Buy!]]></description>
			<content:encoded><![CDATA[<p>Here are our new holiday ads for some of our kits&#8230;show your friends!  Click through for product info!  Buy!</p>
<p><a href="http://nootropicdesign.com/hackvision/"><img src="http://nootropicdesign.com/projectlab/wp-content/uploads/2011/12/hackvisionHolidayAd.jpg" alt="" title="hackvisionHolidayAd" width="522" height="678" class="alignleft size-full wp-image-1008" /></a><br />
<br clear="all"/></p>
<p/>
<a href="http://nootropicdesign.com/defusableclock/"><img src="http://nootropicdesign.com/projectlab/wp-content/uploads/2011/12/defusableClockHolidayAd2.jpg" alt="" title="defusableClockHolidayAd2" width="520" height="681" class="alignleft size-full wp-image-1007" /></a><br />
<br clear="all"/></p>
<p/>
<a href="http://nootropicdesign.com/defusableclock/"><img src="http://nootropicdesign.com/projectlab/wp-content/uploads/2011/12/defusableClockHolidayAd.jpg" alt="" title="defusableClockHolidayAd" width="520" height="660" class="alignleft size-full wp-image-1014" /></a><br />
<br clear="all"/></p>
<p/>
]]></content:encoded>
			<wfw:commentRss>http://nootropicdesign.com/projectlab/2011/12/03/vintage-holiday-ads/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>chipKIT Uno32 Review: Arduino Compatible?</title>
		<link>http://nootropicdesign.com/projectlab/2011/11/01/chipkit-uno32-review/</link>
		<comments>http://nootropicdesign.com/projectlab/2011/11/01/chipkit-uno32-review/#comments</comments>
		<pubDate>Tue, 01 Nov 2011 23:07:26 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Arduino]]></category>

		<guid isPermaLink="false">http://nootropicdesign.com/projectlab/?p=942</guid>
		<description><![CDATA[I recently got a chipKIT Uno32 prototyping platform from Newark so I could take it for a spin. Newark is the US distribution arm of Farnell and they carry both the chipKIT Uno32 and the chipKIT Max32. The chipKIT boards are manufactured by Diligent and claim compatibility with Arduino boards. The Uno32 is similar to [...]]]></description>
			<content:encoded><![CDATA[<p>I recently got a <a href="http://www.newark.com/digilent/chipkit-uno32/arduino-uno-compatible-w-pic32mx320f128h/dp/47T1474" target="_blank">chipKIT Uno32</a> prototyping platform from <a href="http://www.newark.com" target="_blank">Newark</a> so I could take it for a spin.  Newark is the US distribution arm of <a href="http://www.farnell.com" target="_blank">Farnell</a> and they carry both the chipKIT Uno32 and the chipKIT Max32.<br />
<div id="attachment_952" class="wp-caption alignright" style="width: 650px"><a href="http://nootropicdesign.com/projectlab/wp-content/uploads/2011/10/chipKIT-640x480.jpg"><img src="http://nootropicdesign.com/projectlab/wp-content/uploads/2011/10/chipKIT-640x480.jpg" alt="" title="chipKIT-640x480" width="640" height="480" class="size-full wp-image-952" /></a><p class="wp-caption-text">Nice looking board!</p></div><br />
<br clear="all"/><br />
The chipKIT boards are manufactured by <a href="http://www.digilentinc.com">Diligent</a> and claim compatibility with Arduino boards.  The Uno32 is similar to the Arduino Uno, and the chipKIT Max32 is similar to the Arduino Mega, but they are both based on Microchip PIC32 microcontrollers.  The Uno32 that I have has a <a href="http://www.microchip.com/wwwproducts/Devices.aspx?dDocName=en532434" target="_blank">PIC32MX320F128H microcontroller</a>.</p>
<p>There are plenty of powerful features of the Uno32 that make it compelling, especially when comparing to the Arduino.  There are 42 The clock speed is 80MHz versus 16MHz on the Arduino.  For most hobbyists this won&#8217;t matter much; I have not often found CPU speed to be a limiting factor in projects.  There&#8217;s more Flash memory to store your programs: 128K versus Arduino 32K.  Again, I have never felt limited by the size of a program.  In fact, the largest Arduino program I&#8217;ve written is a full-featured <a target="_blank" href="http://nootropicdesign.com/projectlab/2011/02/06/asteroids-on-hackvision/">implementation of Asteroids</a> and this only took 28K of Flash memory for the program.</p>
<p>But when it comes to SRAM, the memory that you use in your programs to store data structures, buffers, stack, etc, the chipKIT Uno32 has 16K versus 2K on the Arduino.  This is a vast improvement for me.  I&#8217;ve done a lot of video work with the Arduino (e.g. the <a href="/ve/" target="_blank">Video Experimenter shield</a>, <a href="/hackvision/" target="_blank">Hackvision game system</a>, etc.) and the size of SRAM is a significant barrier to video frame storage.</p>
<p>There are also 2 UARTs used for serial communication, versus the 1 on Arduino.  When using Arduino, if you want to communicate with two serial devices at once (for example, the Serial Monitor on your computer and a GPS module), you had to use a software implementation of serial communication for one of the devices.  But with 2 UARTs, the chipKIT Uno32 allows 2 independent hardware implementations.  I like that a lot.  There&#8217;s also a realtime clock and calendar (RTCC) on the PIC32MX320F128H microcontroller with the option of connecting a 32.768KHz clock crystal.  That could be useful for some projects.</p>
<p>Make sure you check out the Hackaday article where they did an <a href="http://hackaday.com/2011/05/27/chipkit-uno32-first-impressions-and-benchmarks/" target="_blank">in-depth review</a> of these boards from a performance perspective.</p>
<p>But what I was <em>really</em> interested in understanding is Diligent&#8217;s claim that the chipKIT boards are &#8220;Arduino Compatible&#8221;.  What does this mean in <em>practical terms</em> for the hobbyist?</p>
<h3>Compatibility: The Good News</h3>
<p>Well, you can program the Uno32 using the normal Arduino API, like <span class="code">digitalWrite</span>, <span class="code">digitalRead</span>, <span class="code">analogRead</span>, etc.  For most hobbyists, this will allow them to read sensors, light LEDs, control motors, and the like.  Maybe you need lots of digital outputs &#8212; the Uno32 has 42 pins instead of 19 on the ordinary Arduino.  The Uno32 is a lot cheaper than the Arduino Mega.</p>
<p>So, the normal Arduino API works, but what about direct access to ports in order to more efficiently control digital I/O?  I often use <a href="http://www.arduino.cc/en/Reference/PortManipulation" target="_blank">direct manipulation</a> of the AVR microcontroller ports instead of using <span class="code">digitalWrite</span> and <span class="code">digitalRead</span> calls.  That is, I set a digital pin HIGH with something like <span class="code">PORTB |= 0&#215;2</span> instead (for speed).  Will this code work with the chipKIT boards?  Yes!  I was surprised, but apparently the chipKIT compiler makes the appropriate adjustments to the resulting compiled code to allow direct port manipulation using the AVR semantics.</p>
<h3>Compatibility: The Bad News</h3>
<p>Here are some things that I think are bad news with regard to Arduino compatibility.</p>
<ul>
<li><span class="highlight">Outputs are 3.3V</span> &#8212; This means that the output voltage of the digital pins isn&#8217;t high enough to be recognized as an input HIGH voltage by many 5V CMOS chips.  For example, you can&#8217;t use the digital outputs on chipKIT boards to drive a 74HC595 shift register.  The 3.3V output is not high enough to trigger the input pins on CMOS chips which generally require at least 3.5V.  This problem can be address by adding more components to your circuits (e.g. a transistor to translate to a higher input voltage), but that defeats the purpose of convenient Arduino shields.</li>
<li><span class="highlight">Current limitations</span> &#8212; On the Arduino, each digital pin can source/sink up to 40mA as an absolute maximum, but in practice you should limit to 20mA.  However, the chipKIT boards have a maximum of +/-18mA per pin, and the reference manual states that this should be limited to +7/-12mA per pin.  This is going to be a disappointment to people wanting to drive LEDs, 7-segment displays, etc.  Furthermore, the maximum current that can be sourced/sunk across ALL I/O pins simultaneously is only 200mA.  That&#8217;s not much current to spread across 42 pins!  I tried to light a bright blue LED and was only able to draw a dim 8mA (with no current limiting resistor at all!) because the forward voltage of the LED is just barely over the 3.3V board output voltage.  Again, this can be solved with external circuitry, but that&#8217;s not convenient.</li>
<li><span class="highlight">Code rewrites</span> &#8212; If your Arduino code accesses AVR registers directly (for example to use timers) or involves AVR assembly, you are going to have to rewrite it.  This means that using my <a href="/ve/">Video Experimenter</a> on the chipKIT board would b e a total rewrite of the gnarly AVR assembly.</li>
<li><span class="highlight">Incompatible pin assignments</span> &#8212; If you use special microcontroller functions found on the AVR, you will not find them on the same pins on the chipKIT boards.  For example, my <a href="/ve/">Video Experimenter</a> shield utilizes the analog comparator function to compare the voltage of a video signal with a reference voltage.  The analog comparator pin is D6 on the Arduino, but is D11 on the chipKIT Uno32.  This is another barrier to using Arduino shields on the chipKIT boards.  The pins don&#8217;t have the same functions.</li>
</ul>
<h3>Bottom Line</h3>
<p>The chipKIT Uno32 is a nice board and will give many Arduino users a boost in speed and in the number of pins available.  Users doing more sophisticated things that involve direct AVR register access, timers, and libraries written in AVR assembly won&#8217;t be able to simply switch to the chipKIT for their work without a lot of rewriting.  Most disappointing to me is that many Arduino shields simply aren&#8217;t going to work on the chipKIT.  And due to the 3.3V output, even projects using LEDs (the bread-and-butter of the Arduino world!) may have some challenges due to current limitations and the lower voltage available to light up all those blinky lights.  Nonetheless, I welcome Microchip and Diligent&#8217;s efforts and hope to see some great chipKIT projects in the future!</p>
<h3>Resources</h3>
<p><a href="http://www.digilentinc.com/Products/Catalog.cfm?NavPath=2,892&#038;Cat=18">Diligent chipKIT site</a><br />
<a href="http://digilentinc.com/Data/Products/CHIPKIT-UNO32/chipKIT%20Uno32_rm.pdf">chipKIT Uno32 Reference Manual</a><br />
<a href="http://www.chipkit.org/forum/index.php">chipKIT forums</a><br />
<a href="http://www.microchip.com/stellent/groups/techpub_sg/documents/devicedoc/en026368.pdf">Tips and tricks for translating between 3.3V and 5V</a></p>
]]></content:encoded>
			<wfw:commentRss>http://nootropicdesign.com/projectlab/2011/11/01/chipkit-uno32-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Watching the Feds Watch Me</title>
		<link>http://nootropicdesign.com/projectlab/2011/09/16/watching-the-feds-watch-me/</link>
		<comments>http://nootropicdesign.com/projectlab/2011/09/16/watching-the-feds-watch-me/#comments</comments>
		<pubDate>Fri, 16 Sep 2011 12:17:00 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://nootropicdesign.com/projectlab/?p=905</guid>
		<description><![CDATA[I recently showed my Defusable Clock project on this blog. It got a lot of attention on the usual techie/hacker blogs, and the reaction was generally positive. I plan on selling an electronics kit so people can build their own, but I had reservations about doing so because some people might do something stupid with [...]]]></description>
			<content:encoded><![CDATA[<p>I recently showed my <a target="_blank" href="http://nootropicdesign.com/projectlab/2011/09/05/defusable-clock/">Defusable Clock project</a> on this blog.  It got a lot of attention on the usual techie/hacker blogs, and the reaction was generally positive.  I plan on selling an electronics kit so people can build their own, but I had reservations about doing so because some people might do something stupid with it.  Writing about the project allowed me to get feedback about whether it was a good or bad idea.  I concluded it was probably not a <i>bad</i> idea as long as I didn&#8217;t sell it pre-assembled, and didn&#8217;t sell anything that looked like explosives.  I really don&#8217;t want to do anything wrong or enable anyone to do anything wrong.  Just electronics fun.</p>
<p>A few days later, on Friday September 9, I noticed an interesting lurker in my online store.  The domain name of the potential customer caught my eye: <code>tsa.dhs.gov</code>.  Was this someone at the Department of Homeland Security?  Specifically, the Transportation Security Administration?</p>
<p><div id="attachment_907" class="wp-caption alignleft" style="width: 650px"><a href="http://nootropicdesign.com/projectlab/wp-content/uploads/2011/09/store-dhs.png"><img src="http://nootropicdesign.com/projectlab/wp-content/uploads/2011/09/store-dhs.png" alt="" title="store-dhs" width="640" height="409" class="size-full wp-image-907" /></a><p class="wp-caption-text">Who&#039;s this shopping in my store?</p></div><br />
<br clear="all"/><br />
I used an IP lookup tool to <a target="_blank" href="http://whois.domaintools.com/216.81.80.134">check the IP address for 216.81.80.134</a>. Sure enough, it was Homeland Security.  That was easy.</p>
<p><div id="attachment_903" class="wp-caption alignleft" style="width: 650px"><a href="http://nootropicdesign.com/projectlab/wp-content/uploads/2011/09/dhs_iplookup.png"><img src="http://nootropicdesign.com/projectlab/wp-content/uploads/2011/09/dhs_iplookup.png" alt="" title="dhs_iplookup" width="640" height="557" class="size-full wp-image-903" /></a><p class="wp-caption-text">IP address lookup confirms that the shopper is from DHS</p></div><br />
<br clear="all"/><br />
This isn&#8217;t the kind of attention I want.  I decided to check my Google Analytics console to see if I could learn anything about who was visiting my site that day.  One of the things you can look at is the service providers that your visitors are coming from.  This isn&#8217;t usually very interesting, because it&#8217;s just Comcast, Verizon, etc.  But this day was different.  I was absolutely shocked to find that over 5% of my traffic was coming from one location.</p>
<p><div id="attachment_902" class="wp-caption alignleft" style="width: 650px"><a href="http://nootropicdesign.com/projectlab/wp-content/uploads/2011/09/analytics-dhs.png"><img src="http://nootropicdesign.com/projectlab/wp-content/uploads/2011/09/analytics-dhs.png" alt="" title="analytics-dhs" width="640" height="480" class="size-full wp-image-902" /></a><p class="wp-caption-text">Over 5% of my visitors on Sept. 9 were from Department of Homeland Security</p></div><br />
<br clear="all"/><br />
That&#8217;s right &#8212; dozens of distinct visitors were from Homeland Security, and the number was rising steadily.  By mid-day over 100 people at Homeland Security had hit my site.</p>
<p>Uh oh.</p>
<p>I had not done anything wrong, but I really didn&#8217;t want a personal visit from Homeland Security, the FBI, or SEAL Team Six.  In late morning, my wife called me at the office from home &#8212; I was sure that gentlemen in dark suits were at the door, but it was a false alarm.  I was feeling paranoid.</p>
<p>Could the government really be that interested in me?  Maybe looking at a map of my U.S. visitors would make me feel better&#8230;</p>
<p><a href="http://nootropicdesign.com/projectlab/wp-content/uploads/2011/09/map_overlay.png"><img src="http://nootropicdesign.com/projectlab/wp-content/uploads/2011/09/map_overlay.png" alt="" title="map_overlay" width="640" height="377" class="size-full wp-image-923" /></a><br />
<br clear="all"/><br />
Nope.</p>
<p>The statistics indicated that the visitors were not spending more than a minute on average on the site.  They were taking a quick look, then leaving.  My theory is that maybe a link to my Defusable Clock was included in some morning briefing or something, and a bunch of people checked it out.  What do you think?</p>
<p>Nonetheless, I felt compelled to add this paragraph to the clock project post, hoping it might defuse the situation (pun intended):</p>
<hr/>
<span class="highlight"><b>Dear friends at the U.S. Department of Homeland Security:</b></span><br />
I can see from my logs that you are very interested in my project, but I assure you that this is just a clock. There is nothing dangerous in these photographs; just wooden dowels and clay. I sell DIY electronic kits for customers to assemble themselves, and plan to sell the electronic components for this clock as a kit. It is no more dangerous than any other alarm clock. I would never sell or ship anything that looks like a dangerous substance or device as shown in the photos below.  <i>I’m on your side.</i> So, we’re cool, right?</p>
<hr/>
<br clear="all"/><br />
The hits from DHS came to a stop around 4:30pm EDT as government employees headed home for the weekend, so I started to feel better.  Their visits declined over the 9/11 weekend and were a mere trickle this week.  I successfully flew to NYC yesterday (Thursday the 15th) to attend World Maker Faire this weekend.  If you see me at Maker Faire, make sure to come up and say &#8220;glad you made it!&#8221;.  I&#8217;ll be wearing <a target="_blank" href="http://nootropicdesign.com/projectlab/2011/05/21/pcb-tshirt/">this shirt with an image of my Video Experimenter board design</a>.  See you there (hopefully)!</p>
]]></content:encoded>
			<wfw:commentRss>http://nootropicdesign.com/projectlab/2011/09/16/watching-the-feds-watch-me/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Defusable Clock</title>
		<link>http://nootropicdesign.com/projectlab/2011/09/05/defusable-clock/</link>
		<comments>http://nootropicdesign.com/projectlab/2011/09/05/defusable-clock/#comments</comments>
		<pubDate>Mon, 05 Sep 2011 12:06:46 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Arduino]]></category>
		<category><![CDATA[Art]]></category>

		<guid isPermaLink="false">http://nootropicdesign.com/projectlab/?p=865</guid>
		<description><![CDATA[The Defusable Clock kit is NOW AVAILABLE FOR PURCHASE! This may look like a dangerous device, but it&#8217;s really just an ordinary alarm clock &#8212; with a twist. &#160; I thought it would be fun to build an alarm clock that looks just like the type of bomb that we always see in Hollywood movies. [...]]]></description>
			<content:encoded><![CDATA[<p><br/><br />
<span class="highlight"><b>The Defusable Clock kit is <span style="text-decoration:underline;"><a href="http://nootropicdesign.com/defusableclock/">NOW AVAILABLE FOR PURCHASE!</a></span></b></span><br />
<br/><br />
This may look like a dangerous device, but it&#8217;s really just an ordinary alarm clock &#8212; with a twist.<br />
<br />
<a href="http://nootropicdesign.com/projectlab/wp-content/uploads/2011/10/dynamite1-large.jpg"><img src="http://nootropicdesign.com/projectlab/wp-content/uploads/2011/10/dynamite1-sm.jpg" alt="" title="dynamite1-sm" width="640" height="480" class="alignleft size-full wp-image-863" /></a><br />
&nbsp;<br clear="all"><br />
I thought it would be fun to build an alarm clock that looks just like the type of bomb that we always see in Hollywood movies.  I certainly don&#8217;t know anything about how a real bomb might look, but in the movies they always have sticks of dynamite strapped together, a red digital readout, and a bunch of curly wires.  Instead of just building an ordinary clock, I thought it should have a detonation sequence with a scary countdown just like in the movies.  And why not make it &#8220;defusable&#8221; so I an try to stop the countdown by cutting the correct wire?<br />
<br />
<iframe width="640" height="480" src="http://www.youtube.com/embed/yB-XQtM5RuA" frameborder="0" allowfullscreen></iframe></p>
<p>The Defusable Clock is a fully-functional alarm clock just like you&#8217;d expect (a normal beeping alarm, snooze alarm, etc.).  But at any time you can press the big red button to start a scary countdown sequence exactly like bombs in Hollywood movies.  There are 4 wires across the top of the clock.  You have 10 seconds to choose the correct wire to cut: one wire stops the countdown and saves the day, two have no effect, and one will &#8220;detonate&#8221; the device immediately.  These role of each wire is randomly assigned when the detonate button is pressed, so it&#8217;s a new challenge every time.  Also, the wires are attached with screw terminals, so you can replace them easily.  If you don&#8217;t want to actually cut the wires, you can just pull them out of the screw terminals if you keep the screws a little loose.</p>
<p>The microcontroller is an ATmega328 with the Arduino bootloader, so this clock is programmable with the Arduino IDE.  The ATmega328 is certainly more powerful than needed for a clock, but this device has lots of inputs/outputs, and ATmega328 chips are now about the same price as the older ATmega168.  It keeps very accurate time and requires a simple 9V &#8220;wall wart&#8221; power adapter.  A special alarm mode lets you even use the countdown sequence as the alarm and require it to be defused when you wake up in the morning.  What a stressful way to start the day!</p>
<p>We are going to offer this as an electronics kit later this fall.  Only the electronics will be in the kit &#8212; nothing that looks like dangerous explosives!  With some imagination, I&#8217;m sure you can make a great looking Defusable Clock for yourself, but don&#8217;t go scaring anyone with it, and don&#8217;t bring it anywhere near an airport, ok?  The product page will have plenty of warnings not to use this kit for any evil purposes or get into trouble with your school, employer, or local law enforcement!  There will also be a picture gallery where you can submit a picture of your clock after you build it.</p>
<p><span class="highlight"><b>UPDATE: the Defusable Clock kit is <a href="http://nootropicdesign.com/defusableclock/">NOW AVAILABLE FOR PURCHASE!</a></b></span></p>
<p>I&#8217;m sure some of you will have some ideas and comments, so please leave them below.  Keep in mind that this is no more dangerous than any other alarm clock, and yes, we have already spoken to a lawyer about all of this.</p>
<p>Here&#8217;s one more version I made using clay for plastic explosives:</p>
<div id="attachment_978" class="wp-caption alignleft" style="width: 650px"><a href="http://nootropicdesign.com/projectlab/wp-content/uploads/2011/10/c4-large.jpg"><img src="http://nootropicdesign.com/projectlab/wp-content/uploads/2011/10/c4-sm.jpg" alt="" title="c4-sm" width="640" height="689" class="size-full wp-image-978" /></a><p class="wp-caption-text">Clay used to simulate C4</p></div>
<p><br clear="all"/></p>
]]></content:encoded>
			<wfw:commentRss>http://nootropicdesign.com/projectlab/2011/09/05/defusable-clock/feed/</wfw:commentRss>
		<slash:comments>60</slash:comments>
		</item>
		<item>
		<title>Visualizing TV Dialog Using Closed Caption Data</title>
		<link>http://nootropicdesign.com/projectlab/2011/07/18/visualizing-tv-dialog/</link>
		<comments>http://nootropicdesign.com/projectlab/2011/07/18/visualizing-tv-dialog/#comments</comments>
		<pubDate>Tue, 19 Jul 2011 00:17:38 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Arduino]]></category>
		<category><![CDATA[Level 8]]></category>
		<category><![CDATA[Processing]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://nootropicdesign.com/projectlab/?p=821</guid>
		<description><![CDATA[Difficulty Level = 8 [What's this?] One of the coolest things you can do with the nootropic design Video Experimenter shield for Arduino is decode the closed caption data embedded in NTSC (North American) television broadcasts. I figured out how to do this and documented it in a another project, so if you want to [...]]]></description>
			<content:encoded><![CDATA[<p><strong><em>Difficulty Level = 8</em></strong>  <a href="/projectlab/difficulty-levels/">[What's this?]</a></p>
<p><a href="http://nootropicdesign.com/projectlab/wp-content/uploads/2011/07/cnnCloud2.png"><img src="http://nootropicdesign.com/projectlab/wp-content/uploads/2011/07/cnnCloud2.png" alt="" title="cnnCloud2" width="640" height="482" class="alignleft size-full wp-image-853" /></a><br />
<br clear="all"/><br />
One of the coolest things you can do with the nootropic design <a href="http://nootropicdesign.com/ve" target="_blank">Video Experimenter shield</a> for Arduino is decode the closed caption data embedded in NTSC (North American) television broadcasts.  I figured out how to do this and <a href="http://nootropicdesign.com/projectlab/2011/03/20/decoding-closed-captioning/" target="_blank">documented it in a another project</a>, so if you want to understand all the details of how to capture and decode closed captions, refer to that project.  With this project, I take it a step further and show how the spoken dialog embedded in a television show can be visualized on a computer in a &#8220;cloud&#8221; of words.  This is the same type of cloud (often called a &#8220;tag cloud&#8221;) that you see on blogs, where the frequency of a particular word is reflected in the size of the word.  More frequent == larger word.</p>
<h3>Hardware Setup</h3>
<p>First, here&#8217;s how the hardware is set up.  It&#8217;s really simple.  The Video Experimenter needs a composite video feed from a TV tuner like a DVR (e.g. Tivo) or VCR.  You can also use a DVD player because DVDs usually have closed captioning data.  The USB cable connects to your computer where you run a <a href="http://processing.org" target="_blank">Processing</a> sketch (program) to visualize the words as they are decoded by the Arduino.  The Processing sketch dynamically builds the TV cloud as the words are extracted from the closed caption stream!<br />
<div id="attachment_820" class="wp-caption alignleft" style="width: 650px"><a href="http://nootropicdesign.com/projectlab/wp-content/uploads/2011/07/tvCloudCircuit.jpg"><img src="http://nootropicdesign.com/projectlab/wp-content/uploads/2011/07/tvCloudCircuit.jpg" alt="" title="tvCloudCircuit" width="640" height="480" class="size-full wp-image-820" /></a><p class="wp-caption-text">Hardware setup</p></div><br />
&nbsp;
<p/>
<h3>Demo Video</h3>
<p>Here&#8217;s a video where I show a TV cloud of spoken dialog being created dynamically.  I superimposed a video of the television broadcast so you can correlate the broadcast with the Processing application, but note that the Processing application doesn&#8217;t acutally display the video.  Words spoken with higher frequency are larger.<br/><br />
<iframe width="640" height="510" src="http://www.youtube.com/embed/s_2zWhPJvW8" frameborder="0" allowfullscreen></iframe></p>
<h3>Example TV Clouds</h3>
<p>I always have noticed that whenever I happen to see a US national news broadcast, all the commercials are for drugs.  I guess only old people watch the news on TV anymore.  Here&#8217;s a TV cloud of the commercials shown during NBC Nightly News.  Can you guess which drugs are being advertised?  Can you guess which maladies they claim to cure?  Look at all those nasty side effects!<br />
<div id="attachment_845" class="wp-caption alignleft" style="width: 650px"><a href="http://nootropicdesign.com/projectlab/wp-content/uploads/2011/07/drugs.png"><img src="http://nootropicdesign.com/projectlab/wp-content/uploads/2011/07/drugs-sm.png" alt="" title="drugs-sm" width="640" height="425" class="size-full wp-image-845" /></a><p class="wp-caption-text">TV cloud made from drug commercials. Click to enlarge.</p></div><br />
&nbsp;
<p/>
<p/>
Here is a TV cloud made while watching a baseball game.  For US readers familiar with baseball, can you guess which teams were playing?  Answer is at the end of this post.<br />
<div id="attachment_839" class="wp-caption alignleft" style="width: 650px"><a href="http://nootropicdesign.com/projectlab/wp-content/uploads/2011/07/baseballTVCloud.png"><img src="http://nootropicdesign.com/projectlab/wp-content/uploads/2011/07/baseballTVCloud-sm.png" alt="" title="baseballTVCloud-sm" width="640" height="401" class="size-full wp-image-839" /></a><p class="wp-caption-text">TV cloud built from part of a baseball game broadcast.  Click to enlarge.</p></div><br />
&nbsp;
<p/>
<h3>The Software</h3>
<p>The Arduino sketch is fairly simple, and for details on how it works, please see the in-depth <a href="http://nootropicdesign.com/projectlab/2011/03/20/decoding-closed-captioning/">article about decoding closed captions</a>.<br/><br />
<a href="http://nootropicdesign.com/ve/downloads/ExtractCaptionWords.zip">Download the Arduino sketch</a></p>
<p>The Processing sketch reads words from the serial line and filters out any word less than 3 letters and some very common words like &#8220;the&#8221;, &#8220;and&#8221;, &#8220;for&#8221;, etc.  This application relies on the very nice <a href="http://opencloud.mcavallo.org/">OpenCloud Java library</a>, so you&#8217;ll need to download that and use it in your Processing environment.  Create this structure in your Processing sketchbook libraries directory: <span class="code">opencloud/library/opencloud.jar</span><br/><br />
<a href="http://nootropicdesign.com/ve/downloads/TVCloud.zip">Download the Processing sketch</a></p>
<h3>Answer</h3>
<p>Answer to the baseball broadcast question: Kansas City Royals vs. Minnesota Twins (go Twins!)</p>
]]></content:encoded>
			<wfw:commentRss>http://nootropicdesign.com/projectlab/2011/07/18/visualizing-tv-dialog/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Video Experimenter on the Seeeduino Mega</title>
		<link>http://nootropicdesign.com/projectlab/2011/07/13/ve-on-the-seeeduino-mega/</link>
		<comments>http://nootropicdesign.com/projectlab/2011/07/13/ve-on-the-seeeduino-mega/#comments</comments>
		<pubDate>Wed, 13 Jul 2011 19:02:53 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Arduino]]></category>
		<category><![CDATA[Level 1]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://nootropicdesign.com/projectlab/?p=794</guid>
		<description><![CDATA[The nootropic design Video Experimenter shield uses some pretty advanced features of the Arduino&#8217;s ATmega328 microcontroller. One downside of this is that you can&#8217;t use the Video Experimenter shield on an Arduino Mega. Why? Well, the designers of the Arduino Mega didn&#8217;t connect a lot of the ATmega1280/ATmega2560 pins to headers on the board so [...]]]></description>
			<content:encoded><![CDATA[<p>The nootropic design <a href="http://nootropicdesign.com/ve" target="_blank">Video Experimenter shield</a> uses some pretty advanced features of the Arduino&#8217;s ATmega328 microcontroller.  One downside of this is that you can&#8217;t use the Video Experimenter shield on an <a href="http://arduino.cc/en/Main/ArduinoBoardMega" target="_blank">Arduino Mega</a>.  Why?  Well, the designers of the Arduino Mega didn&#8217;t connect a lot of the ATmega1280/ATmega2560 pins to headers on the board so that you could use them!  And, as it turns out, the pins with key features utilized by the Video Experimenter are not connected to anything!  </p>
<p>To perform video overlay, the Video Experimenter relies on an input capture pin (to capture the exact time that the pin has changed state).  Even though the ATmega1280/ATmega2560 has 4 input capture pins, none of them are connected!</p>
<p><div id="attachment_799" class="wp-caption alignleft" style="width: 354px"><a href="http://nootropicdesign.com/projectlab/wp-content/uploads/2011/07/megaPins.png"><img src="http://nootropicdesign.com/projectlab/wp-content/uploads/2011/07/megaPins.png" alt="" title="megaPins" width="344" height="258" class="size-full wp-image-799" /></a><p class="wp-caption-text">Important pins not even connected!</p></div><br />
<br clear="all"/><br />
And to capture video images in the Arduino&#8217;s memory, Video Experimenter uses the analog comparator in the chip.  But the AIN0 pin for the analog comparator is not connected!  What were the Arduino Mega designers thinking?</p>
<p>Fortunately, there is the <a href="http://www.seeedstudio.com/depot/seeeduino-mega-p-717.html">Seeeduino Mega</a>.  The guys at <a href="http://www.seeedstudio.com/">Seeed Studio</a> broke out nearly all the pins on the ATmega1280 so that you can use them.  I love the Seeeduino Mega because it provides so many pins on a rather small board.  </p>
<p>Simply make 5 connections with jumper wires and you can use the Video Experimenter on the Seeeduino Mega.  No code changes necessary!</p>
<p><div id="attachment_797" class="wp-caption alignleft" style="width: 650px"><a href="http://nootropicdesign.com/projectlab/wp-content/uploads/2011/07/onSeeeduinoMega.jpg"><img src="http://nootropicdesign.com/projectlab/wp-content/uploads/2011/07/onSeeeduinoMega-sm.jpg" alt="" title="onSeeeduinoMega-sm" width="640" height="480" class="size-full wp-image-797" /></a><p class="wp-caption-text">By connecting 5 jumper wires, you can use the Seeeduino Mega</p></div><br />
&nbsp;<br/><br />
Here are the connections to make:<br/><br />
11 to 9 (white wire in picture above)<br/>7 to 29 on the Seeeduino Mega (yellow wire)<br/>INPUT pin on the Video Experimenter to PE2 on the Seeeduino Mega (green wire)<br/>SYNCOUT pin on the Video Experimenter to PD4 on the Seeeduino Mega (gray wire)<br/>VSYNC pin on the Video Experimenter to 21 on the Seeeduino Mega (brown wire)<br/></p>
<p>Now you can use the Video Experimenter with an Arduino that has a more powerful processor.  It really helps to have 8K of SRAM instead of 2K.  Now you can do text and graphics overlay with higher resolutions, like 192&#215;128.  Have fun!</p>
]]></content:encoded>
			<wfw:commentRss>http://nootropicdesign.com/projectlab/2011/07/13/ve-on-the-seeeduino-mega/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Digit Shield Limited Edition: Blue</title>
		<link>http://nootropicdesign.com/projectlab/2011/07/04/digit-shield-limited-edition-blue/</link>
		<comments>http://nootropicdesign.com/projectlab/2011/07/04/digit-shield-limited-edition-blue/#comments</comments>
		<pubDate>Mon, 04 Jul 2011 13:10:02 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Arduino]]></category>

		<guid isPermaLink="false">http://nootropicdesign.com/projectlab/?p=780</guid>
		<description><![CDATA[Blue Digit Shields are now available as a limited edition. I have only a very small stock of these fully assembled and tested Digit Shields for Arduino. Blue LEDs and LED displays are much more expensive than red and green, but I am able to offer these at the same price as assembled red and [...]]]></description>
			<content:encoded><![CDATA[<p>Blue <a href="http://nootropicdesign.com/digitshield/">Digit Shields</a> are <a href="http://nootropicdesign.com/store/index.php?main_page=product_info&#038;cPath=1&#038;products_id=25">now available</a> as a limited edition.  I have only a very small stock of these fully assembled and tested Digit Shields for Arduino.  Blue LEDs and LED displays are much more expensive than red and green, but I am able to offer these at the same price as assembled red and green Digit Shields.  They are extremely bright and look very cool!  <a href="http://nootropicdesign.com/store/index.php?main_page=product_info&#038;cPath=1&#038;products_id=25">Get one while you can!</a><br />
<div id="attachment_778" class="wp-caption alignleft" style="width: 650px"><a href="http://nootropicdesign.com/projectlab/wp-content/uploads/2011/06/digitShield-blue.jpg"><img src="http://nootropicdesign.com/projectlab/wp-content/uploads/2011/06/digitShield-blue-sm.jpg" alt="" title="digitShield-blue-sm" width="640" height="480" class="size-full wp-image-778" /></a><p class="wp-caption-text">Blue is beautiful.  You may need sunglasses.</p></div></p>
]]></content:encoded>
			<wfw:commentRss>http://nootropicdesign.com/projectlab/2011/07/04/digit-shield-limited-edition-blue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

