<?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>Matt Daubneys Blog &#187; example</title>
	<atom:link href="http://daubers.co.uk/tag/example/feed/" rel="self" type="application/rss+xml" />
	<link>http://daubers.co.uk</link>
	<description></description>
	<lastBuildDate>Sat, 07 Aug 2010 10:35:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Arduino and Easy Radios</title>
		<link>http://daubers.co.uk/2010/02/04/arduino-and-easy-radios/</link>
		<comments>http://daubers.co.uk/2010/02/04/arduino-and-easy-radios/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 09:55:41 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[EasyRadio]]></category>
		<category><![CDATA[arduino]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[easy-radio]]></category>
		<category><![CDATA[example]]></category>

		<guid isPermaLink="false">http://daubers.co.uk/?p=264</guid>
		<description><![CDATA[A few days ago I received a pair of Easy Radios to help with a project I&#8217;m working on. Since I&#8217;ve never used these before (having only got my first arduino a couple of weeks ago) I had a dig on the net for information on how to use them. Since this information was quite [...]]]></description>
			<content:encoded><![CDATA[<p>A few days ago I received a pair of Easy Radios to help with a project I&#8217;m working on. Since I&#8217;ve never used these before (having only got my first arduino a couple of weeks ago) I had a dig on the net for information on how to use them. Since this information was quite sparse, I thought I&#8217;d put up my experimental rig to show it working. This setup requires 2 arduinos, an easy radio transmitter and an easy radio receiver.  First, the transmitter layout.</p>
<div id="attachment_276" class="wp-caption aligncenter" style="width: 222px"><a href="http://daubers.co.uk/wp-content/uploads/2010/02/transmit.png"><img class="size-medium wp-image-276" title="Transmitter Layout" src="http://daubers.co.uk/wp-content/uploads/2010/02/transmit-212x300.png" alt="Transmitter Layout" width="212" height="300" /></a><p class="wp-caption-text">Transmitter Layout</p></div>
<p style="text-align: left;">Now the receiver layout.</p>
<div id="attachment_275" class="wp-caption aligncenter" style="width: 222px"><a href="http://daubers.co.uk/wp-content/uploads/2010/02/recieve.png"><img class="size-medium wp-image-275" title="Receiver Layout" src="http://daubers.co.uk/wp-content/uploads/2010/02/recieve-212x300.png" alt="Receiver Layout" width="212" height="300" /></a><p class="wp-caption-text">Receiver Layout</p></div>
<p style="text-align: center;">
<p style="text-align: left;">and finally the code.</p>
<p style="text-align: left;"><span style="font-family: Consolas, Monaco, 'Courier New', Courier, monospace; line-height: 18px; font-size: 12px; white-space: pre;">#reciever code</span></p>
<pre lang="C" line="1">
void setup() {
    Serial.begin(19200);
}
void loop() {
    if (Serial.available()){
        Serial.print(Serial.read(), BYTE);
    }
}
</pre>
<pre lang="C" line="1">
#transmitter code
void setup() {
    Serial.begin(19200);
}

void loop() {
    Serial.write("Hello\n");
    delay(1000);
}
</pre>
<p>This should result in the receiver outputting &#8220;Hello&#8221; over and over across the USB serial in the arduino environments serial monitor. If you have any problems, feel free to give me a shout! Oh, make sure you unplug the easy radio receiver from the arduino before flashing it, it&#8217;ll throw nasty errors otherwise. (Simply unplug digital 0 pin on the arduino board)</p>
]]></content:encoded>
			<wfw:commentRss>http://daubers.co.uk/2010/02/04/arduino-and-easy-radios/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
