<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>weather &#38; arduino</title>
	<atom:link href="http://m-teo.aprendizdetodo.es/feed/" rel="self" type="application/rss+xml" />
	<link>http://m-teo.aprendizdetodo.es</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Thu, 16 Apr 2009 21:12:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>Serial comunication protocol with arduino</title>
		<link>http://m-teo.aprendizdetodo.es/2009/02/19/serial-comunication-protocol-with-arduino/</link>
		<comments>http://m-teo.aprendizdetodo.es/2009/02/19/serial-comunication-protocol-with-arduino/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 23:20:12 +0000</pubDate>
		<dc:creator>aprendiz</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[comunication]]></category>
		<category><![CDATA[protocol]]></category>
		<category><![CDATA[serial]]></category>

		<guid isPermaLink="false">http://m-teo.aprendizdetodo.es/?p=60</guid>
		<description><![CDATA[A serial comunication example with a medium complex protocol: I promise to expan it using crcs #define ledPin 13 #define waitForByte 200 //Time waiting for the next check of available data #define maxItertionWaiting 20 //Maximun iteration before timeout // Return values in checkResponse #define errorTimeout -1 #define errorProtocol -2 #define responseOK 0 // first data [...]]]></description>
			<content:encoded><![CDATA[<p>A serial comunication example with a medium complex protocol:<br />
I promise to expan it using crcs <img src='http://m-teo.aprendizdetodo.es/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  </p>
<p><code>#define ledPin 13<br />
#define waitForByte 200			//Time waiting for the next check of available data<br />
#define maxItertionWaiting 20	//Maximun iteration before timeout</code></p>
<p><code>// Return values in checkResponse<br />
#define errorTimeout -1<br />
#define errorProtocol -2<br />
#define responseOK 0</p>
<p>// first data to send<br />
byte tSend1[]={0x15, 0x39, 0xF2, 0x78, 0x22, 0x11};<br />
// first data to receive<br />
byte tResp1[]={0x20, 0x1B, 0xF2, 0x79, 0x24, 0x11};<br />
// second data to send<br />
byte tSend2[]={0x25, 0x45, 0xF2, 0x7a, 0x09, 0x11};<br />
// second data to receive<br />
byte tResp2[]={0x30, 0xa0, 0xF2, 0x7b, 0x59, 0x11};</p>
<p>//buffer to put the response in<br />
byte *LastResponse=NULL;</p>
<p>// Initialize everything<br />
void setup()<br />
{<br />
Serial.begin(9600);</p>
<p>// wait a bit<br />
delay(100);</p>
<p>// we will light on when the protocol finnalice ok<br />
pinMode(ledPin, OUTPUT);<br />
digitalWrite(ledPin, LOW);<br />
}</p>
<p>// Read the response (in LastResponse<br />
int  checkResponse(byte response[],int iResponseSize)<br />
{<br />
int iReceivedCounter=0; 	// How many byte we have receive<br />
int iReceivedValue=0;<br />
int iIteration=0;			// How many iterations we have wait for the last data<br />
int  iResult=responseOK;</p>
<p>if(LastResponse!=NULL)	//Free memory<br />
free(LastResponse);</p>
<p>LastResponse=(byte *)calloc(iResponseSize,1); //Alloc memory for new data</p>
<p>while(iReceivedCounter<br />
{<br />
if(Serial.available()&gt;0)<br />
{<br />
iIteration=0;<br />
iReceivedValue=Serial.read();<br />
if(iReceivedValue!=response[iReceivedCounter])	// is it the waited byte?<br />
{<br />
iResult=errorProtocol;<br />
break;<br />
}<br />
else<br />
LastResponse[iReceivedCounter++]=(byte)iReceivedValue;<br />
}<br />
else<br />
{<br />
if(iIteration<br />
{<br />
delay(waitForByte);		// One more try<br />
iIteration++;<br />
}<br />
else<br />
{<br />
iResult=errorTimeout;<br />
break;<br />
}<br />
}<br />
}<br />
return iResult;<br />
}</p>
<p>void sendData(byte dataToSend[],int iSize)<br />
{<br />
for(int i=0;i<br />
{<br />
Serial.print(dataToSend[i],BYTE);<br />
}<br />
}</p>
<p>void loop()<br />
{<br />
int iImportantValue=0;</p>
<p></code></p>
<p><code> sendData(tSend1,6);<br />
delay(200); // allow some time for the Serial data to be sent<br />
if(checkResponse(tResp1,6)==responseOK)<br />
{<br />
sendData(tSend2,6);<br />
delay(200); // allow some time for the Serial data to be sent<br />
if(checkResponse(tResp2,6)==responseOK)<br />
{<br />
iImportantValue=LastResponse[3]*256+LastResponse[2];<br />
digitalWrite(ledPin, HIGH);<br />
}<br />
}<br />
} </code></p>
]]></content:encoded>
			<wfw:commentRss>http://m-teo.aprendizdetodo.es/2009/02/19/serial-comunication-protocol-with-arduino/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Reading temperature with Maxim DS18x20</title>
		<link>http://m-teo.aprendizdetodo.es/2009/02/19/reading-temperature-maxim-ds18x20/</link>
		<comments>http://m-teo.aprendizdetodo.es/2009/02/19/reading-temperature-maxim-ds18x20/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 23:15:32 +0000</pubDate>
		<dc:creator>aprendiz</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ds18x20]]></category>
		<category><![CDATA[maxim]]></category>
		<category><![CDATA[sensor]]></category>
		<category><![CDATA[temperature]]></category>

		<guid isPermaLink="false">http://m-teo.aprendizdetodo.es/?p=57</guid>
		<description><![CDATA[Its really easy to use the ds18x20 family of temperature sensors of Maxim. You can get a pair of them for free from Maxim. The sensors use a one-wire protocol, only one wire for data and a pair more for gnd and voltage (even only one from data and other for gnd in parasit mode). [...]]]></description>
			<content:encoded><![CDATA[<p>Its really easy to use the <a href="http://www.maxim-ic.com/quick_view2.cfm/qv_pk/2815">ds18x20</a> family of temperature sensors of Maxim. You can get a pair of them for free  from <a href="http://www.maxim-ic.com">Maxim</a>.</p>
<p>The sensors use a one-wire protocol, only one wire for data and a pair more for gnd and voltage (even only one from data and other for gnd in parasit mode). Each sensor has an unic ID.<br />
You need to search the &#8220;network&#8221; (filtering only the required sensor type) in order to get all the ids and then ask each one for the current temperature value.</p>
<p>You can send the data to the pc using the serial port.</p>
<p>Here is the example:<br />
<code><br />
#include <onewire.h><br />
/* OneWire  Arduino<br />
code from <a href="http://core.federated.com/~jim/onewire/">here</a> */</code></p>
<p><code>/* DS18S20 Temperature chip i/o */</code></p>
<p><code>OneWire  ds(10);  // on pin 10</p>
<p>void setup(void) {<br />
Serial.begin(57600);<br />
}</p>
<p>void loop(void) {<br />
byte i;<br />
byte present = 0;<br />
byte data[12];<br />
byte addr[8];</p>
<p>if ( !ds.search(addr)) {<br />
ds.reset_search();<br />
return;<br />
}</p>
<p>Serial.print("R");<br />
for( i = 0; i &lt; 8; i++) {<br />
Serial.print("-");<br />
if(addr[i]&lt;16)<br />
Serial.print(0);<br />
Serial.print(addr[i], HEX);<br />
}</p>
<p>if ( OneWire::crc8( addr, 7) != addr[7]) {<br />
Serial.print("CRC is not valid!\n");<br />
return;<br />
}</p>
<p>if ( addr[0] != 0x10) {<br />
Serial.print("Device is not a DS18S20 family device.\n");<br />
return;<br />
}</p>
<p>ds.reset();<br />
ds.select(addr);<br />
ds.write(0x44,1);         // start conversion, with parasite power on at the end</p>
<p>delay(1000);     // maybe 750ms is enough, maybe not<br />
// we might do a ds.depower() here, but the reset will take care of it.</p>
<p>present = ds.reset();<br />
ds.select(addr);<br />
ds.write(0xBE);         // Read Scratchpad</p>
<p>for ( i = 0; i &lt; 9; i++) {           // we need 9 bytes<br />
data[i] = ds.read();<br />
}<br />
int  HighByte=data[0];<br />
int  LowByte=data[1];</p>
<p>// Teniendo LowByte y HighByte<br />
int      TReading = (HighByte &lt;&lt; <img src='http://m-teo.aprendizdetodo.es/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> + LowByte;<br />
int      SignBit = TReading &amp; 0x8000;  // test most sig bit<br />
if (SignBit) // negative<br />
{<br />
TReading = (TReading ^ 0xffff) + 1; // 2's comp<br />
}<br />
int      Tc_100 = (6 * TReading) + TReading / 4;    // multiply by (100 * 0.0625) or 6.25</p>
<p>int      Whole = Tc_100 / 100;  // separate off the whole and fractional portions<br />
int      Fract = Tc_100 % 100;</p>
<p>Serial.print(":");<br />
Serial.print(HighByte/2);<br />
Serial.print(".");<br />
Serial.print(LowByte/2);<br />
Serial.print(":");<br />
Serial.print(TReading);</p>
<p></code></p>
<p> </p>
<p><code> Serial.println();<br />
}<br />
</code></p>
<p>More references: <a href="http://www.arduino.cc/playground/Learning/OneWire">Arduino playground</a>, <a href="http://www.arduino.cc/cgi-bin/yabb2/YaBB.pl?num=1161557194">arduino forum</a> &amp; <a href="http://phanderson.com/arduino/ds18b20_1.html">phanderson</a></p>
]]></content:encoded>
			<wfw:commentRss>http://m-teo.aprendizdetodo.es/2009/02/19/reading-temperature-maxim-ds18x20/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Acelerometer as UI</title>
		<link>http://m-teo.aprendizdetodo.es/2009/02/12/acelerometer-as-ui/</link>
		<comments>http://m-teo.aprendizdetodo.es/2009/02/12/acelerometer-as-ui/#comments</comments>
		<pubDate>Thu, 12 Feb 2009 17:48:10 +0000</pubDate>
		<dc:creator>aprendiz</dc:creator>
				<category><![CDATA[ideas]]></category>
		<category><![CDATA[acelerometer]]></category>
		<category><![CDATA[ui]]></category>

		<guid isPermaLink="false">http://m-teo.aprendizdetodo.es/?p=55</guid>
		<description><![CDATA[An acelerometer can make more easy to use a gadget. In this video there are some interesting ideas From Hacked Gadget]]></description>
			<content:encoded><![CDATA[<p>An acelerometer can make more easy to use a gadget.</p>
<p>In this video there are some interesting ideas</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/ersFcYnVIVY&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=en&#038;feature=player_embedded&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/ersFcYnVIVY&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=en&#038;feature=player_embedded&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p>From <a href="http://hackedgadgets.com/2009/01/28/motion-controlled-mp3-player/">Hacked Gadget</a></p>
]]></content:encoded>
			<wfw:commentRss>http://m-teo.aprendizdetodo.es/2009/02/12/acelerometer-as-ui/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Breadboard Tips &amp; Tricks</title>
		<link>http://m-teo.aprendizdetodo.es/2009/02/12/breadboard-tips-tricks/</link>
		<comments>http://m-teo.aprendizdetodo.es/2009/02/12/breadboard-tips-tricks/#comments</comments>
		<pubDate>Thu, 12 Feb 2009 17:36:26 +0000</pubDate>
		<dc:creator>aprendiz</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[breadboards]]></category>
		<category><![CDATA[tips & tricks]]></category>

		<guid isPermaLink="false">http://m-teo.aprendizdetodo.es/?p=53</guid>
		<description><![CDATA[Losts of usefull tricks]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.instructables.com/id/SN3RFDNFQ6EFCTN/">Losts of usefull tricks</a></p>
<p><img class="alignleft" title="breadboard tips &amp; tricks" src="http://www.instructables.com/files/deriv/FUE/B3J4/FQ6EFCZ5/FUEB3J4FQ6EFCZ5.MEDIUM.jpg" alt="" width="500" height="375" /></p>
]]></content:encoded>
			<wfw:commentRss>http://m-teo.aprendizdetodo.es/2009/02/12/breadboard-tips-tricks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Talking about money&#8230;</title>
		<link>http://m-teo.aprendizdetodo.es/2009/02/08/talking-about-money/</link>
		<comments>http://m-teo.aprendizdetodo.es/2009/02/08/talking-about-money/#comments</comments>
		<pubDate>Sun, 08 Feb 2009 21:44:20 +0000</pubDate>
		<dc:creator>aprendiz</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://m-teo.aprendizdetodo.es/?p=40</guid>
		<description><![CDATA[Depending of the cash: Basic Bare Bones System: 2 x RBBB 2 x 11.5$ rf Module transmitter 3.95$ rfModule receiver 2 x 5.95$ 16 x 2 blue character LCD (using parallel conection) 9$ meteorological sensors &#8212;&#8211; Basic System 2 x RBBB 2 x 11.5$ rf Module transmitter 3.95$ rfModule receiver 2 x 5.95$ 16 x [...]]]></description>
			<content:encoded><![CDATA[<p>Depending of the cash:</p>
<h3>Basic Bare Bones System:</h3>
<ul>
<li>2 x <a href="http://www.moderndevice.com/RBBB_revB.shtml">RBBB</a> 2 x 11.5$</li>
<li>rf Module transmitter  3.95$</li>
<li>rfModule receiver 2 x 5.95$</li>
<li>16 x 2 blue character <a href="http://www.moderndevice.com/LCD.shtml">LCD</a> (using parallel conection) 9$</li>
<li>meteorological sensors &#8212;&#8211;</li>
</ul>
<p><strong>Basic System</strong></p>
<ul>
<li>2 x <a href="http://www.moderndevice.com/RBBB_revB.shtml">RBBB</a> 2 x 11.5$</li>
<li>rf Module transmitter  3.95$</li>
<li>rfModule receiver 2 x 5.95$</li>
<li>16 x 2 blue character <a href="http://www.moderndevice.com/LCD.shtml">LCD</a> 9$</li>
<li>LCD117 Serial LCD 17$</li>
<li>meteorological sensors &#8212;&#8211;</li>
</ul>
<p><strong>Big system</strong></p>
<ul>
<li>Big Led Matrix</li>
<li>2 x <a href="http://www.moderndevice.com/RBBB_revB.shtml">RBBB</a> 2 x 11.5$</li>
<li>2x rf transceiver (bidirectional)</li>
<li>LCD117 Serial LCD 17$</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://m-teo.aprendizdetodo.es/2009/02/08/talking-about-money/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RF modules selected</title>
		<link>http://m-teo.aprendizdetodo.es/2009/02/08/rf-modules-selected/</link>
		<comments>http://m-teo.aprendizdetodo.es/2009/02/08/rf-modules-selected/#comments</comments>
		<pubDate>Sun, 08 Feb 2009 21:30:40 +0000</pubDate>
		<dc:creator>aprendiz</dc:creator>
				<category><![CDATA[rf]]></category>
		<category><![CDATA[shopping]]></category>
		<category><![CDATA[sparkfun]]></category>

		<guid isPermaLink="false">http://m-teo.aprendizdetodo.es/?p=44</guid>
		<description><![CDATA[Finally I decide to use a 434MHz transmitter and receiver from sparkfun. They operate oviously in the 434MHz band, a hundred o meters away (in open area) and needs between 2 and 12v feeding and admit 2400 o 4800 bps. Transmiter datasheet Receiver datasheet Interesting tutorial (arduino code included) AVR rf tutorial]]></description>
			<content:encoded><![CDATA[<p>Finally I decide to use a <a href="http://www.sparkfun.com/commerce/product_info.php?products_id=8946">434MHz transmitter and receiver </a><img class="alignleft" style="margin: 10px;" title="transmitter" src="http://www.sparkfun.com/commerce/images/products/08946-03-L.jpg" alt="" width="280" height="280" /><img class="alignright" style="margin: 10px;" title="Receiver" src="http://www.sparkfun.com/commerce/images/products/08950-03-L.jpg" alt="" width="280" height="280" />from sparkfun.</p>
<p>They operate oviously in the 434MHz band, a hundred o meters away (in open area) and needs between 2 and 12v feeding and admit 2400 o 4800 bps.</p>
<p><a href="http://www.sparkfun.com/datasheets/Wireless/General/MO-SAWR.pdf">Transmiter datasheet</a><br />
<a href="http://www.sparkfun.com/datasheets/Wireless/General/MO-RX3400.pdf">Receiver datasheet</a><br />
<a href="http://www.sparkfun.com/datasheets/RF/KLP_Walkthrough.pdf">Interesting tutorial</a> (arduino code included)<br />
<a href="http://winavr.scienceprog.com/example-avr-projects/running-tx433-and-rx433-rf-modules-with-avr-microcontrollers.html">AVR rf tutorial</a></p>
]]></content:encoded>
			<wfw:commentRss>http://m-teo.aprendizdetodo.es/2009/02/08/rf-modules-selected/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Assembly a RBBB arduino</title>
		<link>http://m-teo.aprendizdetodo.es/2009/02/05/assembly-a-rbbb-arduino/</link>
		<comments>http://m-teo.aprendizdetodo.es/2009/02/05/assembly-a-rbbb-arduino/#comments</comments>
		<pubDate>Thu, 05 Feb 2009 08:28:08 +0000</pubDate>
		<dc:creator>aprendiz</dc:creator>
				<category><![CDATA[arduino]]></category>
		<category><![CDATA[micro]]></category>
		<category><![CDATA[modern device]]></category>
		<category><![CDATA[rbbb]]></category>
		<category><![CDATA[solder]]></category>

		<guid isPermaLink="false">http://m-teo.aprendizdetodo.es/?p=35</guid>
		<description><![CDATA[I&#8217;ve bought two RBBB arduino clone (Really Bare Bones Board) from Modern Device. It only has a pair of  electrolytic capacitors,  another pair of ceramic capacitors, a tiny resistor, a ceramic resonator, power connector and the output pins. All the stuff can be soldered in half an hour. I spent 2 hours in the first one because [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve bought two <a href="http://moderndevice.com/RBBB_revB.shtml" target="_blank">RBBB arduino clone</a> (Really Bare Bones Board) from <a href="http://moderndevice.com">Modern Device</a>.</p>
<p>It only has a pair of  electrolytic capacitors,  another pair of ceramic capacitors, a tiny resistor, a ceramic resonator, power connector and the output pins.</p>
<p>All the stuff can be soldered in half an hour. I spent 2 hours in the first one because a beginner mistake, and only 20 minutes in the second one.</p>
<p> </p>
<p> </p>
<div class="pie-gallery alignGalleryLeft">
<div class="pie-item" style="margin:10px 10px 10px 10px;">
<p class="pie-img-wrapper"><a href="http://picasaweb.google.com/javacasm/Rbbb/photo#5299086988496387154"><img class="pie-img" src="http://lh5.ggpht.com/_th3-DfE4E4k/SYojik84vFI/AAAAAAAAAuc/hxxcP87dnRM/DSCF6531.JPG?imgmax=144" alt="DSCF6531.JPG" width="144" height="96" /></a></p>
</div>
<div class="pie-item" style="margin:10px 10px 10px 10px;">
<p class="pie-img-wrapper"><a title="really little resister" href="http://picasaweb.google.com/javacasm/Rbbb/photo#5299087012374056690"><img class="pie-img" src="http://lh3.ggpht.com/_th3-DfE4E4k/SYojj95xDvI/AAAAAAAAAuk/I-odMUQnSBs/DSCF6532.JPG?imgmax=144" alt="really little resister" width="144" height="96" /></a></p>
<p class="pie-caption" style="width: 144;">really little resister</p>
</div>
<div class="pie-item" style="margin:10px 10px 10px 10px;">
<p class="pie-img-wrapper"><a title="Yes I've done!" href="http://picasaweb.google.com/javacasm/Rbbb/photo#5299087046839669826"><img class="pie-img" src="http://lh6.ggpht.com/_th3-DfE4E4k/SYojl-TAlEI/AAAAAAAAAu0/99LB63scGxU/DSCF6534.JPG?imgmax=144" alt="Yes I've done!" width="144" height="96" /></a></p>
<p class="pie-caption" style="width: 144;">Yes I&#8217;ve done!</p>
</div>
<div class="pie-item" style="margin:10px 10px 10px 10px;">
<p class="pie-img-wrapper"><a href="http://picasaweb.google.com/javacasm/Rbbb/photo#5299087126622908530"><img class="pie-img" src="http://lh5.ggpht.com/_th3-DfE4E4k/SYojqng0MHI/AAAAAAAAAvc/21HykEKfKdc/DSCF6539.JPG?imgmax=144" alt="DSCF6539.JPG" width="144" height="96" /></a></p>
</div>
<div class="pie-item" style="margin:10px 10px 10px 10px;">
<p class="pie-img-wrapper"><a href="http://picasaweb.google.com/javacasm/Rbbb/photo#5299087141414922018"><img class="pie-img" src="http://lh4.ggpht.com/_th3-DfE4E4k/SYojrengZyI/AAAAAAAAAvk/pSnsGtaXCcE/DSCF6540.JPG?imgmax=144" alt="DSCF6540.JPG" width="144" height="96" /></a></p>
</div>
<div class="pie-item" style="margin:10px 10px 10px 10px;">
<p class="pie-img-wrapper"><a href="http://picasaweb.google.com/javacasm/Rbbb/photo#5299087181960314114"><img class="pie-img" src="http://lh3.ggpht.com/_th3-DfE4E4k/SYojt1qR_QI/AAAAAAAAAv0/ctCeTlENHa8/DSCF6542.JPG?imgmax=144" alt="DSCF6542.JPG" width="144" height="96" /></a></p>
</div>
<div class="pie-item" style="margin:10px 10px 10px 10px;">
<p class="pie-img-wrapper"><a href="http://picasaweb.google.com/javacasm/Rbbb/photo#5299087201483418802"><img class="pie-img" src="http://lh6.ggpht.com/_th3-DfE4E4k/SYoju-Y87LI/AAAAAAAAAv8/ipsL4iOllh0/DSCF6543.JPG?imgmax=144" alt="DSCF6543.JPG" width="144" height="96" /></a></p>
</div>
<div class="pie-item" style="margin:10px 10px 10px 10px;">
<p class="pie-img-wrapper"><a href="http://picasaweb.google.com/javacasm/Rbbb/photo#5299087230368757634"><img class="pie-img" src="http://lh5.ggpht.com/_th3-DfE4E4k/SYojwp_wN4I/AAAAAAAAAwM/Di6teXcd8AA/DSCF6545.JPG?imgmax=144" alt="DSCF6545.JPG" width="144" height="96" /></a></p>
</div>
</div>
<p> </p>
<p> </p>
<p> </p>
<div class="pie-gallery alignGalleryLeft"></div>
]]></content:encoded>
			<wfw:commentRss>http://m-teo.aprendizdetodo.es/2009/02/05/assembly-a-rbbb-arduino/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Selected the led-matrix</title>
		<link>http://m-teo.aprendizdetodo.es/2009/02/03/selected-the-led-matrix/</link>
		<comments>http://m-teo.aprendizdetodo.es/2009/02/03/selected-the-led-matrix/#comments</comments>
		<pubDate>Tue, 03 Feb 2009 15:39:41 +0000</pubDate>
		<dc:creator>aprendiz</dc:creator>
				<category><![CDATA[shopping]]></category>
		<category><![CDATA[ebay]]></category>
		<category><![CDATA[led-matrix]]></category>

		<guid isPermaLink="false">http://m-teo.aprendizdetodo.es/?p=29</guid>
		<description><![CDATA[led matrix dance This is the selected led matrix. It uses the HT1632 LED display controller that support 16 bright level of 24 x 16 leds. The board can by connect to other 3 in order to build a daisy chain block (96&#215;16 or 48&#215;32 or 24&#215;64). It support a SPI like protocol. An example, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.youtube.com/v/K9DI4feRN-M&amp;hl=es&amp;fs=1">led matrix dance</a></p>
<p>This is the <a href="http://www.sureelectronics.net/goods.php?id=142" target="_blank">selected led matrix</a><a href="http://www.sureelectronics.net/gallery.php?id=142&amp;img=1538"><img class="alignleft" style="margin: 5px;" title="24x16 led matrix" src="http://www.sureelectronics.net/images/200807/1215260994836905304.jpg" alt="24x16 red led matrix" width="288" height="288" /></a>. It uses the HT1632 LED display controller that support 16 bright level of 24 x 16 leds. The board can by connect to other 3 in order to build a daisy chain block (96&#215;16 or 48&#215;32 or 24&#215;64). It support a SPI like protocol.</p>
<p>An <a href="http://www.vabolis.lt/2009/01/18/atmega-usb-20-mini-led-matrica-is-sure-electronics/">example</a>, <a href="http://www.microframework.nl/projects/24x16-rgb-display-with-pwm/" target="_blank">one more</a></p>
]]></content:encoded>
			<wfw:commentRss>http://m-teo.aprendizdetodo.es/2009/02/03/selected-the-led-matrix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Starting a new project</title>
		<link>http://m-teo.aprendizdetodo.es/2009/02/03/starting-a-new-project/</link>
		<comments>http://m-teo.aprendizdetodo.es/2009/02/03/starting-a-new-project/#comments</comments>
		<pubDate>Tue, 03 Feb 2009 08:31:45 +0000</pubDate>
		<dc:creator>aprendiz</dc:creator>
				<category><![CDATA[about]]></category>
		<category><![CDATA[arduino]]></category>

		<guid isPermaLink="false">http://m-teo.aprendizdetodo.es/?p=3</guid>
		<description><![CDATA[Let&#8217;s start!! The idea is to develop a meteorological weather station with ardunio. There will be an central station with a big display and several slave units sending the external temperature and all the other weather conditions. PD: English is not my main language, sorry about my bad English.]]></description>
			<content:encoded><![CDATA[<p>Let&#8217;s start!!</p>
<p>The idea is to develop a meteorological weather station with ardunio.<br />
There will be an central station with a big display and several slave units sending the external temperature and all the other weather conditions.</p>
<p>PD: English is not my main language, sorry about my bad English.</p>
]]></content:encoded>
			<wfw:commentRss>http://m-teo.aprendizdetodo.es/2009/02/03/starting-a-new-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

