<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-gb">
<link rel="self" type="application/atom+xml" href="http://forum.robosavvy.com/feed.php?f=21&amp;t=7268" />

<title>RoboSavvy Forum</title>
<subtitle>Robosavvy Forum: The largest online community of Humanoid Robot Builders</subtitle>
<link href="http://forum.robosavvy.com/index.php" />
<updated>2011-06-18T02:34:29+01:00</updated>

<author><name><![CDATA[RoboSavvy Forum]]></name></author>
<id>http://forum.robosavvy.com/feed.php?f=21&amp;t=7268</id>
<entry>
<author><name><![CDATA[Raul]]></name></author>
<updated>2011-06-18T02:34:29+01:00</updated>
<published>2011-06-18T02:34:29+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=7268&amp;p=31533#p31533</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=7268&amp;p=31533#p31533"/>
<title type="html"><![CDATA[Arduino + RC Radio Remote Controller]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=7268&amp;p=31533#p31533"><![CDATA[
Thanks, i will check the code when i buy the rc radio.<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=812">Raul</a> — Sat Jun 18, 2011 2:34 am</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[nunogato]]></name></author>
<updated>2011-06-17T16:06:09+01:00</updated>
<published>2011-06-17T16:06:09+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=7268&amp;p=31529#p31529</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=7268&amp;p=31529#p31529"/>
<title type="html"><![CDATA[Arduino + RC Radio Remote Controller]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=7268&amp;p=31529#p31529"><![CDATA[
Hi Raul,<br /><br />You can use any RC receiver with the arduino, you will just use one arduino PIN for each channel you want to receive.<br /><br />Check the sample code of our <a href="http://robosavvy.com/store/product_info.php/products_id/1236" class="postlink">Wild Thumper</a> in this case it is reading only two channels of the RC Receiver, here is the code that deals with the RC input<br /><br /><dl class="codebox"><dt>Code: </dt><dd><code>  Speed=pulseIn&#40;RCleft,HIGH,25000&#41;;                           // read throttle/left stick<br />  Steer=pulseIn&#40;RCright,HIGH,25000&#41;;                          // read steering/right stick<br /><br /><br />  if &#40;Speed==0&#41; Speed=1500;                                   // if pulseIn times out &#40;25mS&#41; then set speed to stop<br />  if &#40;Steer==0&#41; Steer=1500;                                   // if pulseIn times out &#40;25mS&#41; then set steer to centre<br /><br />  if &#40;abs&#40;Speed-1500&#41;&lt;RCdeadband&#41; Speed=1500;                 // if Speed input is within deadband set to 1500 &#40;1500uS=center position for most servos&#41;<br />  if &#40;abs&#40;Steer-1500&#41;&lt;RCdeadband&gt;&#40;Leftcenter+RCdeadband&#41;&#41; Leftmode=0;          // if left input is forward then set left mode to forward<br />  if &#40;Rightspeed&gt;&#40;Rightcenter+RCdeadband&#41;&#41; Rightmode=0;       // if right input is forward then set right mode to forward<br /><br />  LeftPWM=abs&#40;Leftspeed-Leftcenter&#41;*10/scale;                 // scale 1000-2000uS to 0-255<br />  LeftPWM=min&#40;LeftPWM,255&#41;;                                   // set maximum limit 255<br /><br />  RightPWM=abs&#40;Rightspeed-Rightcenter&#41;*10/scale;              // scale 1000-2000uS to 0-255<br />  RightPWM=min&#40;RightPWM,255&#41;;                                 // set maximum limit 255<br /></code></dd></dl><p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=2018">nunogato</a> — Fri Jun 17, 2011 4:06 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[Raul]]></name></author>
<updated>2011-06-17T00:06:44+01:00</updated>
<published>2011-06-17T00:06:44+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=7268&amp;p=31522#p31522</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=7268&amp;p=31522#p31522"/>
<title type="html"><![CDATA[Arduino + RC Radio Remote Controller]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=7268&amp;p=31522#p31522"><![CDATA[
Hi, I am newbie to the world of robotic.<br /><br />I am lokking for a good remote control, and easy to work with arduino duemilanove.<br /> I have some ideas how use IR to control the arduino, i already found some projects do guide me, like Dagu - Mini Biped <!-- m --><a class="postlink" href="http://robosavvy.com/store/product_info.php/products_id/1207">http://robosavvy.com/store/product_info ... ts_id/1207</a><!-- m --> , but with IR the distance is limited.<br /><br />I found this on Robosavvy <!-- m --><a class="postlink" href="http://robosavvy.com/store/product_info.php/products_id/1236">http://robosavvy.com/store/product_info ... ts_id/1236</a><!-- m --> <br />1º I want know if we can use RC Radio Remote Controller 2.4Ghz 6Ch with arduino duemilanove or any other arduino?<br /><br />2º if is possible, the connection is made like the &quot;Wild Thumper Arduino Controller &quot;?<br /><!-- m --><a class="postlink" href="http://robosavvy.com/store/product_info.php/products_id/1168">http://robosavvy.com/store/product_info ... ts_id/1168</a><!-- m --><br />The RC Receiver module sould be connected to pin D0 and D1 of the Arduino.<br /><br />3º Or I can work with arduino duemilanove any RC radio remote controller??<br />like this one HobbyKing HK6DF 2.4Ghz FHSS 6Ch Tx &amp; Rx (Mode 2)<br /><!-- m --><a class="postlink" href="http://www.hobbyking.com/hobbyking/store/uh_viewItem.asp?idProduct=16239">http://www.hobbyking.com/hobbyking/stor ... duct=16239</a><!-- m --><br /><br /><br />Thanks<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=812">Raul</a> — Fri Jun 17, 2011 12:06 am</p><hr />
]]></content>
</entry>
</feed>