<?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>Arduino Notes</title>
	<atom:link href="http://arduinonotes.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://arduinonotes.wordpress.com</link>
	<description>it&#039;s about the arduino microcontroller</description>
	<lastBuildDate>Sat, 22 Aug 2009 14:48:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='arduinonotes.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Arduino Notes</title>
		<link>http://arduinonotes.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://arduinonotes.wordpress.com/osd.xml" title="Arduino Notes" />
	<atom:link rel='hub' href='http://arduinonotes.wordpress.com/?pushpress=hub'/>
		<item>
		<title>volt meter</title>
		<link>http://arduinonotes.wordpress.com/2009/08/22/volt-meter/</link>
		<comments>http://arduinonotes.wordpress.com/2009/08/22/volt-meter/#comments</comments>
		<pubDate>Sat, 22 Aug 2009 14:47:17 +0000</pubDate>
		<dc:creator>jg</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://arduinonotes.wordpress.com/?p=74</guid>
		<description><![CDATA[I made a volt meter! All I have is a jumper wire poked into the analog pin 0 receptacle.  At samples 3 and 4 I have touched the end of the wire, bringing the voltage to ground.  Pretty exciting!  The code is below. I&#8217;m working towards building my lightning detector.  I have a simple coherer, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arduinonotes.wordpress.com&amp;blog=8755474&amp;post=74&amp;subd=arduinonotes&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I made a volt meter!</p>
<div id="attachment_73" class="wp-caption aligncenter" style="width: 567px"><img class="size-full wp-image-73" title="volt meter" src="http://arduinonotes.files.wordpress.com/2009/08/picture-1.png" alt="using the arduino board to measure voltage" width="557" height="324" /><p class="wp-caption-text">using the arduino board to measure voltage</p></div>
<p>All I have is a jumper wire poked into the analog pin 0 receptacle.  At samples 3 and 4 I have touched the end of the wire, bringing the voltage to ground.  Pretty exciting!  The code is below.</p>
<p>I&#8217;m working towards building my lightning detector.  I have a simple coherer, but haven&#8217;t gotten to see if it actually works yet.</p>
<pre><span style="color:#7E7E7E;">// a simple volt meter</span>
<span style="color:#7E7E7E;">// version 0.1</span>

<span style="color:#CC6600;">float</span> Vref = 5; <span style="color:#7E7E7E;">// volts</span>

<span style="color:#CC6600;">int</span> Rate = 1; <span style="color:#7E7E7E;">// hz</span>
<span style="color:#CC6600;">int</span> del = 1/Rate * 1000; <span style="color:#7E7E7E;">// sample rate, ms</span>

<span style="color:#CC6600;">int</span> vpin = 0; <span style="color:#7E7E7E;">// which pin should be used to measure the voltage</span>
              <span style="color:#7E7E7E;">// make sure you connect the arduino system ground to the same</span>
              <span style="color:#7E7E7E;">// as the measurement system</span>

<span style="color:#CC6600;">int</span> val_adc = 0; <span style="color:#7E7E7E;">// adc counts</span>
<span style="color:#CC6600;">float</span> val_volts = 0; <span style="color:#7E7E7E;">// volts</span>

<span style="color:#CC6600;">int</span> i = 0;

<span style="color:#CC6600;">void</span> <span style="color:#CC6600;"><strong>setup</strong></span>() {
  <span style="color:#CC6600;">Serial</span>.<span style="color:#CC6600;">begin</span>(9600);
  <span style="color:#CC6600;">Serial</span>.<span style="color:#CC6600;">print</span>(<span style="color:#006699;">"delay between samples is "</span>);
  <span style="color:#CC6600;">Serial</span>.<span style="color:#CC6600;">print</span>(del);
  <span style="color:#CC6600;">Serial</span>.<span style="color:#CC6600;">println</span>(<span style="color:#006699;">" ms"</span>);
}

<span style="color:#CC6600;">void</span> <span style="color:#CC6600;"><strong>loop</strong></span>() {
  <span style="color:#CC6600;">delay</span>(del);
  val_adc = <span style="color:#CC6600;">analogRead</span>(vpin);
  val_volts = Vref * (<span style="color:#CC6600;">float</span>(val_adc) / 1023);
  <span style="color:#CC6600;">Serial</span>.<span style="color:#CC6600;">print</span>(i);
  <span style="color:#CC6600;">Serial</span>.<span style="color:#CC6600;">print</span>(<span style="color:#006699;">": adc reads "</span>);
  <span style="color:#CC6600;">Serial</span>.<span style="color:#CC6600;">print</span>(val_adc);
  <span style="color:#CC6600;">Serial</span>.<span style="color:#CC6600;">print</span>(<span style="color:#006699;">" counts = "</span>);
  <span style="color:#CC6600;">Serial</span>.<span style="color:#CC6600;">print</span>(val_volts);
  <span style="color:#CC6600;">Serial</span>.<span style="color:#CC6600;">println</span>(<span style="color:#006699;">" volts."</span>);
  i++;
  <span style="color:#CC6600;">if</span> (i &gt;= 10) {
    i = 0;
  }
}</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/arduinonotes.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/arduinonotes.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/arduinonotes.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/arduinonotes.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/arduinonotes.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/arduinonotes.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/arduinonotes.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/arduinonotes.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/arduinonotes.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/arduinonotes.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/arduinonotes.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/arduinonotes.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/arduinonotes.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/arduinonotes.wordpress.com/74/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arduinonotes.wordpress.com&amp;blog=8755474&amp;post=74&amp;subd=arduinonotes&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://arduinonotes.wordpress.com/2009/08/22/volt-meter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b45d79e78f3daa68fa136baddff42747?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jg</media:title>
		</media:content>

		<media:content url="http://arduinonotes.files.wordpress.com/2009/08/picture-1.png" medium="image">
			<media:title type="html">volt meter</media:title>
		</media:content>
	</item>
		<item>
		<title>quick link dump</title>
		<link>http://arduinonotes.wordpress.com/2009/08/13/quick-link-dump/</link>
		<comments>http://arduinonotes.wordpress.com/2009/08/13/quick-link-dump/#comments</comments>
		<pubDate>Thu, 13 Aug 2009 17:38:18 +0000</pubDate>
		<dc:creator>jg</dc:creator>
				<category><![CDATA[links]]></category>

		<guid isPermaLink="false">http://arduinonotes.wordpress.com/?p=66</guid>
		<description><![CDATA[Some interesting links I&#8217;ve known about&#8230; arduino tagged items in makezine blog related projects: processing, wiring, fritzing<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arduinonotes.wordpress.com&amp;blog=8755474&amp;post=66&amp;subd=arduinonotes&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Some interesting links I&#8217;ve known about&#8230;</p>
<p><a href="http://blog.makezine.com/archive/arduino/">arduino tagged items in makezine blog</a></p>
<p>related projects: <a href="http://www.processing.org/">processing</a>, <a href="http://wiring.org.co/">wiring</a>, <a href="http://fritzing.org/">fritzing</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/arduinonotes.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/arduinonotes.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/arduinonotes.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/arduinonotes.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/arduinonotes.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/arduinonotes.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/arduinonotes.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/arduinonotes.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/arduinonotes.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/arduinonotes.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/arduinonotes.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/arduinonotes.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/arduinonotes.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/arduinonotes.wordpress.com/66/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arduinonotes.wordpress.com&amp;blog=8755474&amp;post=66&amp;subd=arduinonotes&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://arduinonotes.wordpress.com/2009/08/13/quick-link-dump/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b45d79e78f3daa68fa136baddff42747?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jg</media:title>
		</media:content>
	</item>
		<item>
		<title>lightning detector</title>
		<link>http://arduinonotes.wordpress.com/2009/08/11/lightning-detector/</link>
		<comments>http://arduinonotes.wordpress.com/2009/08/11/lightning-detector/#comments</comments>
		<pubDate>Tue, 11 Aug 2009 16:38:03 +0000</pubDate>
		<dc:creator>jg</dc:creator>
				<category><![CDATA[project ideas]]></category>

		<guid isPermaLink="false">http://arduinonotes.wordpress.com/?p=59</guid>
		<description><![CDATA[I had the idea (during the recent lightning storms) to record the rate of lightning strikes.  There were a couple of ways to do it, I think detect the radio from the lightning.  Might be able to get the direction with this, if the adc is fast enough. just us a mic to pick up [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arduinonotes.wordpress.com&amp;blog=8755474&amp;post=59&amp;subd=arduinonotes&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I had the idea (during the recent lightning storms) to record the rate of lightning strikes.  There were a couple of ways to do it, I think</p>
<ul>
<li>detect the radio from the lightning.  Might be able to get the direction with this, if the adc is fast enough.</li>
<li>just us a mic to pick up the thunder</li>
</ul>
<p>I would like to keep the logs, so it would also require sending the data back to the computer.  One of the things that I think is pretty neat is that I can keep the program and hardware in a little box, then when the storm comes, load it onto the board, hook up the detectors, and be logging stuff.  Someday I may have two arduino boards and can dispense with that kind of nonsense!</p>
<p>[later edit] <a href="http://en.wikipedia.org/wiki/Alexander_Stepanovich_Popov">Popov</a> invented an early radio, which he later developed into a lightening detection system (according to wikipedia).  I think he used a <a href="http://en.wikipedia.org/wiki/Coherer">coherer</a> (<a href="http://home.earthlink.net/~lenyr/coherer.htm">how to make</a>) to do it, so I might try and do the same thing.  A coherer is impressively easy to make, but the unlatching system is a bit harder.  Either way, it shouldn&#8217;t be too hard to build.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/arduinonotes.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/arduinonotes.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/arduinonotes.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/arduinonotes.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/arduinonotes.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/arduinonotes.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/arduinonotes.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/arduinonotes.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/arduinonotes.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/arduinonotes.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/arduinonotes.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/arduinonotes.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/arduinonotes.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/arduinonotes.wordpress.com/59/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arduinonotes.wordpress.com&amp;blog=8755474&amp;post=59&amp;subd=arduinonotes&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://arduinonotes.wordpress.com/2009/08/11/lightning-detector/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b45d79e78f3daa68fa136baddff42747?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jg</media:title>
		</media:content>
	</item>
		<item>
		<title>comparisons</title>
		<link>http://arduinonotes.wordpress.com/2009/08/03/comparisons/</link>
		<comments>http://arduinonotes.wordpress.com/2009/08/03/comparisons/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 02:34:38 +0000</pubDate>
		<dc:creator>jg</dc:creator>
				<category><![CDATA[lab book entry]]></category>

		<guid isPermaLink="false">http://arduinonotes.wordpress.com/?p=52</guid>
		<description><![CDATA[Well, I don&#8217;t know that much c++, the last time I worked with it was over a decade ago.  So, I&#8217;m not to surprised that I get an error like this: In function &#8216;void loop()&#8217;: error: ISO C++ forbids comparison between pointer and integer I&#8217;m trying to print my string one character at a time, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arduinonotes.wordpress.com&amp;blog=8755474&amp;post=52&amp;subd=arduinonotes&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Well, I don&#8217;t know that much c++, the last time I worked with it was over a decade ago.  So, I&#8217;m not to surprised that I get an error like this:</p>
<p style="padding-left:30px;"><span style="color:#ff0000;">In function &#8216;void loop()&#8217;:<br />
error: ISO C++ forbids comparison between pointer and integer</span></p>
<p>I&#8217;m trying to print my string one character at a time, and do a new line when the end of the string is hit.  Only there isn&#8217;t any easy way to find out how long an array is (that I&#8217;ve found) in this version of c++.  Eventually this will blink out morse code stuff.  As usual, I think I&#8217;m tackling the hard and lame stuff first.</p>
<pre><span style="color:#777755;">/* </span>
<span style="color:#777755;">   a morse code translater</span>
<span style="color:#777755;">   </span>
<span style="color:#777755;">*/</span>

<span style="color:#996600;">char</span>* myStr[] = {<span style="color:#CC0000;">"some string"</span>};

<span style="color:#CC6600;">void</span> <span style="color:#993300;"><strong>setup</strong></span>(){
  <span style="color:#996600;">Serial</span>.<span style="color:#996600;">begin</span>(9600);
}

<span style="color:#CC6600;">void</span> <span style="color:#993300;"><strong>loop</strong></span>() {
  <span style="color:#996600;">boolean</span> isChar = <span style="color:#CC6600;">true</span>;
  <span style="color:#996600;">int</span> i = 0;
  <span style="color:#CC6600;">while</span> (isChar) {
    <span style="color:#996600;">char</span> this_char = myStr[0][i];
    <span style="color:#CC6600;">if</span> (this_char != <span style="color:#CC0000;">""</span>) {
      <span style="color:#996600;">Serial</span>.<span style="color:#996600;">print</span>(this_char);
      <span style="color:#996600;">Serial</span>.<span style="color:#996600;">println</span>(i);
      <span style="color:#996600;">delay</span>(300);
    }
    <span style="color:#CC6600;">else</span>
    {
      <span style="color:#996600;">delay</span>(1000);
      <span style="color:#996600;">Serial</span>.<span style="color:#996600;">println</span>(<span style="color:#CC0000;">" "</span>);
      isChar = <span style="color:#CC6600;">false</span>;
    }
  }
}

<span style="color:#777755;">/*</span>
<span style="color:#777755;">void look_up_morse(char letter) {</span>
<span style="color:#777755;">  // a dash is equal to three dots</span>
<span style="color:#777755;">  // the space between pars of the same letter is equal to one dot</span>
<span style="color:#777755;">  // the space between two letters is equal to three dots</span>
<span style="color:#777755;">  // the space between two words is equal to seven dots</span>
<span style="color:#777755;">  // pause = 0 (same length as a dot)</span>
<span style="color:#777755;">  // short = 1 (dot)</span>
<span style="color:#777755;">  // long  = 2 (dash, same length as three dots)</span>
<span style="color:#777755;">  </span>
<span style="color:#777755;">  // ascii notes:</span>
<span style="color:#777755;">  // capitol letters are 65 (A) to 90 (Z)</span>
<span style="color:#777755;">  // digits are 48 (0) to 57 (9)</span>
<span style="color:#777755;">  A = {1, 2};</span>
<span style="color:#777755;">  B = {2, 1, 1, 1};</span>
<span style="color:#777755;">  C = {2, 1, 2, 1};</span>
<span style="color:#777755;">  D = {2, 1, 1};</span>
<span style="color:#777755;">  E = {1};</span>
<span style="color:#777755;">  F = {1, 1, 2, 1};</span>
<span style="color:#777755;">  G = {2, 2, 1};</span>
<span style="color:#777755;">  H = {1, 1, 1, 1};</span>
<span style="color:#777755;">  I = {1, 1};</span>
<span style="color:#777755;">  J = {1, 2, 2, 2};</span>
<span style="color:#777755;">  K = {2, 1, 2};</span>
<span style="color:#777755;">  L = {1, 2, 1, 1};</span>
<span style="color:#777755;">  M = {2, 2};</span>
<span style="color:#777755;">  N = {2, 1};</span>
<span style="color:#777755;">  O = {2, 2, 2};</span>
<span style="color:#777755;">  P = {1, 2, 2, 1};</span>
<span style="color:#777755;">  Q = {2, 2, 1, 2};</span>
<span style="color:#777755;">  R = {1, 2, 1};</span>
<span style="color:#777755;">  S = {1, 1, 1};</span>
<span style="color:#777755;">  T = {2};</span>
<span style="color:#777755;">  U = {1, 1, 2};</span>
<span style="color:#777755;">  V = {1, 1, 1, 2};</span>
<span style="color:#777755;">  W = {1, 2, 2};</span>
<span style="color:#777755;">  X = {2, 1, 1, 2};</span>
<span style="color:#777755;">  Y = {2, 1, 2, 2};</span>
<span style="color:#777755;">  Z = {2, 2, 1, 1};</span>
<span style="color:#777755;">  one = {1, 2, 2, 2, 2};</span>
<span style="color:#777755;">  two = {1, 1, 2, 2, 2};</span>
<span style="color:#777755;">  three = {1, 1, 1, 2, 2};</span>
<span style="color:#777755;">  four = {1, 1, 1, 1, 2};</span>
<span style="color:#777755;">  five = {1, 1, 1, 1, 1};</span>
<span style="color:#777755;">  size = {2, 1, 1, 1, 1};</span>
<span style="color:#777755;">  seven = {2, 2, 1, 1, 1};</span>
<span style="color:#777755;">  eight = {2, 2, 2, 1, 1};</span>
<span style="color:#777755;">  nine  = {2, 2, 2, 2, 1};</span>
<span style="color:#777755;">  zero  = {2, 2, 2, 2, 2}; </span>
<span style="color:#777755;">}</span>
<span style="color:#777755;">*/</span></pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/arduinonotes.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/arduinonotes.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/arduinonotes.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/arduinonotes.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/arduinonotes.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/arduinonotes.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/arduinonotes.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/arduinonotes.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/arduinonotes.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/arduinonotes.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/arduinonotes.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/arduinonotes.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/arduinonotes.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/arduinonotes.wordpress.com/52/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arduinonotes.wordpress.com&amp;blog=8755474&amp;post=52&amp;subd=arduinonotes&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://arduinonotes.wordpress.com/2009/08/03/comparisons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b45d79e78f3daa68fa136baddff42747?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jg</media:title>
		</media:content>
	</item>
		<item>
		<title>terminal!</title>
		<link>http://arduinonotes.wordpress.com/2009/08/03/terminal-2/</link>
		<comments>http://arduinonotes.wordpress.com/2009/08/03/terminal-2/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 01:34:12 +0000</pubDate>
		<dc:creator>jg</dc:creator>
				<category><![CDATA[lab book entry]]></category>

		<guid isPermaLink="false">http://arduinonotes.wordpress.com/?p=49</guid>
		<description><![CDATA[It turns out that having your code output stuff to a terminal is incredibly simple.  The code below will send the strings &#8220;str1&#8243; etcetera out to the serial terminal, which is displayed in the little box at the bottom of the Arduino development environment.  Simply press the &#8220;serial monitor&#8221; button at the top of the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arduinonotes.wordpress.com&amp;blog=8755474&amp;post=49&amp;subd=arduinonotes&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It turns out that having your code output stuff to a terminal is incredibly simple.  The code below will send the strings &#8220;str1&#8243; etcetera out to the serial terminal, which is displayed in the little box at the bottom of the Arduino development environment.  Simply press the &#8220;serial monitor&#8221; button at the top of the ide, and you will see whatever you told the arduino board to print!</p>
<pre><span style="color:#777755;">/* </span>
<span style="color:#777755;">   a terminal printer</span>
<span style="color:#777755;">   </span>
<span style="color:#777755;">*/</span>

<span style="color:#996600;">char</span>* mystr[] = { <span style="color:#CC0000;">"str1"</span>, <span style="color:#CC0000;">"str2"</span>, <span style="color:#CC0000;">"str3"</span>, <span style="color:#CC0000;">"str4"</span>, <span style="color:#CC0000;">"str5"</span>, <span style="color:#CC0000;">"str6"</span>};

<span style="color:#CC6600;">void</span> <span style="color:#993300;"><strong>setup</strong></span>(){
  <span style="color:#996600;">Serial</span>.<span style="color:#996600;">begin</span>(9600);
}

<span style="color:#CC6600;">void</span> <span style="color:#993300;"><strong>loop</strong></span>() {
  <span style="color:#CC6600;">for</span> (<span style="color:#996600;">int</span> i = 0; i&lt;6; i++) {
    <span style="color:#996600;">Serial</span>.<span style="color:#996600;">println</span>(mystr[i]);
    <span style="color:#996600;">delay</span>(500);
  }
}</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/arduinonotes.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/arduinonotes.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/arduinonotes.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/arduinonotes.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/arduinonotes.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/arduinonotes.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/arduinonotes.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/arduinonotes.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/arduinonotes.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/arduinonotes.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/arduinonotes.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/arduinonotes.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/arduinonotes.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/arduinonotes.wordpress.com/49/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arduinonotes.wordpress.com&amp;blog=8755474&amp;post=49&amp;subd=arduinonotes&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://arduinonotes.wordpress.com/2009/08/03/terminal-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b45d79e78f3daa68fa136baddff42747?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jg</media:title>
		</media:content>
	</item>
		<item>
		<title>terminal?</title>
		<link>http://arduinonotes.wordpress.com/2009/07/30/terminal/</link>
		<comments>http://arduinonotes.wordpress.com/2009/07/30/terminal/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 21:22:20 +0000</pubDate>
		<dc:creator>jg</dc:creator>
				<category><![CDATA[lab book entry]]></category>

		<guid isPermaLink="false">http://arduinonotes.wordpress.com/?p=46</guid>
		<description><![CDATA[I would like to be able to see what my code is doing.  If it could print out to the terminal, that would great.  Is there a terminal environment for the arduino?  I guess what I really want is an emulator so that I can test my code and see what it is doing.  I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arduinonotes.wordpress.com&amp;blog=8755474&amp;post=46&amp;subd=arduinonotes&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I would like to be able to see what my code is doing.  If it could print out to the terminal, that would great.  Is there a terminal environment for the arduino?  I guess what I really want is an emulator so that I can test my code and see what it is doing.  I don&#8217;t particularly want to write it in perl or python, then rewrite it in arduino language.  If I have to for debugging purposes, I guess I will.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/arduinonotes.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/arduinonotes.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/arduinonotes.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/arduinonotes.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/arduinonotes.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/arduinonotes.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/arduinonotes.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/arduinonotes.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/arduinonotes.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/arduinonotes.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/arduinonotes.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/arduinonotes.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/arduinonotes.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/arduinonotes.wordpress.com/46/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arduinonotes.wordpress.com&amp;blog=8755474&amp;post=46&amp;subd=arduinonotes&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://arduinonotes.wordpress.com/2009/07/30/terminal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b45d79e78f3daa68fa136baddff42747?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jg</media:title>
		</media:content>
	</item>
		<item>
		<title>another blinky interaction</title>
		<link>http://arduinonotes.wordpress.com/2009/07/28/another-blinky-interaction/</link>
		<comments>http://arduinonotes.wordpress.com/2009/07/28/another-blinky-interaction/#comments</comments>
		<pubDate>Tue, 28 Jul 2009 21:29:43 +0000</pubDate>
		<dc:creator>jg</dc:creator>
				<category><![CDATA[lab book entry]]></category>
		<category><![CDATA[project ideas]]></category>

		<guid isPermaLink="false">http://arduinonotes.wordpress.com/?p=44</guid>
		<description><![CDATA[I&#8217;ve got another idea for how the blinking can work.  It would be user specific, thought it might not be that different between users.  A &#8220;reader&#8221;, a person who wants to read the numbers from the thing, would calibrate the output to how long it takes them to count to 1o.  So they would press [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arduinonotes.wordpress.com&amp;blog=8755474&amp;post=44&amp;subd=arduinonotes&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve got another idea for how the blinking can work.  It would be user specific, thought it might not be that different between users.  A &#8220;reader&#8221;, a person who wants to read the numbers from the thing, would calibrate the output to how long it takes them to count to 1o.  So they would press the start button, then count to 10, and the arduino would time that.  When it comes time to read out a number, the arduino would blink rapidly, and the person would count up.  so it would be &lt;blinky-blinky&gt;, and the person would be 1.. 2.. 3&#8230;  then it would stop blinking and the person would know that the number is supposed to be 3.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/arduinonotes.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/arduinonotes.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/arduinonotes.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/arduinonotes.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/arduinonotes.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/arduinonotes.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/arduinonotes.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/arduinonotes.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/arduinonotes.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/arduinonotes.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/arduinonotes.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/arduinonotes.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/arduinonotes.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/arduinonotes.wordpress.com/44/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arduinonotes.wordpress.com&amp;blog=8755474&amp;post=44&amp;subd=arduinonotes&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://arduinonotes.wordpress.com/2009/07/28/another-blinky-interaction/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b45d79e78f3daa68fa136baddff42747?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jg</media:title>
		</media:content>
	</item>
		<item>
		<title>number blinker</title>
		<link>http://arduinonotes.wordpress.com/2009/07/28/number-blinker/</link>
		<comments>http://arduinonotes.wordpress.com/2009/07/28/number-blinker/#comments</comments>
		<pubDate>Tue, 28 Jul 2009 20:42:19 +0000</pubDate>
		<dc:creator>jg</dc:creator>
				<category><![CDATA[lab book entry]]></category>

		<guid isPermaLink="false">http://arduinonotes.wordpress.com/?p=35</guid>
		<description><![CDATA[A few things I&#8217;m trying to get right here: the number is correctly binked out. that it is easy/pleasant to read the number (requires timing of the blinks to be comfortable) works for an arbitrary number. I went from the largest digit to the smallest.  I&#8217;m thinking I should probably do it the other way [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arduinonotes.wordpress.com&amp;blog=8755474&amp;post=35&amp;subd=arduinonotes&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A few things I&#8217;m trying to get right here:</p>
<ol>
<li>the number is correctly binked out.</li>
<li>that it is easy/pleasant to read the number (requires timing of the blinks to be comfortable)</li>
<li>works for an arbitrary number.</li>
</ol>
<p>I went from the largest digit to the smallest.  I&#8217;m thinking I should probably do it the other way around, and go until I get a zero.  Here is my first go at the code.  It doesn&#8217;t blink out correctly- something is wrong at the 10&#8242;s place, it should blink 3 times, but instead only blinks twice (which is the ones value).  I didn&#8217;t have time to do more.</p>
<pre>
<span style="color:#777755;">/*</span>
<span style="color:#777755;"> * blinks out numbers</span>
<span style="color:#777755;"> * </span>
<span style="color:#777755;"> *</span>
<span style="color:#777755;"> */</span>

 <span style="color:#996600;">int</span> ledPin = 13;    <span style="color:#777755;">// the LED pin (built in on my board)</span>

 <span style="color:#CC6600;">void</span> <span style="color:#993300;"><b>setup</b></span>() {
   <span style="color:#996600;">pinMode</span>(ledPin, <span style="color:#CC0000;">OUTPUT</span>);
 }

 <span style="color:#CC6600;">void</span> <span style="color:#993300;"><b>loop</b></span>() {

   blinkStartup();

   <span style="color:#996600;">delay</span>(1000);

   <span style="color:#996600;">int</span> thisNum = 1332;  <span style="color:#777755;">// the number to be blinked</span>

   <span style="color:#777755;">// this next bit is supposed to break it up into each digit</span>
   <span style="color:#777755;">// it doesn't work right now.</span>

   <span style="color:#996600;">int</span> thousands = thisNum / 1000;
   <span style="color:#996600;">int</span> whatsLeft = thisNum % 1000;

   <span style="color:#996600;">int</span> hundreds  = whatsLeft / 100;
       whatsLeft = whatsLeft % hundreds;

   <span style="color:#996600;">int</span> tens = whatsLeft / 10;
   <span style="color:#996600;">int</span> ones = whatsLeft % 10;

   <span style="color:#777755;">// blink it out part.</span>

   blinkFast(3);
   <span style="color:#996600;">delay</span>(500);
   blinkSlow(thousands);

   <span style="color:#996600;">delay</span>(1000);

   blinkFast(2);
   <span style="color:#996600;">delay</span>(500);
   blinkSlow(hundreds);

   <span style="color:#996600;">delay</span>(1000);

   blinkFast(1);
   <span style="color:#996600;">delay</span>(500);
   blinkSlow(tens);

   <span style="color:#996600;">delay</span>(1000);
   blinkSlow(ones);

   <span style="color:#996600;">delay</span>(2000);

 }

 <span style="color:#CC6600;">void</span> blinkFast(<span style="color:#996600;">int</span> x) {
   <span style="color:#CC6600;">for</span>(<span style="color:#996600;">int</span> y=1;y&lt;=x;y++) {
     <span style="color:#996600;">digitalWrite</span>(ledPin, <span style="color:#CC0000;">HIGH</span>);
     <span style="color:#996600;">delay</span>(50);
     <span style="color:#996600;">digitalWrite</span>(ledPin, <span style="color:#CC0000;">LOW</span>);
     <span style="color:#996600;">delay</span>(200);
   }
 }

 <span style="color:#CC6600;">void</span> blinkSlow(<span style="color:#996600;">int</span> x) {
   <span style="color:#CC6600;">for</span>(<span style="color:#996600;">int</span> y=1;y&lt;=x;y++) {
     <span style="color:#996600;">digitalWrite</span>(ledPin, <span style="color:#CC0000;">HIGH</span>);
     <span style="color:#996600;">delay</span>(100);
     <span style="color:#996600;">digitalWrite</span>(ledPin, <span style="color:#CC0000;">LOW</span>);
     <span style="color:#996600;">delay</span>(200);
   }
 }

 <span style="color:#CC6600;">void</span> blinkStartup() {
   <span style="color:#CC6600;">for</span>(<span style="color:#996600;">int</span> i=0; i&lt;10; i++){
     <span style="color:#996600;">digitalWrite</span>(ledPin,<span style="color:#CC0000;">HIGH</span>);
     <span style="color:#996600;">delay</span>(50);
     <span style="color:#996600;">digitalWrite</span>(ledPin,<span style="color:#CC0000;">LOW</span>);
     <span style="color:#996600;">delay</span>(50);
   }
 }
</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/arduinonotes.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/arduinonotes.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/arduinonotes.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/arduinonotes.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/arduinonotes.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/arduinonotes.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/arduinonotes.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/arduinonotes.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/arduinonotes.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/arduinonotes.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/arduinonotes.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/arduinonotes.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/arduinonotes.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/arduinonotes.wordpress.com/35/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arduinonotes.wordpress.com&amp;blog=8755474&amp;post=35&amp;subd=arduinonotes&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://arduinonotes.wordpress.com/2009/07/28/number-blinker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b45d79e78f3daa68fa136baddff42747?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jg</media:title>
		</media:content>
	</item>
		<item>
		<title>number blink out</title>
		<link>http://arduinonotes.wordpress.com/2009/07/27/number-blink-out/</link>
		<comments>http://arduinonotes.wordpress.com/2009/07/27/number-blink-out/#comments</comments>
		<pubDate>Mon, 27 Jul 2009 20:50:55 +0000</pubDate>
		<dc:creator>jg</dc:creator>
				<category><![CDATA[lab book entry]]></category>

		<guid isPermaLink="false">http://arduinonotes.wordpress.com/?p=32</guid>
		<description><![CDATA[Here is one idea for how to blink out numbers. the blips should actually be a full line high, the blinks are also a full line high.  The &#8220;end of number&#8221; indicator is only half height, I plan to use the PWM feature for that.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arduinonotes.wordpress.com&amp;blog=8755474&amp;post=32&amp;subd=arduinonotes&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here is one idea for how to blink out numbers.</p>
<p><a href="http://arduinonotes.files.wordpress.com/2009/07/number_blink_out.jpg"><img class="alignnone size-medium wp-image-33" title="number blink out" src="http://arduinonotes.files.wordpress.com/2009/07/number_blink_out.jpg?w=300&#038;h=225" alt="number blink out" width="300" height="225" /></a></p>
<p>the blips should actually be a full line high, the blinks are also a full line high.  The &#8220;end of number&#8221; indicator is only half height, I plan to use the <a href="http://arduino.cc/en/Tutorial/PWM" target="_self">PWM</a> feature for that.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/arduinonotes.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/arduinonotes.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/arduinonotes.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/arduinonotes.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/arduinonotes.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/arduinonotes.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/arduinonotes.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/arduinonotes.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/arduinonotes.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/arduinonotes.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/arduinonotes.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/arduinonotes.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/arduinonotes.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/arduinonotes.wordpress.com/32/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arduinonotes.wordpress.com&amp;blog=8755474&amp;post=32&amp;subd=arduinonotes&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://arduinonotes.wordpress.com/2009/07/27/number-blink-out/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b45d79e78f3daa68fa136baddff42747?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jg</media:title>
		</media:content>

		<media:content url="http://arduinonotes.files.wordpress.com/2009/07/number_blink_out.jpg?w=300" medium="image">
			<media:title type="html">number blink out</media:title>
		</media:content>
	</item>
		<item>
		<title>potential other projects: blinky</title>
		<link>http://arduinonotes.wordpress.com/2009/07/27/potential-other-projects-blinky/</link>
		<comments>http://arduinonotes.wordpress.com/2009/07/27/potential-other-projects-blinky/#comments</comments>
		<pubDate>Mon, 27 Jul 2009 18:29:34 +0000</pubDate>
		<dc:creator>jg</dc:creator>
				<category><![CDATA[project ideas]]></category>

		<guid isPermaLink="false">http://justinsarduinoadventures.wordpress.com/?p=31</guid>
		<description><![CDATA[some further ideas: output primes (thanks Larne!) somehow output what the analog input is doing (it&#8217;s floating, so presumably doing something) morse code a message a fibonacci sequence blinker (but do base 10 blinks somehow, so we don&#8217;t have to count to 1000&#8242;s) base 10 counting trainer.  it blinks a sequence that is some number, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arduinonotes.wordpress.com&amp;blog=8755474&amp;post=31&amp;subd=arduinonotes&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>some further ideas:</p>
<ol>
<li>output primes (thanks Larne!)</li>
<li>somehow output what the analog input is doing (it&#8217;s floating, so presumably doing something)</li>
<li>morse code a message</li>
<li>a fibonacci sequence blinker (but do base 10 blinks somehow, so we don&#8217;t have to count to 1000&#8242;s)</li>
<li>base 10 counting trainer.  it blinks a sequence that is some number, so you can practice reading the blinks.</li>
</ol>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/arduinonotes.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/arduinonotes.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/arduinonotes.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/arduinonotes.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/arduinonotes.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/arduinonotes.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/arduinonotes.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/arduinonotes.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/arduinonotes.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/arduinonotes.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/arduinonotes.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/arduinonotes.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/arduinonotes.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/arduinonotes.wordpress.com/31/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arduinonotes.wordpress.com&amp;blog=8755474&amp;post=31&amp;subd=arduinonotes&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://arduinonotes.wordpress.com/2009/07/27/potential-other-projects-blinky/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b45d79e78f3daa68fa136baddff42747?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jg</media:title>
		</media:content>
	</item>
	</channel>
</rss>
