<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Siggi&#039;s Projects</title>
	<atom:link href="http://siggiorn.com/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://siggiorn.com</link>
	<description>A collection of past and present projects - robots, electronics and software</description>
	<lastBuildDate>Thu, 17 May 2012 22:42:38 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4-beta3-20647</generator>
	<item>
		<title>Comment on Arduino &#8211; Circular Byte Buffer by Siggi</title>
		<link>http://siggiorn.com/?p=460&#038;cpage=1#comment-306</link>
		<dc:creator>Siggi</dc:creator>
		<pubDate>Thu, 17 May 2012 22:42:38 +0000</pubDate>
		<guid isPermaLink="false">http://siggiorn.com/?p=460#comment-306</guid>
		<description>yes Demolishun, I believe that to be the case</description>
		<content:encoded><![CDATA[<p>yes Demolishun, I believe that to be the case</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Arduino &#8211; Circular Byte Buffer by Demolishun</title>
		<link>http://siggiorn.com/?p=460&#038;cpage=1#comment-305</link>
		<dc:creator>Demolishun</dc:creator>
		<pubDate>Sat, 12 May 2012 22:15:01 +0000</pubDate>
		<guid isPermaLink="false">http://siggiorn.com/?p=460#comment-305</guid>
		<description>I looked at the code and it looks like it is big endian data format.  This would be consistent with network endianness.  Am I seeing this right?  I am planning on using this code to build another protocol on top that uses big endian numbers.</description>
		<content:encoded><![CDATA[<p>I looked at the code and it looks like it is big endian data format.  This would be consistent with network endianness.  Am I seeing this right?  I am planning on using this code to build another protocol on top that uses big endian numbers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Arduino &#8211; Circular Byte Buffer by Siggi</title>
		<link>http://siggiorn.com/?p=460&#038;cpage=1#comment-303</link>
		<dc:creator>Siggi</dc:creator>
		<pubDate>Tue, 08 May 2012 21:26:02 +0000</pubDate>
		<guid isPermaLink="false">http://siggiorn.com/?p=460#comment-303</guid>
		<description>Thanks Benjamin, I have now incorporated this change in the libraries</description>
		<content:encoded><![CDATA[<p>Thanks Benjamin, I have now incorporated this change in the libraries</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Arduino &#8211; Circular Byte Buffer by Benjamin</title>
		<link>http://siggiorn.com/?p=460&#038;cpage=1#comment-302</link>
		<dc:creator>Benjamin</dc:creator>
		<pubDate>Thu, 03 May 2012 19:04:01 +0000</pubDate>
		<guid isPermaLink="false">http://siggiorn.com/?p=460#comment-302</guid>
		<description>I just tried to use the libary but with the Arduino IDE 1.00 you have to replace

#include &quot;WProgram.h&quot;

to

#if defined(ARDUINO) &amp;&amp; ARDUINO &gt;= 100
#include &quot;Arduino.h&quot;
#else
#include &quot;WProgram.h&quot;
#endif

in the ByteBuffer.h and the ByteBuffer.cpp

(from http://markus.jabs.name/2011/12/arduino-kennt-wprogram-nicht-mehr/)

Hope it helps someone.

Greetings!</description>
		<content:encoded><![CDATA[<p>I just tried to use the libary but with the Arduino IDE 1.00 you have to replace</p>
<p>#include &#8220;WProgram.h&#8221;</p>
<p>to</p>
<p>#if defined(ARDUINO) &amp;&amp; ARDUINO &gt;= 100<br />
#include &#8220;Arduino.h&#8221;<br />
#else<br />
#include &#8220;WProgram.h&#8221;<br />
#endif</p>
<p>in the ByteBuffer.h and the ByteBuffer.cpp</p>
<p>(from <a href="http://markus.jabs.name/2011/12/arduino-kennt-wprogram-nicht-mehr/" rel="nofollow">http://markus.jabs.name/2011/12/arduino-kennt-wprogram-nicht-mehr/</a>)</p>
<p>Hope it helps someone.</p>
<p>Greetings!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Arduino &#8211; Buffered, Non-Blocking Serial Packet Manager by Andy Shillabeer</title>
		<link>http://siggiorn.com/?p=470&#038;cpage=1#comment-291</link>
		<dc:creator>Andy Shillabeer</dc:creator>
		<pubDate>Fri, 06 Apr 2012 16:54:42 +0000</pubDate>
		<guid isPermaLink="false">http://siggiorn.com/?p=470#comment-291</guid>
		<description>Hey there,

I am curious is this might help me with some serial communication troubles I am having using arduino mega&#039;s and xbee pro 900 wireless.

I am trying to read step and direction inputs into one arduino (for a total of 5 pairs of inputs) and send those over xbee to a second arduino mega which then outputs the step/direction signals to 5 stepper motors. 

I have the basic communication link working but the actual output is not controlling the motors right and so I am thinking that maybe the way my serial data is being sent and received may be causing the data to get corrupted, dropped or just exceeding the transfer rate.

Any thoughts?</description>
		<content:encoded><![CDATA[<p>Hey there,</p>
<p>I am curious is this might help me with some serial communication troubles I am having using arduino mega&#8217;s and xbee pro 900 wireless.</p>
<p>I am trying to read step and direction inputs into one arduino (for a total of 5 pairs of inputs) and send those over xbee to a second arduino mega which then outputs the step/direction signals to 5 stepper motors. </p>
<p>I have the basic communication link working but the actual output is not controlling the motors right and so I am thinking that maybe the way my serial data is being sent and received may be causing the data to get corrupted, dropped or just exceeding the transfer rate.</p>
<p>Any thoughts?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress – Arras Theme – Randomize order of posts in featured slideshow by Tony</title>
		<link>http://siggiorn.com/?p=398&#038;cpage=1#comment-234</link>
		<dc:creator>Tony</dc:creator>
		<pubDate>Mon, 03 Oct 2011 19:44:31 +0000</pubDate>
		<guid isPermaLink="false">http://siggiorn.com/?p=398#comment-234</guid>
		<description>just a THANKS! Saved me some time!</description>
		<content:encoded><![CDATA[<p>just a THANKS! Saved me some time!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MCB Mini – Motor control scheme by Seabird Designs</title>
		<link>http://siggiorn.com/?p=242&#038;cpage=1#comment-228</link>
		<dc:creator>Seabird Designs</dc:creator>
		<pubDate>Mon, 12 Sep 2011 05:54:41 +0000</pubDate>
		<guid isPermaLink="false">http://siggi.scripts.mit.edu/projects/?p=242#comment-228</guid>
		<description>&lt;strong&gt;... Siggiorn.com...&lt;/strong&gt;

[...] Find More Informations here: siggiorn.com/?p=242 [...]...</description>
		<content:encoded><![CDATA[<p><strong>&#8230; Siggiorn.com&#8230;</strong></p>
<p>[...] Find More Informations here: siggiorn.com/?p=242 [...]&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress – Arras Theme – Randomize order of posts in featured slideshow by Kristin</title>
		<link>http://siggiorn.com/?p=398&#038;cpage=1#comment-221</link>
		<dc:creator>Kristin</dc:creator>
		<pubDate>Mon, 22 Aug 2011 02:30:43 +0000</pubDate>
		<guid isPermaLink="false">http://siggiorn.com/?p=398#comment-221</guid>
		<description>This fix worked great and was super easy, THANKS!!! one note though, as Andrew said above, the line you need to modify is in the slideshow.php file in the library folder.  I&#039;m using Arras v. 1.5</description>
		<content:encoded><![CDATA[<p>This fix worked great and was super easy, THANKS!!! one note though, as Andrew said above, the line you need to modify is in the slideshow.php file in the library folder.  I&#8217;m using Arras v. 1.5</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 16-Channel Servo Controller by Jim</title>
		<link>http://siggiorn.com/?p=83&#038;cpage=1#comment-214</link>
		<dc:creator>Jim</dc:creator>
		<pubDate>Tue, 21 Jun 2011 03:13:00 +0000</pubDate>
		<guid isPermaLink="false">http://siggi.scripts.mit.edu/projects/?p=83#comment-214</guid>
		<description>Unfortunately there appears to be a fair bit of jitter - evident by the fact that the servos that should be stationary are jumping around. Scheduler needs some tuning...</description>
		<content:encoded><![CDATA[<p>Unfortunately there appears to be a fair bit of jitter &#8211; evident by the fact that the servos that should be stationary are jumping around. Scheduler needs some tuning&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MeBot – A robotic platform for socially embodied telepresence by Hester</title>
		<link>http://siggiorn.com/?p=128&#038;cpage=1#comment-203</link>
		<dc:creator>Hester</dc:creator>
		<pubDate>Wed, 08 Jun 2011 16:09:58 +0000</pubDate>
		<guid isPermaLink="false">http://siggi.scripts.mit.edu/projects/?p=128#comment-203</guid>
		<description>Youre on top of the game. Thnkas for sharing.</description>
		<content:encoded><![CDATA[<p>Youre on top of the game. Thnkas for sharing.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

