<?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=4&amp;t=1913" />

<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>2007-11-14T10:28:56+01:00</updated>

<author><name><![CDATA[RoboSavvy Forum]]></name></author>
<id>http://forum.robosavvy.com/feed.php?f=4&amp;t=1913</id>
<entry>
<author><name><![CDATA[kevdemed]]></name></author>
<updated>2007-11-14T10:28:56+01:00</updated>
<published>2007-11-14T10:28:56+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=1913&amp;p=12289#p12289</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=1913&amp;p=12289#p12289"/>
<title type="html"><![CDATA[Yen.]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=1913&amp;p=12289#p12289"><![CDATA[
<img src="http://forum.robosavvy.com/images/smilies/icon_biggrin.gif" alt=":D" title="Very Happy" /> SWEET!<br /><br />Thanks for all the info.<br /><br />It's a great help!<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=600">kevdemed</a> — Wed Nov 14, 2007 10:28 am</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[i-Bot]]></name></author>
<updated>2007-11-14T10:04:00+01:00</updated>
<published>2007-11-14T10:04:00+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=1913&amp;p=12287#p12287</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=1913&amp;p=12287#p12287"/>
<title type="html"><![CDATA[Yen.]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=1913&amp;p=12287#p12287"><![CDATA[
In this thread there is a small part of the template for the Hitec PS2 controller.<br /><!-- m --><a class="postlink" href="http://robosavvy.com/forum/viewtopic.php?t=1797">http://robosavvy.com/forum/viewtopic.php?t=1797</a><!-- m --><br /><br />The following is my template. It is bit more simple than the Hitec one, since I encode the buttons into a single byte.<br /><br />The value from the joystick in this example is between 10 and 190. The button pressure is between 1 and 15<br /><br /><br />' Template program for PS2 wireless controller<br />' Richard Ibbotson November 2007<br />' PS2 wireless controller in DS2 mode connected to ETX/ERX<br /><br />DIM rr AS BYTE' first variable is reserved<br />DIM txchar AS BYTE' store for cahracter to send to controller<br />DIM rxchar AS BYTE<br /><br />'Empty the ERX buffer<br />begin:<br />ERX 19200, rxchar, bemt1<br />bemt1: <br />ERX 19200, rxchar, bemt2 <br />bemt2:<br /><br />' Set the PS2 controller to DS2 mode<br />txchar = &quot;W&quot;<br />ETX 19200, txchar <br />GETW: <br />ERX 19200, rxchar, GETW <br /><br />'-----------------------------------------------------------------------<br />' Motion Startup Stuff, note this is special for double knee joins<br />PTP SETON<br />PTP ALLON<br /><br /><br />DIR G6A,1,0,0,0,1,0<br />DIR G6B,1,1,1,1,1,1<br />DIR G6C,0,0,0,0,0,0<br />DIR G6D,0,1,1,1,0,1<br /><br />'GETMOTORSET G6A,1,1,1,1,1,1<br />'GETMOTORSET G6B,1,1,1,0,0,0<br />'GETMOTORSET G6C,1,1,1,0,0,1<br />'GETMOTORSET G6D,1,1,1,1,1,1<br /><br />SPEED 5<br /><br />MOTOR G6A<br />MOTOR G6B<br />MOTOR G6C<br />MOTOR G6D<br /><br />'Example Gyro Setup Code<br />GYROSET G6A,0,0,0,0,0,0<br />GYROSET G6D,0,0,0,0,0,0<br /><br />GYRODIR G6A,0,1,1,0,1,1<br />GYRODIR G6D,0,1,1,0,1,1<br /><br />GYROSENSE G6A,0,200,200,0,0,0<br />GYROSENSE G6D,0,200,200,0,0,0<br /><br />GOSUB Standard_pose<br />'-----------------------------------------------------------------------<br /><br /><br />MUSIC &quot;CDE&quot;<br /><br />MAIN:<br />'Read the PS2 buttons<br />txchar =&quot;X&quot; <br />ETX 19200, txchar <br />GETX: <br />ERX 19200, rxchar, GETX <br /><br />IF rxchar &gt; 0 AND rxchar &lt; 17 THEN<br />ON rxchar GOTO MAIN,K1,K2,K3,K4,K5,K6, K7, K8, K9, K10, K11, K12, K13, K14, K15, K16<br />ENDIF<br />GOTO MAIN<br /><br />K1: ' Left Button<br /><br />GOTO MAIN<br /><br />K2:' Down Button<br /><br />GOTO MAIN<br /><br />K3:' Right Button<br /><br />GOTO MAIN<br /><br />K4:' Up Button<br /><br />GOTO MAIN<br /><br />K5:' Start ButtonUse to force restart<br /><br />GOTO begin<br /><br />K6:' Right Joystick Button<br /> 'read the Right joystick position<br />txchar =&quot;C&quot; <br />ETX 19200, txchar <br />GETC: <br />ERX 19200, rxchar, GETC<br />SERVO 17,rxchar<br /><br /><br />GOTO MAIN<br /><br />K7: ' Left Joystick Button<br /><br />GOTO MAIN<br /><br />K8:' Select Button<br /><br />GOTO MAIN<br /><br />K9:' Square Button<br /><br />GOTO MAIN<br /><br />K10:' Cross Button<br /><br />GOTO MAIN<br /><br />K11:' Circle Button<br /><br />GOTO MAIN<br /><br />K12:' Triangle Button<br /><br />GOTO MAIN<br /><br />K13:' R1 Button<br />' read the R1 button pressure<br />txchar =&quot;P&quot; <br />ETX 19200, txchar <br />GETP: <br />ERX 19200, rxchar, GETP<br />SPEED rxchar<br />MOVE G6B,100,70,80,100,100,<br />WAIT<br />SPEED 5 <br />GOSUB Standard_Pose<br /><br />GOTO MAIN<br /><br />K14:' L1 Button<br /><br />GOTO MAIN<br /><br />K15:' R2 Button<br /><br />GOTO MAIN<br /><br />K16:' L2 Button<br /><br />GOTO MAIN<br /><br />'================================================<br />Standard_Pose:<br />MOVE G6A, 100,85,90,90,90,100<br />MOVE G6D, 100,85,90,90,90,100<br />MOVE G6B, 100,30,80,100,100,100<br />MOVE G6C, 100,30,80,100,100,100<br />WAIT<br />RETURN<br />'================================================<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=159">i-Bot</a> — Wed Nov 14, 2007 10:04 am</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[tempusmaster]]></name></author>
<updated>2007-11-14T09:39:15+01:00</updated>
<published>2007-11-14T09:39:15+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=1913&amp;p=12285#p12285</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=1913&amp;p=12285#p12285"/>
<title type="html"><![CDATA[Yen.]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=1913&amp;p=12285#p12285"><![CDATA[
<blockquote><div><cite>kevdemed wrote:</cite><br />Awesome!<br /><br />Thanks for he help!<br /><br />As for a link to the controller, here ya go!<br /><br /><!-- m --><a class="postlink" href="http://www.rt-net.jp/index.php?main_page=product_info&amp;products_id=381">http://www.rt-net.jp/index.php?main_pag ... cts_id=381</a><!-- m --><br /><br />i-bot showed it to me.<br /><br />I'm not exactly sure how to set up, program or if it comes with a guide, but If you know how to program, let me know.<br /><br />Thanks! <img src="http://forum.robosavvy.com/images/smilies/icon_biggrin.gif" alt=":D" title="Very Happy" /><br /></div></blockquote><br />It is pretty neat. Several of the Robonova users here really like using it.<br /><br />As for 'programming it', if you click on the English link (British flag in the left side bar) it says:<br /><br /><span style="font-weight: bold"><blockquote class="uncited"><div><br />Wireless controller (optional set) for ROBONOVA-1.<br /><br />INCLUDED:<br />- wireless controller<br />- connector / converter for robot micro computer<br />- chest cover for conversion<br />- template program CD<br /><br />Conversion is basically switching parts, and over 60 movements become possible.<br />Choose from four colors: white, black, blue, and red.<br /></div></blockquote></span><br /><br />While the Yen/Dollar conversion above is a good ballpark figure, actual rates will be different since you have to pay a currency conversion commission, and of course there are always some shipping and handling fees. The RT staff does speak English, so if you email them I'm sure they can give you some exact costs.<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=56">tempusmaster</a> — Wed Nov 14, 2007 9:39 am</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[kevdemed]]></name></author>
<updated>2007-11-14T04:13:21+01:00</updated>
<published>2007-11-14T04:13:21+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=1913&amp;p=12278#p12278</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=1913&amp;p=12278#p12278"/>
<title type="html"><![CDATA[Yen.]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=1913&amp;p=12278#p12278"><![CDATA[
Awesome!<br /><br />Thanks for he help!<br /><br />As for a link to the controller, here ya go!<br /><br /><!-- m --><a class="postlink" href="http://www.rt-net.jp/index.php?main_page=product_info&amp;products_id=381">http://www.rt-net.jp/index.php?main_pag ... cts_id=381</a><!-- m --><br /><br />i-bot showed it to me.<br /><br />I'm not exactly sure how to set up, program or if it comes with a guide, but If you know how to program, let me know.<br /><br />Thanks! <img src="http://forum.robosavvy.com/images/smilies/icon_biggrin.gif" alt=":D" title="Very Happy" /><p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=600">kevdemed</a> — Wed Nov 14, 2007 4:13 am</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[chitownrobo]]></name></author>
<updated>2007-11-14T01:57:48+01:00</updated>
<published>2007-11-14T01:57:48+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=1913&amp;p=12267#p12267</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=1913&amp;p=12267#p12267"/>
<title type="html"><![CDATA[Yen.]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=1913&amp;p=12267#p12267"><![CDATA[
9,800 yen is 89.05 us dollars<br /><br />here is how I found out<br /><br /><a href="http://coinmill.com/JPY_USD.html#JPY=9,800" class="postlink">http://coinmill.com/JPY_USD.html#JPY=9,800</a><br /><br />Do you have the link to the controller your getting would like to check it out<br /><br />Thanks<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=803">chitownrobo</a> — Wed Nov 14, 2007 1:57 am</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[kevdemed]]></name></author>
<updated>2007-11-14T01:49:33+01:00</updated>
<published>2007-11-14T01:49:33+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=1913&amp;p=12266#p12266</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=1913&amp;p=12266#p12266"/>
<title type="html"><![CDATA[Yen.]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=1913&amp;p=12266#p12266"><![CDATA[
I want to buy a controller from a Japanese site, but I do not know how to transfer yen into dollars.<br /><br />Whenever I use the translator site, it doesn't give me the right amount.<br /><br />The amount is 9,800 yen.<br /><br />Thanks!<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=600">kevdemed</a> — Wed Nov 14, 2007 1:49 am</p><hr />
]]></content>
</entry>
</feed>