<?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>Unduino</title>
	<atom:link href="http://unduino.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://unduino.com</link>
	<description></description>
	<lastBuildDate>Sun, 31 Oct 2010 16:27:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Morse Code Library</title>
		<link>http://unduino.com/2010/10/31/morse-code-library/</link>
		<comments>http://unduino.com/2010/10/31/morse-code-library/#comments</comments>
		<pubDate>Sun, 31 Oct 2010 09:01:46 +0000</pubDate>
		<dc:creator>ryno</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[morse code]]></category>
		<category><![CDATA[project]]></category>

		<guid isPermaLink="false">http://unduino.com/?p=14</guid>
		<description><![CDATA[Morse code was created in the 1800’s by Samuel Morse to transmit information over the telegraph. Messages can be transmitted by encoding words and numbers into a series long and short pulses, commonly referred to as ’dahs’ and ‘dits’. Using Morse code is a quick and simple way to display error codes while developing code [...]]]></description>
			<content:encoded><![CDATA[<p>Morse code was created in the 1800’s by Samuel Morse to transmit information over the telegraph. Messages can be transmitted by encoding words and numbers into a series long and short pulses, commonly referred to as ’dahs’ and ‘dits’.</p>
<p>Using Morse code is a quick and simple way to display error codes while developing code for your Unduino.</p>
<p>This library is easily integrated to your application by including MorseCode.c and MorseCode.h and then following the instructions in MorseCode.h</p>
<p><strong>Instructions</strong></p>
<ol>
<li>include MorseCode.c and MorseCode.h in your project.</li>
<li>add #include&#8221;MorseCode.h&#8221; atop any file that will be calling this library</li>
<li>set output pin in MorseCode.h by modifying MORSECODE_PIN and MORSECODE_TRIS</li>
<li>set output active/inactive states in MORSECODE_PIN_ACTIVE and MORSECODE_PIN_INACTIVE</li>
<li>set output rate in words per minute in MORSECODE_WPM</li>
<li>in your startup code, call MorseCodeInit();</li>
<li>use MorseCodePutChar() or MorseCodePutStr() to send a message.</li>
</ol>
<p><strong>For Example</strong></p>
<p><code>MorseCodeInit();	 //initialize the library</code><br />
<code>MorseCodePutChar( 'X' );	//send the X character</code><br />
<code>MorseCodePutStr( "HELLO" ); //send the string "HELLO"</code><br />
<strong>Download: </strong><a href="http://unduino.com/wp-content/uploads/2010/10/MorseCode.zip"><strong>Morse Code Project</strong></a> Version Zero</p>
]]></content:encoded>
			<wfw:commentRss>http://unduino.com/2010/10/31/morse-code-library/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

