<?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=1808" />

<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-10-14T20:46:19+01:00</updated>

<author><name><![CDATA[RoboSavvy Forum]]></name></author>
<id>http://forum.robosavvy.com/feed.php?f=4&amp;t=1808</id>
<entry>
<author><name><![CDATA[aguiloco]]></name></author>
<updated>2007-10-14T20:46:19+01:00</updated>
<published>2007-10-14T20:46:19+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=1808&amp;p=11702#p11702</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=1808&amp;p=11702#p11702"/>
<title type="html"><![CDATA[programing questions]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=1808&amp;p=11702#p11702"><![CDATA[
Yes, this is better than mine, really I didn´t need to read the remocon signal if I can use subroutienes to increase or decrease the variable. I had to refine a little the code to make it work fine, thanks Gort!<br /><br />k4:<br />GOSUB mueve_mas<br />GOTO main_exit<br /><br />k5:<br />GOSUB mueve_menos<br />GOTO main_exit<br /><br /><br />mueve_mas:<br />SPEED 2<br />B=B+1<br />IF B&gt;120 THEN B=B-1<br />SERVO 13,B<br />RETURN<br /><br /><br />mueve_menos:<br />SPEED 2<br />B=B-1<br />IF B&lt;10 THEN B=B+1<br />SERVO 13,B<br />RETURN<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=406">aguiloco</a> — Sun Oct 14, 2007 8:46 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[Gort]]></name></author>
<updated>2007-10-12T20:00:03+01:00</updated>
<published>2007-10-12T20:00:03+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=1808&amp;p=11670#p11670</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=1808&amp;p=11670#p11670"/>
<title type="html"><![CDATA[programing questions]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=1808&amp;p=11670#p11670"><![CDATA[
I think this would work better?<br /><br />k4: GOSUB mueve_mas <br /><br />k5: GOSUB mueve_menos <br /><br /><br />mueve_mas:<br /> <br />B = B + 1 <br />SERVO 13,B <br />RETURN <br /><br /><br />mueve_menos: <br /> <br />B = B - 1 <br />SERVO 13,B <br />RETURN<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=174">Gort</a> — Fri Oct 12, 2007 8:00 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[aguiloco]]></name></author>
<updated>2007-10-11T21:36:21+01:00</updated>
<published>2007-10-11T21:36:21+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=1808&amp;p=11663#p11663</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=1808&amp;p=11663#p11663"/>
<title type="html"><![CDATA[programing questions]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=1808&amp;p=11663#p11663"><![CDATA[
I did that code:<br /><br />k4: GOSUB mueve_mas<br />k5: GOSUB mueve_menos<br />mueve_mas:<br />C=REMOCON(1)<br />IF C=0 THEN B=B+0 <br />IF C=1 THEN B=B+1<br />SERVO 13,B<br />RETURN<br /><br />And this works! I can increase 1º to one specific servo using only one key, but now the problem is to decrease 1º, with the comand &quot;C=REMOCON(1)&quot; I take a 1 if I press the key K4 and store at C, doing the servo move, but how I can decrease 1º? if I make another subroutine like this:<br /><br />mueve_menos:<br />C=REMOCON(1)<br />IF C=0 THEN B=B+0 <br />IF C=1 THEN B=B-1<br />SERVO 13,B<br />RETURN<br /><br />Robobasic can´t diference between k4 and k5 and increase or decrease the angle aleatory. I need to specify to robobasic the key who affect the variable, because I cant do it using only 0 or 1 at the remocon signal...<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=406">aguiloco</a> — Thu Oct 11, 2007 9:36 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[DirtyRoboto]]></name></author>
<updated>2007-10-11T11:50:40+01:00</updated>
<published>2007-10-11T11:50:40+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=1808&amp;p=11660#p11660</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=1808&amp;p=11660#p11660"/>
<title type="html"><![CDATA[programing questions]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=1808&amp;p=11660#p11660"><![CDATA[
Make the standard pose using variables with the values set before main. After a move such as raising arm, copy the value of the current pos into the variables and then jump to standard pose where your new position will be written into the standard pose variables.<br />So you will have to include a servo read at the end of every move before jumping back to main.<br /><br />I have about 4 active standard poses and two modular poses that will grab values from the last move done to modify the pose characteristics.<br /><br />(standard_pose must be made using SERVO command, all moves are ok using MOVE command)<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=312">DirtyRoboto</a> — Thu Oct 11, 2007 11:50 am</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[i-Bot]]></name></author>
<updated>2007-10-10T22:10:54+01:00</updated>
<published>2007-10-10T22:10:54+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=1808&amp;p=11653#p11653</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=1808&amp;p=11653#p11653"/>
<title type="html"><![CDATA[programing questions]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=1808&amp;p=11653#p11653"><![CDATA[
It's a long time since I used the REMCON, but if I recall it returns 0 if no key was pressed, else the key value. You should ignore if zero is returned. else take the value and add an offset and scale to the servo range. Do the servo command. Then goto do it again<br /><br />You are correct that the servo command takes variables, though you lose the point to point capability.<br /><br />There are a few tricks to use variables in move commands using pokes and rompokes, but they limit the code flexibility and add complexity.<br /><br />As Gort says, I usually  program the RoboNova in C for greater flexibility in the move commands, though still use RoboBasic for prototyping the moves. My C move function takes variables OK, but otherwise is the same as the RoboBasic move including PTP and Gyro<br /><br />extern uint8_t move(uint8_t, uint8_t, uint8_t *); // as RoboBasic MOVE()<br /><br />The Robobasic limitation to a constant is in the C3024 firmware as well as compiler, so not an easy fix to add variables. I am thinking I might be able to patch the C3024 code to directly inject variables in place of Gyro readings. I was planning  this is to take the joystick values from the PS2 controller, but it could be any variable<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=159">i-Bot</a> — Wed Oct 10, 2007 10:10 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[aguiloco]]></name></author>
<updated>2007-10-10T21:09:46+01:00</updated>
<published>2007-10-10T21:09:46+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=1808&amp;p=11652#p11652</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=1808&amp;p=11652#p11652"/>
<title type="html"><![CDATA[programing questions]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=1808&amp;p=11652#p11652"><![CDATA[
I find another way to do it, using the SERVO comand we van apply a variable to a servo angle, but I need to know whats the code to read the REMOCOM signals from one specific key and store it at a variable, and how to wait for the next key press. I did that code, but doesn´t work...<br /><br />DIM B AS BYTE<br />DIM C AS BYTE<br /><br />C=0<br />C=REMOCON(1) &quot;when I use this, it reads the signall from any remocon´s key?&quot;<br />C= C+1<br />B=10<br />B=B+C<br />SERVO 13,B<br /><br />I think using this method is posible to move one servo using a variable controlled by a key, but I dont know how to compile it...<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=406">aguiloco</a> — Wed Oct 10, 2007 9:09 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[Gort]]></name></author>
<updated>2007-10-10T20:24:03+01:00</updated>
<published>2007-10-10T20:24:03+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=1808&amp;p=11650#p11650</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=1808&amp;p=11650#p11650"/>
<title type="html"><![CDATA[programing questions]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=1808&amp;p=11650#p11650"><![CDATA[
I can only think of two other things to try.<br /><br />1.  MOVE G6B CONSTANT_variable + 1, 100, 100, 100, 100<br /><br />2.<br /><br />DIM button_push as integer <br /><br />Button_push = 0<br /><br />K1:<br /><br />If  button_push = 0<br /><br />MOVE G6B 100,100,100 ……………………………<br />button_push = button_push +1<br /><br />ElseIf  button_push = 1<br /><br />MOVE G6B 101,100,100 ………………………………<br />button_push = button_push +1<br /><br />ElseIf  button_push = 2<br /><br />MOVE G6B 102,100,100…………………………………..<br />button_push = button_push +1<br /><br />ElseIf  button_push =  3<br /><br />MOVE G6B 103,100,100…………………………………..<br />button_push = button_push +1<br /><br />ELSE<br />MOVE G6B 100,100,100…………………………………..<br /><br />END-IF.<br /><br />I just wish Robobasic was not so limited or we could program in Java or C.<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=174">Gort</a> — Wed Oct 10, 2007 8:24 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[NovaOne]]></name></author>
<updated>2007-10-10T20:23:06+01:00</updated>
<published>2007-10-10T20:23:06+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=1808&amp;p=11649#p11649</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=1808&amp;p=11649#p11649"/>
<title type="html"><![CDATA[programing questions]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=1808&amp;p=11649#p11649"><![CDATA[
i-Bot is a master MR-C3024 hacker, if anyone can add this facility its Richard<br /><br />It would be another excellent i-Bot RN-1 Flash upgrade   <img src="http://forum.robosavvy.com/images/smilies/icon_cool.gif" alt="8)" title="Cool" /> <br /><br />(Sorry Richard, I'm sure you have better projects to work on.)<br /><br />Chris<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=663">NovaOne</a> — Wed Oct 10, 2007 8:23 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[aguiloco]]></name></author>
<updated>2007-10-10T19:53:18+01:00</updated>
<published>2007-10-10T19:53:18+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=1808&amp;p=11647#p11647</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=1808&amp;p=11647#p11647"/>
<title type="html"><![CDATA[programing questions]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=1808&amp;p=11647#p11647"><![CDATA[
I was working on this and I think isn´t possible... Only constant or numbers can work with &quot;MOVE&quot; comands, and cant change the value of a constant... <br /><br />Any idea?<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=406">aguiloco</a> — Wed Oct 10, 2007 7:53 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[Gort]]></name></author>
<updated>2007-10-10T17:40:54+01:00</updated>
<published>2007-10-10T17:40:54+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=1808&amp;p=11643#p11643</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=1808&amp;p=11643#p11643"/>
<title type="html"><![CDATA[programing questions]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=1808&amp;p=11643#p11643"><![CDATA[
I have tried to find that restriction for the move command in the Robobasic manual but have not found it? If that will not work, what about the Bit operators. <br />*****A &lt;&lt;1&gt;&gt; 1*******<br /><br />It sounds like a good thing to test.<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=174">Gort</a> — Wed Oct 10, 2007 5:40 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[i-Bot]]></name></author>
<updated>2007-10-10T14:34:56+01:00</updated>
<published>2007-10-10T14:34:56+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=1808&amp;p=11642#p11642</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=1808&amp;p=11642#p11642"/>
<title type="html"><![CDATA[programing questions]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=1808&amp;p=11642#p11642"><![CDATA[
What is the G6B line ?<br /><br />The move command will only take numbers or constants.<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=159">i-Bot</a> — Wed Oct 10, 2007 2:34 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[Gort]]></name></author>
<updated>2007-10-10T13:34:33+01:00</updated>
<published>2007-10-10T13:34:33+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=1808&amp;p=11641#p11641</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=1808&amp;p=11641#p11641"/>
<title type="html"><![CDATA[programing questions]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=1808&amp;p=11641#p11641"><![CDATA[
That should work. I think that it would be something like this. <br /><br />DIM Move_variable AS BYTE <br /><br /><br /><br /><br />k1:<br />Move_variable = Move_variable +1<br /><br />G6B Move_variable,100, 100, 100<br /><br />Keep up the posts. You are giving me cool programming ideas to think about.<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=174">Gort</a> — Wed Oct 10, 2007 1:34 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[aguiloco]]></name></author>
<updated>2007-10-09T21:13:33+01:00</updated>
<published>2007-10-09T21:13:33+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=1808&amp;p=11630#p11630</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=1808&amp;p=11630#p11630"/>
<title type="html"><![CDATA[programing questions]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=1808&amp;p=11630#p11630"><![CDATA[
I find the way to make the movements than I want, removing the &quot;GOTO standart_pose&quot; the RN stand at the last position, really simple...<br /><br />I have more questions, is posible to increase the servo angle using only one button? for example G6B 100, 100, 100, press k1 and go to G6B 101, 100, 100, one more k1 and go to G6B 102, 100, 100. In summary, to apply a variable to the servo movements<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=406">aguiloco</a> — Tue Oct 09, 2007 9:13 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[aguiloco]]></name></author>
<updated>2007-10-07T18:38:44+01:00</updated>
<published>2007-10-07T18:38:44+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=1808&amp;p=11599#p11599</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=1808&amp;p=11599#p11599"/>
<title type="html"><![CDATA[programing questions]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=1808&amp;p=11599#p11599"><![CDATA[
I made this code, it works and I can make a movement and return to the previous state, but surely isnt a good code, I cant understand the REMOCON comands well...<br /><br />GOTO AUTO<br />FILL 255,10000<br /><br />DIM RR AS BYTE<br />DIM A AS BYTE<br /><br />CONST ID = 0     ' 1:0, 2:32, 3:64, 4:96,<br /><br />'== Action command check (50 - 82)<br />IF RR &gt; 50 AND RR &lt;83&gt; 50 THEN RETURN<br />RR = 0<br />GOTO MAIN<br /><br />main_exit2:<br />IF RR &gt; 50 THEN RETURN<br />RR = 0<br />GOTO pistola_quieta<br /><br />'===============================================<br />k1:<br />GOSUB cojer_arma<br />GOSUB pistola_quieta<br />GOTO main_exit<br />k2:<br />GOSUB giro_izquierda<br /><br />k3:<br />GOSUB giro_derecha<br /><br />k4:<br />GOSUB standard_pose<br />GOTO MAIN<br /><br />k5:<br />GOSUB giro_izquierda2<br /><br /><br />k6: <br />GOSUB giro_derecha2<br /><br />k7:<br />GOSUB recarga_arma<br /><br /><br />standard_pose:<br /><br />MOVE G6A,100,  76, 145,  93, 100, 100 <br />MOVE G6D,100,  76, 145,  93, 100, 100  <br />MOVE G6B,100,  30,  80, 100, 100, 100<br />MOVE G6C,100,  30,  80, 100, 100, 100<br />WAIT<br /><br />RETURN<br /><br />'===============================================<br /><br />cojer_arma:<br /><br />SPEED 8<br />MOVE G6B,146,  16,  44,  25, 104, 100<br />MOVE G6B,146,  16,  10,  25, 104, 100<br />MOVE G6B,146,  16,  44,  25, 104, 100<br />MOVE G6B,146,  16,  10,  25, 104, 100<br />MOVE G6B,146,  16,  44,  25, 104, 100<br />WAIT<br /><br />DELAY 1000<br /><br />MOVE G6B,100,  30,  80, 100, 100, 100<br />MOVE G6C,190,  30,  80, 186, 100, 100<br />MOVE G6A,100,  76, 145,  85, 100, 100<br />MOVE G6D,100,  76, 145,  85, 100, 100<br />DELAY 3000<br />MOVE G6C,190,  30,  80,  40, 100, 100<br />DELAY 3000<br /><br />SPEED 3<br />GOSUB pistola_quieta<br /><br /><br />'===============================================<br /><br />pistola_quieta:<br /><br />MOVE G6C,190,  30,  80,  40, 100, 100<br /><br />IF RR = 0 THEN GOTO MAIN2<br /><br />ON RR GOTO pistola_quieta,K1,K2,K3,K4,K5,K6,K7<br />GOTO main_exit2<br /><br />'===============================================<br /><br />MAIN2:<br />A = REMOCON(1)  <br />A = A - ID<br />ON A GOTO pistola_quieta,K1,K2,K3,K4,K5,K6,K7<br />GOTO pistola_quieta<br /><br />'===============================================<br /><br />giro_izquierda:<br />MOVE G6C,190,  10,  80,  40, 100, 100<br />WAIT<br />A = REMOCON (1)<br />A = A - ID<br />ON A GOTO giro_izquierda,K1,K2,K3,K4,K5,K6,K7<br />GOTO giro_izquierda<br /><br />'===============================================<br /><br />giro_derecha:<br />MOVE G6C,190,  60,  80,  40, 100, 100<br />A = REMOCON (1)<br />A = A - ID<br />ON A GOTO giro_derecha,K1,K2,K3,K4,K5,K6,K7<br />GOTO giro_derecha<br /><br />'===============================================<br /><br />giro_izquierda2:<br />MOVE G6C,190,  10,  55,  40, 100, 100<br />DELAY 2000<br />GOSUB giro_izquierda<br /><br />'===============================================<br /><br />giro_derecha2:<br />MOVE G6C,190,  80,  80,  40, 100, 100<br />DELAY 2000<br />GOSUB giro_derecha<br /><br />'================================================<br /><br />recarga_arma:<br /><br />SPEED 3<br />MOVE G6B,174,  44,  10, 106, 100, 100<br />MOVE G6C,165,  19,  43,  47, 100, 100<br />WAIT<br />MOVE G6B,178,  30,  10, 106, 100, 100<br />MOVE G6C,165,  18,  40,  47, 100, 100<br />WAIT<br /><br />MOVE G6B,178,  18,  10, 106, 100, 100<br />MOVE G6C,165,  14,  39,  47, 100, 100<br />WAIT<br /><br />MOVE G6B,178,  10,  10, 106, 100, 100<br />MOVE G6C,160,  10,  43,  47, 100, 100<br />WAIT<br /><br />MOVE G6B,178,  18,  10, 106, 100, 100<br />MOVE G6C,165,  14,  41,  47, 100, 100<br /><br />MOVE G6B,178,  30,  10, 106, 100, 100<br />MOVE G6C,165,  18,  41,  47, 100, 100<br /><br />MOVE G6B,174,  44,  10, 106, 100, 100<br />MOVE G6C,165,  19,  43,  47, 100, 100<br />WAIT<br /><br />MOVE G6B,100,  30,  80, 100, 100, 100<br /><br />GOSUB pistola_quieta<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=406">aguiloco</a> — Sun Oct 07, 2007 6:38 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[aguiloco]]></name></author>
<updated>2007-10-04T20:49:21+01:00</updated>
<published>2007-10-04T20:49:21+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=1808&amp;p=11554#p11554</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=1808&amp;p=11554#p11554"/>
<title type="html"><![CDATA[programing questions]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=1808&amp;p=11554#p11554"><![CDATA[
Hi! I have several problems to program the RN for more than simple movement scenes. I want to use subrutines to create some kind of cotinuous moves, for example: <br /><br />-pressing key 1 the left arm up´s and stay for comands, with the arm standing up <br /><br />-pressing key 2 call a routine to move the right arm and come back to the key 1 state <br /><br />-pressing key 3 go to main and get down the left arm <br /><br />Is really hard to me program something like this, if someone could put an example code and explain the different comand would be great, this will help me to understand this kind of comands. <br /><br />PD:this program will be used to manage a new kind of RN´s accessory than I´m developing... coming soon<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=406">aguiloco</a> — Thu Oct 04, 2007 8:49 pm</p><hr />
]]></content>
</entry>
</feed>