<?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>Physical Computing Blog</title>
	<atom:link href="http://dxd6596.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://dxd6596.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Thu, 21 May 2009 20:46:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='dxd6596.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/c685af2687c4c0479947a45fe5f7ba39?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Physical Computing Blog</title>
		<link>http://dxd6596.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://dxd6596.wordpress.com/osd.xml" title="Physical Computing Blog" />
	<atom:link rel='hub' href='http://dxd6596.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Final Project &#8211; Pixel Bend</title>
		<link>http://dxd6596.wordpress.com/2009/05/21/final-project-pixel-bend/</link>
		<comments>http://dxd6596.wordpress.com/2009/05/21/final-project-pixel-bend/#comments</comments>
		<pubDate>Thu, 21 May 2009 20:34:46 +0000</pubDate>
		<dc:creator>dxd6596</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://dxd6596.wordpress.com/?p=41</guid>
		<description><![CDATA[For our final project, we were required to create something that was interactive and used serial communication with either a computer or another Arduino! So we decided to use the servo motors to make cars that could be controlled with a throttle, utilizing a potentiometer for stop and go. All of that would work off [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dxd6596.wordpress.com&amp;blog=7196231&amp;post=41&amp;subd=dxd6596&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>For our final project, we were required to create something that was interactive and used serial communication with either a computer or another Arduino!</p>
<p>So we decided to use the servo motors to make cars that could be controlled with a throttle, utilizing a potentiometer for stop and go.  All of that would work off of one Arduino, mean while we created a topiary/stop-light-like</p>
<p>Schematics and more coming soon&#8230; Once it is emailed to me!</p>
<p>Well I intended for there to be a video&#8230;but, apparently I did not record the video right!</p>
<p>Here is the code for the portion that I worked on&#8230; The topiary street light!</p>
<p>boolean isStop;</p>
<p>unsigned int time;</p>
<p>unsigned int lastTimeRed;</p>
<p>unsigned int lastTimeLEDOn;</p>
<p>int lastLEDOn;</p>
<p>int pinArray[] = {0, 2, 3, 4};</p>
<p>int timeRand = 1000;<br />
int timeRandRed = 1000;</p>
<p>void setup() {<br />
  isStop = false;<br />
  time = millis();<br />
  lastTimeRed = time;<br />
  lastLEDOn = 1;</p>
<p>  lightLED(1);</p>
<p>  for(int a = 1; a timeRand) {<br />
      isStop = true;<br />
      lightLED(2);<br />
    }<br />
  } else {<br />
    if((time-lastTimeLEDOn) &gt; 1000) {<br />
     if(lastLEDOn == 2) {<br />
       Serial.print(1, DEC);<br />
      // Serial.print(&#8220;ONE   &#8220;);<br />
       lightLED(3);<br />
       lastTimeRed = time;<br />
       //Serial.println(&#8220;red&#8221;);<br />
     } else if(lastLEDOn == 3 &amp;&amp; (time-lastTimeLEDOn) &gt; timeRandRed) {<br />
       lightLED(1);<br />
       Serial.print(2, DEC);<br />
       isStop = false;<br />
       lastTimeRed = time;<br />
       randomSeed(time);<br />
       timeRand = random(5000, 10000);<br />
       timeRandRed = random(3000, 7000);<br />
       //Serial.println(&#8220;GREEN!!&#8221;);<br />
     }<br />
    }<br />
  }<br />
}</p>
<p>void lightLED(int color) {<br />
  int prevLED = color-1;<br />
  if(prevLED &lt; 1) {<br />
    prevLED = 3;<br />
  }</p>
<p>  lastLEDOn = color;<br />
  lastTimeLEDOn = millis();</p>
<p>  digitalWrite(pinArray[color], HIGH);<br />
  digitalWrite(pinArray[prevLED], LOW);<br />
  //Serial.print(color, DEC);<br />
  //Serial.print(&quot; prev &quot;);<br />
  //Serial.println(prevLED, DEC);</p>
<p>}</p>

<a href='http://dxd6596.wordpress.com/2009/05/21/final-project-pixel-bend/crosssectioncomplete/' title='crossSectionComplete'><img width="150" height="60" src="http://dxd6596.files.wordpress.com/2009/05/crosssectioncomplete.jpg?w=150&#038;h=60" class="attachment-thumbnail" alt="crossSectionComplete" title="crossSectionComplete" /></a>
<a href='http://dxd6596.wordpress.com/2009/05/21/final-project-pixel-bend/crosssectionnopot/' title='crossSectionNoPot'><img width="150" height="60" src="http://dxd6596.files.wordpress.com/2009/05/crosssectionnopot.jpg?w=150&#038;h=60" class="attachment-thumbnail" alt="crossSectionNoPot" title="crossSectionNoPot" /></a>
<a href='http://dxd6596.wordpress.com/2009/05/21/final-project-pixel-bend/crosssectionnopotcap/' title='crossSectionNoPotCap'><img width="150" height="60" src="http://dxd6596.files.wordpress.com/2009/05/crosssectionnopotcap.jpg?w=150&#038;h=60" class="attachment-thumbnail" alt="crossSectionNoPotCap" title="crossSectionNoPotCap" /></a>
<a href='http://dxd6596.wordpress.com/2009/05/21/final-project-pixel-bend/crosssectionnopotchoker/' title='crossSectionNoPotChoker'><img width="150" height="60" src="http://dxd6596.files.wordpress.com/2009/05/crosssectionnopotchoker.jpg?w=150&#038;h=60" class="attachment-thumbnail" alt="crossSectionNoPotChoker" title="crossSectionNoPotChoker" /></a>
<a href='http://dxd6596.wordpress.com/2009/05/21/final-project-pixel-bend/crosssectionnopotchokerwrubberband/' title='crossSectionNoPotChokerWRubberBand'><img width="150" height="60" src="http://dxd6596.files.wordpress.com/2009/05/crosssectionnopotchokerwrubberband.jpg?w=150&#038;h=60" class="attachment-thumbnail" alt="crossSectionNoPotChokerWRubberBand" title="crossSectionNoPotChokerWRubberBand" /></a>
<a href='http://dxd6596.wordpress.com/2009/05/21/final-project-pixel-bend/crosssectionnopothandlecap/' title='crossSectionNoPotHandleCap'><img width="150" height="60" src="http://dxd6596.files.wordpress.com/2009/05/crosssectionnopothandlecap.jpg?w=150&#038;h=60" class="attachment-thumbnail" alt="crossSectionNoPotHandleCap" title="crossSectionNoPotHandleCap" /></a>
<a href='http://dxd6596.wordpress.com/2009/05/21/final-project-pixel-bend/crosssectionnorubberband/' title='crossSectionNoRubberBand'><img width="150" height="60" src="http://dxd6596.files.wordpress.com/2009/05/crosssectionnorubberband.jpg?w=150&#038;h=60" class="attachment-thumbnail" alt="crossSectionNoRubberBand" title="crossSectionNoRubberBand" /></a>
<a href='http://dxd6596.wordpress.com/2009/05/21/final-project-pixel-bend/crosssectionrotspring/' title='crosssectionRotSpring'><img width="150" height="147" src="http://dxd6596.files.wordpress.com/2009/05/crosssectionrotspring.jpg?w=150&#038;h=147" class="attachment-thumbnail" alt="crosssectionRotSpring" title="crosssectionRotSpring" /></a>
<a href='http://dxd6596.wordpress.com/2009/05/21/final-project-pixel-bend/schematic/' title='schematic'><img width="108" height="150" src="http://dxd6596.files.wordpress.com/2009/05/schematic.jpg?w=108&#038;h=150" class="attachment-thumbnail" alt="schematic" title="schematic" /></a>

<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dxd6596.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dxd6596.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dxd6596.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dxd6596.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dxd6596.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dxd6596.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dxd6596.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dxd6596.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dxd6596.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dxd6596.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dxd6596.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dxd6596.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dxd6596.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dxd6596.wordpress.com/41/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dxd6596.wordpress.com&amp;blog=7196231&amp;post=41&amp;subd=dxd6596&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dxd6596.wordpress.com/2009/05/21/final-project-pixel-bend/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/960c49a73997bf095bb80ec18be7b0bb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dxd6596</media:title>
		</media:content>
	</item>
		<item>
		<title>Project 3 &#8211; Move</title>
		<link>http://dxd6596.wordpress.com/2009/04/28/project-3-move/</link>
		<comments>http://dxd6596.wordpress.com/2009/04/28/project-3-move/#comments</comments>
		<pubDate>Tue, 28 Apr 2009 23:21:34 +0000</pubDate>
		<dc:creator>dxd6596</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://dxd6596.wordpress.com/?p=29</guid>
		<description><![CDATA[&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; .: Code :. int motorPin = 10; int potPin = 2; void setup() { pinMode(motorPin, OUTPUT); Serial.begin(9600); } void loop() { int val = analogRead(potPin); val = map(val, 0, 1023, 0, 254); Serial.println(val); analogWrite(motorPin, val); } //put whatever in pin 10 and a pot in pin 2 and you should be able to control [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dxd6596.wordpress.com&amp;blog=7196231&amp;post=29&amp;subd=dxd6596&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[
<a href='http://dxd6596.wordpress.com/2009/04/28/project-3-move/cimg1201/' title='cimg1201'><img width="150" height="112" src="http://dxd6596.files.wordpress.com/2009/04/cimg1201.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="cimg1201" title="cimg1201" /></a>
<a href='http://dxd6596.wordpress.com/2009/04/28/project-3-move/cimg1202/' title='cimg1202'><img width="150" height="112" src="http://dxd6596.files.wordpress.com/2009/04/cimg1202.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="cimg1202" title="cimg1202" /></a>
<a href='http://dxd6596.wordpress.com/2009/04/28/project-3-move/cimg1204/' title='cimg1204'><img width="150" height="112" src="http://dxd6596.files.wordpress.com/2009/04/cimg1204.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="cimg1204" title="cimg1204" /></a>

<span style="text-align:center; display: block;"><a href="http://dxd6596.wordpress.com/2009/04/28/project-3-move/"><img src="http://img.youtube.com/vi/ZsddKJ-tid8/2.jpg" alt="" /></a></span>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
.: Code :.</p>
<p>int motorPin = 10;<br />
int potPin = 2;</p>
<p>void setup() {<br />
  pinMode(motorPin, OUTPUT);<br />
  Serial.begin(9600);<br />
}</p>
<p>void loop() {<br />
  int val = analogRead(potPin);<br />
  val = map(val, 0, 1023, 0, 254);</p>
<p>  Serial.println(val);</p>
<p>  analogWrite(motorPin, val);<br />
}</p>
<p>//put whatever in pin 10 and a pot in pin 2 and you should be able to control it with the pot, or whatever. let me know if you have questions.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dxd6596.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dxd6596.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dxd6596.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dxd6596.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dxd6596.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dxd6596.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dxd6596.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dxd6596.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dxd6596.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dxd6596.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dxd6596.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dxd6596.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dxd6596.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dxd6596.wordpress.com/29/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dxd6596.wordpress.com&amp;blog=7196231&amp;post=29&amp;subd=dxd6596&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dxd6596.wordpress.com/2009/04/28/project-3-move/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/960c49a73997bf095bb80ec18be7b0bb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dxd6596</media:title>
		</media:content>
	</item>
		<item>
		<title>Project 2 &#8211; Project Runway</title>
		<link>http://dxd6596.wordpress.com/2009/04/14/project-runway/</link>
		<comments>http://dxd6596.wordpress.com/2009/04/14/project-runway/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 03:08:56 +0000</pubDate>
		<dc:creator>dxd6596</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://dxd6596.wordpress.com/?p=16</guid>
		<description><![CDATA[So for the second project I had this fantastic idea to create a DDR like game using fingers. Essentially, the user would put on a pair of gloves, that would have sensors in the finger tips and five LEDs running down each finger to the tip. The LEDs would light up, in a &#8220;chasing light&#8221; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dxd6596.wordpress.com&amp;blog=7196231&amp;post=16&amp;subd=dxd6596&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So for the second project I had this fantastic idea to create a DDR like game using fingers.  Essentially, the user would put on a pair of gloves, that would have sensors in the finger tips and five LEDs running down each finger to the tip.  The LEDs would light up, in a &#8220;chasing light&#8221; pattern and indicate what the next finger to tap would be.  Well after attempting to solder the LEDs and resisters together and attaching it to a glove, it did not look very good.  So in light of what we were able to accomplish, it has been decided that we would continue with the project and finish it, but some serious changes would have to be made, regarding where the LEDs will be.  We were able to attach a button sensor to a row of LEDs and when pressed will reset the lights.  </p>

<a href='http://dxd6596.wordpress.com/2009/04/14/project-runway/img_1518/' title='Project Runway'><img width="150" height="100" src="http://dxd6596.files.wordpress.com/2009/04/img_1518.jpg?w=150&#038;h=100" class="attachment-thumbnail" alt="Project Runway" title="Project Runway" /></a>
<a href='http://dxd6596.wordpress.com/2009/04/14/project-runway/img_1520/' title='Project Runway'><img width="150" height="100" src="http://dxd6596.files.wordpress.com/2009/04/img_1520.jpg?w=150&#038;h=100" class="attachment-thumbnail" alt="Project Runway" title="Project Runway" /></a>
<a href='http://dxd6596.wordpress.com/2009/04/14/project-runway/img_1521/' title='Project Runway'><img width="150" height="100" src="http://dxd6596.files.wordpress.com/2009/04/img_1521.jpg?w=150&#038;h=100" class="attachment-thumbnail" alt="Project Runway" title="Project Runway" /></a>
<a href='http://dxd6596.wordpress.com/2009/04/14/project-runway/img_1523/' title='Project Runway'><img width="150" height="100" src="http://dxd6596.files.wordpress.com/2009/04/img_1523.jpg?w=150&#038;h=100" class="attachment-thumbnail" alt="Project Runway" title="Project Runway" /></a>
<a href='http://dxd6596.wordpress.com/2009/04/14/project-runway/schematic/' title='schematic'><img width="150" height="127" src="http://dxd6596.files.wordpress.com/2009/04/schematic.jpg?w=150&#038;h=127" class="attachment-thumbnail" alt="schematic" title="schematic" /></a>

<p><strong>:: CODE ::</strong><br />
/*<br />
 * Blink<br />
 *<br />
 * The basic Arduino example.  Turns on an LED on for one second,<br />
 * then off for one second, and so on&#8230;  We use pin 13 because,<br />
 * depending on your Arduino board, it has either a built-in LED<br />
 * or a built-in resistor so that you need only an LED.<br />
 *<br />
 * http://www.arduino.cc/en/Tutorial/Blink<br />
 */</p>
<p>void setup()                    // run once, when the sketch starts<br />
{<br />
   Serial.begin(9600); // use the serial port to send the values back to the computer<br />
}</p>
<p>int myPins[] = {1,2,3,4,5,8,9,10,11,12,13};                // LED connected to digital pin 13<br />
//int potPin = 8; // select the input pin for the potentiometer<br />
int val = 0; // variable to store the value coming from the sensor </p>
<p>void loop()                     // run over and over again<br />
{<br />
 // val = digitalRead(potPin); // read the value from the sensor<br />
 // Serial.println(val); // print the value to the serial port<br />
 //  if(val == 1)<br />
 // {<br />
    for(int i=0; i&lt;10; i++)<br />
    {<br />
      pinMode(myPins[i], OUTPUT);   // sets the digital pin as output<br />
      digitalWrite(myPins[i], HIGH);   // sets the LED on<br />
      delay(100);                  // waits for a second<br />
//      val = digitalRead(potPin);<br />
   //   if(val==0) {<br />
   //     break;<br />
      }<br />
 //   }<br />
// // }<br />
//  if(val== 0)<br />
//  {<br />
    for(int i=0; i&lt;10; i++)<br />
    {<br />
      pinMode(myPins[i], OUTPUT);   // sets the digital pin as output<br />
      digitalWrite(myPins[i], LOW);    // sets the LED off<br />
    }<br />
 // }<br />
}</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dxd6596.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dxd6596.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dxd6596.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dxd6596.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dxd6596.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dxd6596.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dxd6596.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dxd6596.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dxd6596.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dxd6596.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dxd6596.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dxd6596.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dxd6596.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dxd6596.wordpress.com/16/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dxd6596.wordpress.com&amp;blog=7196231&amp;post=16&amp;subd=dxd6596&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dxd6596.wordpress.com/2009/04/14/project-runway/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/960c49a73997bf095bb80ec18be7b0bb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dxd6596</media:title>
		</media:content>
	</item>
		<item>
		<title>Project 1 &#8211; BLINK!</title>
		<link>http://dxd6596.wordpress.com/2009/04/01/project-1-blink/</link>
		<comments>http://dxd6596.wordpress.com/2009/04/01/project-1-blink/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 19:46:13 +0000</pubDate>
		<dc:creator>dxd6596</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://dxd6596.wordpress.com/?p=7</guid>
		<description><![CDATA[For my first project I building one of the numbers of a digital clock.  I used seven diodes, one for each side.  I  then wrote a program for the Audrino that counts from zero to nine, programming the appropriate sides to light displaying the numbers in sequential order.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dxd6596.wordpress.com&amp;blog=7196231&amp;post=7&amp;subd=dxd6596&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>For my first project I building one of the numbers of a digital clock.  I used seven diodes, one for each side.  I  then wrote a program for the Audrino that counts from zero to nine, programming the appropriate sides to light displaying the numbers in sequential order.</p>

<a href='http://dxd6596.wordpress.com/2009/04/01/project-1-blink/diagram/' title='diagram'><img width="150" height="112" src="http://dxd6596.files.wordpress.com/2009/04/diagram.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="diagram" title="diagram" /></a>
<a href='http://dxd6596.wordpress.com/2009/04/01/project-1-blink/cimg10661/' title='cimg10661'><img width="150" height="112" src="http://dxd6596.files.wordpress.com/2009/04/cimg10661.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="cimg10661" title="cimg10661" /></a>
<a href='http://dxd6596.wordpress.com/2009/04/01/project-1-blink/cimg1065/' title='cimg1065'><img width="150" height="112" src="http://dxd6596.files.wordpress.com/2009/04/cimg1065.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="cimg1065" title="cimg1065" /></a>

<span style="text-align:center; display: block;"><a href="http://dxd6596.wordpress.com/2009/04/01/project-1-blink/"><img src="http://img.youtube.com/vi/TXS1AP4nVXE/2.jpg" alt="" /></a></span>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dxd6596.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dxd6596.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dxd6596.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dxd6596.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dxd6596.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dxd6596.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dxd6596.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dxd6596.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dxd6596.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dxd6596.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dxd6596.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dxd6596.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dxd6596.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dxd6596.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dxd6596.wordpress.com&amp;blog=7196231&amp;post=7&amp;subd=dxd6596&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dxd6596.wordpress.com/2009/04/01/project-1-blink/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/960c49a73997bf095bb80ec18be7b0bb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dxd6596</media:title>
		</media:content>
	</item>
	</channel>
</rss>
