<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Deviation's from Boredom</title>
	<atom:link href="http://srcasadei.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://srcasadei.wordpress.com</link>
	<description>User manual not included</description>
	<lastBuildDate>Fri, 29 May 2009 00:31:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='srcasadei.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Deviation's from Boredom</title>
		<link>http://srcasadei.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://srcasadei.wordpress.com/osd.xml" title="Deviation&#039;s from Boredom" />
	<atom:link rel='hub' href='http://srcasadei.wordpress.com/?pushpress=hub'/>
		<item>
		<title>XBee 101</title>
		<link>http://srcasadei.wordpress.com/2009/05/28/xbee-101/</link>
		<comments>http://srcasadei.wordpress.com/2009/05/28/xbee-101/#comments</comments>
		<pubDate>Thu, 28 May 2009 17:58:42 +0000</pubDate>
		<dc:creator>srcasadei</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Arduino]]></category>
		<category><![CDATA[Remote Control]]></category>
		<category><![CDATA[WiiChuck]]></category>
		<category><![CDATA[XBee]]></category>

		<guid isPermaLink="false">http://srcasadei.wordpress.com/?p=74</guid>
		<description><![CDATA[The other day I ordered 2 XBee&#8217;s and XBee Adapter kits from Adafruit. I must say, I&#8217;ve kinda been biding my time until I was able to get a few of these. Having XBee&#8217;s available opens up a whole slew of projects that are able to be modified. I mean come on &#8211; everything is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=srcasadei.wordpress.com&amp;blog=6988009&amp;post=74&amp;subd=srcasadei&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The other day I ordered 2 XBee&#8217;s and XBee Adapter kits from Adafruit. I must say, I&#8217;ve kinda been biding my time until I was able to get a few of these. Having XBee&#8217;s available opens up a whole slew of projects that are able to be modified. I mean come on &#8211; everything is better with wireless communication &#8211; Arduino&#8217;s notwithstanding.</p>
<p>So to test them out in a way that is slightly more interesting than watching characters fly by on the serial monitors &#8211; I threw together this crappy remote control setup.</p>
<p><img class="alignnone size-full wp-image-72" title="XBee Remote" src="http://srcasadei.files.wordpress.com/2009/05/xbee-remote.jpg?w=700&#038;h=525" alt="XBee Remote" width="700" height="525" /><br />
<span id="more-74"></span><br />
On the transmitter side I have an Arduino Duemilanove with a ProtoShield containing the transmitting XBee and WiiChuck adapter (obviously so that I can interface easily with a Wii Nunchuck).</p>
<p><img class="alignnone size-full wp-image-73" title="XBee Bot" src="http://srcasadei.files.wordpress.com/2009/05/xbee-bot.jpg?w=700&#038;h=525" alt="XBee Bot" width="700" height="525" /></p>
<p>On the receiving side I have a simple breadboard based robot &#8211; inspired from the Braitenberg vehicle that can be found on the blog <a href="http://tinkerlog.com/2009/04/18/arduino-powered-braitenberg-vehicle/">Tinkerlog</a>. The bot uses a <a href="http://dorkbotpdx.org/wiki/dorkboard">Dorkboard</a> as a brain (I prefer to use the Dorkboard over Adafruit&#8217;s DC Boarduino in cases not requiring a voltage regulator &#8211; as it takes up far less space). In addition to the receiving XBee.</p>
<div style='text-align:center;'>
<object type="application/x-shockwave-flash" width="400" height="300" data="http://www.vimeo.com/moogaloop.swf?clip_id=4886537&amp;server=www.vimeo.com&amp;fullscreen=1&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=01AAEA">
	<param name="quality" value="best" />
	<param name="allowfullscreen" value="true" />
	<param name="scale" value="showAll" />
	<param name="movie" value="http://www.vimeo.com/moogaloop.swf?clip_id=4886537&amp;server=www.vimeo.com&amp;fullscreen=1&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=01AAEA" />
	<param name="wmode" value="opaque" />
</object>
</div>
<p><strong>Here is the code that I used for the transmitter:</strong></p>
<pre class="brush: jscript;">

//Quick and dirty XBee remote program
//For use with Wii Nunchuck adapter

#include &quot;Wire.h&quot;
#include &quot;WiiChuck.h&quot;
#include &lt;NewSoftSerial.h&gt;

NewSoftSerial XBee =  NewSoftSerial(2, 3);
WiiChuck chuck = WiiChuck();

void setup() {

  XBee.begin(9600);

  chuck.begin();
  chuck.update();
  chuck.calibrateJoy();
}

void loop() {
  delay(20);
  chuck.update();

  //Right and Left Joystick signals
  if (chuck.readJoyX() &lt; -200)
    XBee.print('L');
  if (chuck.readJoyX() &gt; -40)
    XBee.print('R');

  //Forward and Backward Joystick signals
  if (chuck.readJoyY() &lt; -200)
    XBee.print('B');
  if (chuck.readJoyY() &gt; -40)
    XBee.print('F');

  //Hold (stop) Joystick signal
  if (chuck.readJoyY() &lt; -40 &amp;&amp; chuck.readJoyY() &gt; -200 &amp;&amp; chuck.readJoyX() &lt; -40 &amp;&amp; chuck.readJoyX() &gt; -200)
    XBee.print('H');

}
</pre>
<p><strong>And here is the code for the receiver:</strong></p>
<pre class="brush: jscript;">

//Simple code to drive a &quot;RC&quot; bot using a couple of XBee's
//Code listed is intended for the receiver

#include &lt;NewSoftSerial.h&gt;
#include &lt;Servo.h&gt; 

NewSoftSerial XBee =  NewSoftSerial(2, 3);

Servo myservo1;
Servo myservo2; 

char instruction;

void setup() {

  XBee.begin(9600);

  myservo1.attach(9);
  myservo2.attach(10);
}

void loop()
{ 

  instruction = XBee.read();

  if (instruction == 'F'){
    myservo1.write(180);
    myservo2.write(0);
  }

  if (instruction == 'B'){
    myservo1.write(0);
    myservo2.write(180);
  } 

  if (instruction == 'R'){
    myservo1.write(180);
    myservo2.write(180);
  }

  if (instruction == 'L'){
    myservo1.write(0);
    myservo2.write(0);
  }

  if (instruction == 'H'){
    myservo1.write(90);
    myservo2.write(90);
  }

}
</pre>
<p><strong>In order to run these example programs you must have the NewSoftSerial and WiiChuck libraries!! </strong></p>
<p>Both can be found on the <a href="http://arduino.cc">Arduino</a> website!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/srcasadei.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/srcasadei.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/srcasadei.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/srcasadei.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/srcasadei.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/srcasadei.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/srcasadei.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/srcasadei.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/srcasadei.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/srcasadei.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/srcasadei.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/srcasadei.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/srcasadei.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/srcasadei.wordpress.com/74/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=srcasadei.wordpress.com&amp;blog=6988009&amp;post=74&amp;subd=srcasadei&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://srcasadei.wordpress.com/2009/05/28/xbee-101/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/164a31fc4c53330e7c7d4eb6d7b8589b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">srcasadei</media:title>
		</media:content>

		<media:content url="http://srcasadei.files.wordpress.com/2009/05/xbee-remote.jpg" medium="image">
			<media:title type="html">XBee Remote</media:title>
		</media:content>

		<media:content url="http://srcasadei.files.wordpress.com/2009/05/xbee-bot.jpg" medium="image">
			<media:title type="html">XBee Bot</media:title>
		</media:content>
	</item>
		<item>
		<title>WiShield &#8211; licious!</title>
		<link>http://srcasadei.wordpress.com/2009/05/24/wishield-licious/</link>
		<comments>http://srcasadei.wordpress.com/2009/05/24/wishield-licious/#comments</comments>
		<pubDate>Sun, 24 May 2009 20:22:11 +0000</pubDate>
		<dc:creator>srcasadei</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Arduino]]></category>
		<category><![CDATA[Wireless]]></category>
		<category><![CDATA[WiShield]]></category>

		<guid isPermaLink="false">http://srcasadei.wordpress.com/?p=60</guid>
		<description><![CDATA[The Arduino has had internet connectivity for a while now. However, as much as everyone wants it &#8211; a cheap wireless option has not been viable (there have been a few options &#8211; most being in the $250.00 range). Until NOW! Async Labs &#8211; a new start up based out of California has stepped up [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=srcasadei.wordpress.com&amp;blog=6988009&amp;post=60&amp;subd=srcasadei&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The Arduino has had internet connectivity for a while now. However, as much as everyone wants it &#8211; a cheap wireless option has not been viable (there have been a few options &#8211; most being in the $250.00 range).</p>
<p>Until NOW! <a href="http://asynclabs.com/">Async Labs</a> &#8211; a new start up based out of California has stepped up and filled the gap that everyone else has left with the WiShield.</p>
<p><img src="http://srcasadei.files.wordpress.com/2009/05/wishield.jpg?w=700&#038;h=525" alt="WiShield" title="WiShield" width="700" height="525" class="alignnone size-full wp-image-52" /></p>
<p>The software is currently under development and so far only functions as a host. The guys at Async are busy working with the Arduino community to add much more functionality to the shield, as well as refine its stability. </p>
<p>Personally I have had great success with the shield. It has worked reliably for days without hanging or disconnecting with the access point that I have it attached to. </p>
<p>Below is a screen shot of an example sketch to control 2 LED&#8217;s attached to the Arduino.</p>
<p><img src="http://srcasadei.files.wordpress.com/2009/05/led-control.jpg?w=606&#038;h=444" alt="LED Control" title="LED Control" width="606" height="444" class="alignnone size-full wp-image-56" /></p>
<p>If there is anyone out there who has been looking for a wireless solution for their Arduino &#8211; the WiShield costs $55.00 and supports WEP, WPA, and WPA2 encryption. It can also function in infrastructure mode (connect to a wireless network) or in adhoc mode (broadcast its own wireless network)!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/srcasadei.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/srcasadei.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/srcasadei.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/srcasadei.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/srcasadei.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/srcasadei.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/srcasadei.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/srcasadei.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/srcasadei.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/srcasadei.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/srcasadei.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/srcasadei.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/srcasadei.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/srcasadei.wordpress.com/60/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=srcasadei.wordpress.com&amp;blog=6988009&amp;post=60&amp;subd=srcasadei&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://srcasadei.wordpress.com/2009/05/24/wishield-licious/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/164a31fc4c53330e7c7d4eb6d7b8589b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">srcasadei</media:title>
		</media:content>

		<media:content url="http://srcasadei.files.wordpress.com/2009/05/wishield.jpg" medium="image">
			<media:title type="html">WiShield</media:title>
		</media:content>

		<media:content url="http://srcasadei.files.wordpress.com/2009/05/led-control.jpg" medium="image">
			<media:title type="html">LED Control</media:title>
		</media:content>
	</item>
		<item>
		<title>Asus really nailed it.</title>
		<link>http://srcasadei.wordpress.com/2009/05/03/asus-eee/</link>
		<comments>http://srcasadei.wordpress.com/2009/05/03/asus-eee/#comments</comments>
		<pubDate>Sun, 03 May 2009 03:10:10 +0000</pubDate>
		<dc:creator>srcasadei</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[1000HE]]></category>
		<category><![CDATA[Asus]]></category>
		<category><![CDATA[Eee]]></category>
		<category><![CDATA[Review]]></category>

		<guid isPermaLink="false">http://srcasadei.wordpress.com/?p=40</guid>
		<description><![CDATA[So, a couple of weeks ago I jumped on the netbook bandwagon. I have to wonder weather my 10&#8243; Eee pc can really be considered a netbook &#8211; seeing as how the screen is bordering on the ultralight side of the notebook spectrum&#8230; BUT, it is an Eee pc so I guess I have to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=srcasadei.wordpress.com&amp;blog=6988009&amp;post=40&amp;subd=srcasadei&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So, a couple of weeks ago I jumped on the netbook bandwagon. I have to wonder weather my 10&#8243; Eee pc can really be considered a netbook &#8211; seeing as how the screen is bordering on the ultralight side of the notebook spectrum&#8230; BUT, it is an Eee pc so I guess I have to label it a netbook.<br />
<img src="http://srcasadei.files.wordpress.com/2009/05/eee1.jpg?w=700&#038;h=525" alt="eee1" title="eee1" width="700" height="525" class="alignnone size-full wp-image-41" /></p>
<p><span id="more-40"></span>The exact model that I purcased is the 1000HE. According to Asus, the 1000 stands for 10&#8243;, the &#8220;H&#8221; stands for HDD instead of SSD, and the &#8220;E&#8221; stands for Extended battery life. This is also the first model to have a newly revamped keyboard &#8211; which is &#8220;chiclet&#8221; style &#8211; I dont really know what that means, but the keyboard is similar to the new Apple standalone, and the Apple macbook keyboards.</p>
<p>I have to admit &#8211; the keyboard is actually very comfortable to type on. There is a minor amout of flex on the keyboard itself, but it is very manageable. I myself have never typed on a subsize keyboard, but I found that I adjusted to this keyboard very easily.</p>
<p><img src="http://srcasadei.files.wordpress.com/2009/05/eee2.jpg?w=700&#038;h=525" alt="eee2" title="eee1" width="700" height="525" class="alignnone size-full wp-image-41" /></p>
<p>As for the extended battery life &#8211; Asus advertises 9.5 hours of battery life for &#8220;All day computing&#8221;. However, we all know that the advertised battery life for notebooks is complete B.S. &#8211; and should be take with a few grains of salt. For real world benchmarks most reviewers find they get around 6 &#8211; 7 hours, and I can now corroborate these real world numbers.</p>
<p>I found that running the Eee pc with wifi enabled, browsing the web, and watching the occasional video ran me down to about 6.5 hours on the battery.</p>
<p>The battery does stick out a bit from the bottom of the chassis, however, it is nothing that would cause any discomfort while typing, or while holding the netbook in your hand. I myself always disapproved of a battery sticking out, as I thought it was aesthetically displeasing. Even so, Asus managed to win me over by incorperating this battery in a design that didnt make me want to throw up.</p>
<p>This computer came with 2 separate partitions pre-made on the HDD. This makes it INCREDIBLY easy to install a second OS on this netbook, and just goes to show that Asus knows exactly what its customers want.</p>
<p>Overall, I give this netbook a 9/10, only because it seems to have a bit of trouble playing hulu videos. Though lack of video power is a downfall for all netbooks including the 1000HE. I would recommend this netbook over any of the others &#8211; if you need a computer dedicated to mobility &#8211; this is the one.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/srcasadei.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/srcasadei.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/srcasadei.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/srcasadei.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/srcasadei.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/srcasadei.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/srcasadei.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/srcasadei.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/srcasadei.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/srcasadei.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/srcasadei.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/srcasadei.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/srcasadei.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/srcasadei.wordpress.com/40/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=srcasadei.wordpress.com&amp;blog=6988009&amp;post=40&amp;subd=srcasadei&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://srcasadei.wordpress.com/2009/05/03/asus-eee/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/164a31fc4c53330e7c7d4eb6d7b8589b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">srcasadei</media:title>
		</media:content>

		<media:content url="http://srcasadei.files.wordpress.com/2009/05/eee1.jpg" medium="image">
			<media:title type="html">eee1</media:title>
		</media:content>

		<media:content url="http://srcasadei.files.wordpress.com/2009/05/eee2.jpg" medium="image">
			<media:title type="html">eee1</media:title>
		</media:content>
	</item>
		<item>
		<title>I actually don&#8217;t like the candy&#8230;</title>
		<link>http://srcasadei.wordpress.com/2009/04/11/i-actually-dont-like-the-candy/</link>
		<comments>http://srcasadei.wordpress.com/2009/04/11/i-actually-dont-like-the-candy/#comments</comments>
		<pubDate>Sat, 11 Apr 2009 04:12:10 +0000</pubDate>
		<dc:creator>srcasadei</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Adafruit]]></category>
		<category><![CDATA[Altoids]]></category>
		<category><![CDATA[Electroincs]]></category>

		<guid isPermaLink="false">http://srcasadei.wordpress.com/?p=37</guid>
		<description><![CDATA[I don&#8217;t know about everyone else &#8211; but any electronic project that I find and is able to fit inside an Altoids tin gets +5 awesome points in my book. My two favorite projects are the Mintyboost (another awesome project from Adafruit Industries), and the Altoids Tin Speaker from Instructables user Matth3w. For those of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=srcasadei.wordpress.com&amp;blog=6988009&amp;post=37&amp;subd=srcasadei&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t know about everyone else &#8211; but any electronic project that I find and is able to fit inside an Altoids tin gets +5 awesome points in my book.</p>
<p><img title="Mintyboost and Speaker" src="http://srcasadei.files.wordpress.com/2009/04/mintyspeaker.jpg?w=700&#038;h=525" alt="Mintyboost and Speaker" width="700" height="525" class="alignnone size-full wp-image-41" /></p>
<p>My two favorite projects are the Mintyboost (another awesome project from Adafruit Industries), and the Altoids Tin Speaker from <a href="http://www.instructables.com/id/Altoids-Tin-Speaker/">Instructables user Matth3w</a>.</p>
<p><img title="Minty Speaker Open" src="http://srcasadei.files.wordpress.com/2009/04/open.jpg?w=700&#038;h=525" alt="Minty Speaker Open" width="700" height="525" class="alignnone size-full wp-image-41" /></p>
<p>For those of you who don&#8217;t know: the Mintyboost is an awesome USB device charger that runs off of two AA batteries &#8211; It works great &#8211; and looks great too!!</p>
<p>Also, if you were wondering &#8211; the Altoids Speaker is an awesome accessory for anyone who has a 1st gen iPod touch &#8211; or any other audio device. The speaker is sufficiently loud, even on the default gain settings. Not to mention that it doesn&#8217;t sound half bad!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/srcasadei.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/srcasadei.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/srcasadei.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/srcasadei.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/srcasadei.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/srcasadei.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/srcasadei.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/srcasadei.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/srcasadei.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/srcasadei.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/srcasadei.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/srcasadei.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/srcasadei.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/srcasadei.wordpress.com/37/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=srcasadei.wordpress.com&amp;blog=6988009&amp;post=37&amp;subd=srcasadei&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://srcasadei.wordpress.com/2009/04/11/i-actually-dont-like-the-candy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/164a31fc4c53330e7c7d4eb6d7b8589b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">srcasadei</media:title>
		</media:content>

		<media:content url="http://srcasadei.files.wordpress.com/2009/04/mintyspeaker.jpg" medium="image">
			<media:title type="html">Mintyboost and Speaker</media:title>
		</media:content>

		<media:content url="http://srcasadei.files.wordpress.com/2009/04/open.jpg" medium="image">
			<media:title type="html">Minty Speaker Open</media:title>
		</media:content>
	</item>
		<item>
		<title>RFID Locker</title>
		<link>http://srcasadei.wordpress.com/2009/04/07/rfid-locker/</link>
		<comments>http://srcasadei.wordpress.com/2009/04/07/rfid-locker/#comments</comments>
		<pubDate>Tue, 07 Apr 2009 06:47:30 +0000</pubDate>
		<dc:creator>srcasadei</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Arduino]]></category>
		<category><![CDATA[RFID]]></category>

		<guid isPermaLink="false">http://srcasadei.wordpress.com/2009/04/07/hello-world/</guid>
		<description><![CDATA[So, I had this old Lions locker that was collecting dust (I got it for Christmas when I was 9). I also happened to have all the parts that I needed to turn this into an RFID safe. AND since I wasn&#8217;t too keen on tearing apart the molding around any of the real doors [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=srcasadei.wordpress.com&amp;blog=6988009&amp;post=5&amp;subd=srcasadei&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img title="locker" src="http://srcasadei.files.wordpress.com/2009/04/locker.jpg?w=700&#038;h=525" alt="locker" width="700" height="525" class="alignnone size-full wp-image-41" /></p>
<p>So, I had this old Lions locker that was collecting dust (I got it for Christmas when I was 9). I also happened to have all the parts that I needed to turn this into an RFID safe. AND since I wasn&#8217;t too keen on tearing apart the molding around any of the real doors I had access to &#8211; I decided to turn this into my next project.</p>
<p><span id="more-5"></span></p>
<p><img title="rfid" src="http://srcasadei.files.wordpress.com/2009/04/rfid.jpg?w=700&#038;h=525" alt="rfid" width="700" height="525" class="alignnone size-full wp-image-41" /></p>
<p>I ended up using the parallax RFID reader that I had laying around in order to identify whoever was going to access the safe. The reader isn&#8217;t the greatest peice of electronics that I&#8217;ve used, but it was relatively cheap and readily available.</p>
<p><img title="lock" src="http://srcasadei.files.wordpress.com/2009/04/lock.jpg?w=700&#038;h=525" alt="lock" width="700" height="525" class="alignnone size-full wp-image-41" /></p>
<p>The locking mechanism is made up of a cheap $5 sliding bolt that I got at my local Lowes. Actually &#8211; the servo is also a a relatively inexpensive piece, seeing as it is a cheap hobby servo that I bought for $10 from sparkfun.com.</p>
<p>I used a boarduino (Arduino clone) from Adafruit Industries in order to drive the servo and Parallax RFID.</p>
<p>Here&#8217;s the code I used:</p>
<p><code><br />
#include &lt;Servo.h&gt;</p>
<p>int state = 1;</p>
<p>int  val = 0;<br />
char code[10];<br />
int bytesread = 0;<br />
int ledRed = 6;<br />
int ledGreen = 7;</p>
<p>Servo myservo;</p>
<p>void setup() {</p>
<p>Serial.begin(2400); // RFID reader SOUT pin connected to Serial RX pin at 2400bps<br />
pinMode(4,OUTPUT);   // Set digital pin 2 as OUTPUT to connect it to the RFID /ENABLE pin<br />
pinMode(ledRed,OUTPUT);   // Set digital pin 13 as OUTPUT to confirm correct RFID badge<br />
pinMode(ledGreen,OUTPUT);</p>
<p>myservo.attach(9);<br />
myservo.write(1);</p>
<p>digitalWrite(4, LOW);                  // Activate the RFID reader<br />
}</p>
<p>void loop() {<br />
digitalWrite(4, LOW);<br />
if(Serial.available() &gt; 0) {          // if data available from reader<br />
if((val = Serial.read()) == 10) {   // check for header<br />
bytesread = 0;<br />
while(bytesread 0) {<br />
val = Serial.read();<br />
if((val == 10)||(val == 13)) { // if header or stop bytes before the 10 digit reading<br />
break;                       // stop reading<br />
}<br />
code[bytesread] = val;         // add the digit<br />
bytesread++;                   // ready to read next digit<br />
}<br />
}</p>
<p>Serial.print(code);</p>
<p>validateRFID(code);</p>
<p>bytesread = 0;<br />
delay(500);                       // wait for a second<br />
}<br />
}<br />
}</p>
<p>void validateRFID(char* i) {<br />
digitalWrite(4, HIGH);<br />
if(strncmp(i,"0F03042D62", 10) == 0) {<br />
if (state == 0){<br />
myservo.write(1);<br />
digitalWrite(ledRed, HIGH);<br />
state = 1;<br />
delay(5000);<br />
digitalWrite(ledRed, LOW);<br />
}<br />
else if (state == 1){<br />
myservo.write(65);<br />
digitalWrite(ledGreen, HIGH);<br />
state = 0;<br />
delay(5000);<br />
digitalWrite(ledGreen, LOW);<br />
}<br />
}<br />
else{<br />
digitalWrite(ledRed, HIGH);<br />
delay(2000);<br />
digitalWrite(ledRed, LOW);<br />
}</p>
<p>}<br />
</code><br />
I can&#8217;t take complete credit for this code &#8211; some of it is remnant from the example RFID code that can be found on the Arduino playground.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/srcasadei.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/srcasadei.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/srcasadei.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/srcasadei.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/srcasadei.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/srcasadei.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/srcasadei.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/srcasadei.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/srcasadei.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/srcasadei.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/srcasadei.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/srcasadei.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/srcasadei.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/srcasadei.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=srcasadei.wordpress.com&amp;blog=6988009&amp;post=5&amp;subd=srcasadei&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://srcasadei.wordpress.com/2009/04/07/rfid-locker/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/164a31fc4c53330e7c7d4eb6d7b8589b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">srcasadei</media:title>
		</media:content>

		<media:content url="http://srcasadei.files.wordpress.com/2009/04/locker.jpg?w=300" medium="image">
			<media:title type="html">locker</media:title>
		</media:content>

		<media:content url="http://srcasadei.files.wordpress.com/2009/04/rfid.jpg?w=300" medium="image">
			<media:title type="html">rfid</media:title>
		</media:content>

		<media:content url="http://srcasadei.files.wordpress.com/2009/04/lock.jpg?w=300" medium="image">
			<media:title type="html">lock</media:title>
		</media:content>
	</item>
	</channel>
</rss>
