<?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>Nick Kamm </title>
	<atom:link href="http://nickkamm.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://nickkamm.com</link>
	<description>Let&#039;s make stuff</description>
	<lastBuildDate>Sun, 15 Jan 2017 18:19:34 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>Send integer values from arduino to arduino via serial</title>
		<link>http://nickkamm.com/send-integer-values-from-arduino-to-arduino-via-serial/</link>
		<comments>http://nickkamm.com/send-integer-values-from-arduino-to-arduino-via-serial/#respond</comments>
		<pubDate>Sun, 15 Jan 2017 17:49:46 +0000</pubDate>
		<dc:creator><![CDATA[Nick Kamm]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://nickkamm.com/?p=141</guid>
		<description><![CDATA[Download Code: https://github.com/nickkamm/Arduino-Serial-TX-RX &#160; Sending Code int x = 249; int y = 0; void setup() { Serial.begin(9600); } void loop() { while(x &#60; 255){ x = x + 1; // counts up y = y + 1; Serial.write(x); // x is sent first, acceptable range: 250-255 to set channel. Must be sent first. Serial.write(y);]]></description>
				<content:encoded><![CDATA[<p>Download Code: <a href="https://github.com/nickkamm/Arduino-Serial-TX-RX">https://github.com/nickkamm/Arduino-Serial-TX-RX</a></p>
<p>&nbsp;</p>
<h2>Sending Code</h2>
<pre>
int x = 249;
int y = 0;
void setup() {
Serial.begin(9600);
}

void loop() {

while(x &lt; 255){
x = x + 1; // counts up
y = y + 1;

Serial.write(x); // x is sent first, acceptable range: 250-255 to set channel. Must be sent first.
Serial.write(y); // y is channel value, acceptable range: 0-249;
delay(100);

if(x == 255){ // code to reset count
x = 249;
delay(200);
}
if(y == 249){ // code to reset count
y = 0;
}
}
}

</pre>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://nickkamm.com/send-integer-values-from-arduino-to-arduino-via-serial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Control Pan Tilt Servos using a PS2 Controller &#038; Arduino</title>
		<link>http://nickkamm.com/control-pan-tilt-servos-using-a-ps2-controller-arduino/</link>
		<comments>http://nickkamm.com/control-pan-tilt-servos-using-a-ps2-controller-arduino/#respond</comments>
		<pubDate>Sun, 08 Nov 2015 17:06:42 +0000</pubDate>
		<dc:creator><![CDATA[Nick Kamm]]></dc:creator>
				<category><![CDATA[Arduino]]></category>
		<category><![CDATA[PS2 Controller]]></category>

		<guid isPermaLink="false">http://nickkamm.com/?p=123</guid>
		<description><![CDATA[Control pan/tilt servos using a PS2 controller and an arduino. &#160; &#160; Download code here: https://github.com/nickkamm/PS2-Pan-Tilt &#160; &#160;]]></description>
				<content:encoded><![CDATA[<p>Control pan/tilt servos using a PS2 controller and an arduino.</p>
<p><iframe width="500" height="281" src="https://www.youtube.com/embed/dITFBgiiJYA?feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Download code here: <a href="https://github.com/nickkamm/PS2-Pan-Tilt">https://github.com/nickkamm/PS2-Pan-Tilt</a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://nickkamm.com/control-pan-tilt-servos-using-a-ps2-controller-arduino/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
