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

<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-02-08T00:05:47+01:00</updated>

<author><name><![CDATA[RoboSavvy Forum]]></name></author>
<id>http://forum.robosavvy.com/feed.php?f=4&amp;t=6982</id>
<entry>
<author><name><![CDATA[reubenwilcock]]></name></author>
<updated>2011-02-08T00:05:47+01:00</updated>
<published>2011-02-08T00:05:47+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=6982&amp;p=30109#p30109</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=6982&amp;p=30109#p30109"/>
<title type="html"><![CDATA[Code that makes RoboNova stand up when he falls down?]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=6982&amp;p=30109#p30109"><![CDATA[
Thanks! Its all working now <img src="http://forum.robosavvy.com/images/smilies/icon_smile.gif" alt=":-)" title="Smile" /><p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=2567">reubenwilcock</a> — Tue Feb 08, 2011 12:05 am</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[ozfiddler]]></name></author>
<updated>2011-02-07T23:47:31+01:00</updated>
<published>2011-02-07T23:47:31+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=6982&amp;p=30107#p30107</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=6982&amp;p=30107#p30107"/>
<title type="html"><![CDATA[Code that makes RoboNova stand up when he falls down?]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=6982&amp;p=30107#p30107"><![CDATA[
Do you mean these ones?:<br /><br />' action_30<br />'== forward standup  ============================<br />DIM A AS BYTE<br />DIM A16 AS BYTE<br /><br />PTP SETON <br />PTP ALLON<br /><br />'== motor diretion setting ======================<br />DIR G6A,1,0,0,1,0,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,0,1,0<br /><br />'== motor start position read ===================<br />GETMOTORSET G6A,1,1,1,1,1,0<br />GETMOTORSET G6B,1,1,1,0,0,0<br />GETMOTORSET G6C,1,1,1,0,0,0<br />GETMOTORSET G6D,1,1,1,1,1,0<br /><br />SPEED 5<br /><br />'== motor power on  =============================<br />MOTOR G24<br /><br />GOSUB standard_pose<br /><br />'================================================<br />MAIN:    <br /><br />A = REMOCON(1)<br />IF A &lt;&gt; 25 THEN GOTO main<br /><br />GOSUB forward_standup<br />GOSUB standard_pose<br />GOTO MAIN<br /><br />'================================================<br />standard_pose:<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 />RETURN<br />'================================================<br />forward_standup:<br /><br />SPEED 10<br /><br />MOVE G6A,100, 130, 120,  80, 110, 100<br />MOVE G6D,100, 130, 120,  80, 110, 100<br />MOVE G6B,150, 160,  10, 100, 100, 100<br />MOVE G6C,150, 160,  10, 100, 100, 100<br />WAIT<br /><br />MOVE G6A, 80, 155,  85, 150, 150, 100<br />MOVE G6D, 80, 155,  85, 150, 150, 100<br />MOVE G6B,185,  40, 60,  100, 100, 100<br />MOVE G6C,185,  40, 60,  100, 100, 100<br />WAIT<br /><br />MOVE G6A, 75, 165,  55, 165, 155, 100<br />MOVE G6D, 75, 165,  55, 165, 155, 100<br />MOVE G6B,185,  10, 100, 100, 100, 100<br />MOVE G6C,185,  10, 100, 100, 100, 100<br />WAIT<br /><br />MOVE G6A, 60, 165,  30, 165, 155, 100<br />MOVE G6D, 60, 165,  30, 165, 155, 100<br />MOVE G6B,170,  10, 100, 100, 100, 100<br />MOVE G6C,170,  10, 100, 100, 100, 100<br />WAIT<br /><br />MOVE G6A, 60, 165,  25, 160, 145, 100<br />MOVE G6D, 60, 165,  25, 160, 145, 100<br />MOVE G6B,150,  60,  90, 100, 100, 100<br />MOVE G6C,150,  60,  90, 100, 100, 100<br />WAIT<br /><br />MOVE G6A,100, 155,  25, 140, 100, 100<br />MOVE G6D,100, 155,  25, 140, 100, 100<br />MOVE G6B,130,  50,  85, 100, 100, 100<br />MOVE G6C,130,  50,  85, 100, 100, 100<br />WAIT<br /><br />RETURN<br />'================================================<br /><br />' action_31<br />'== backward standup  ============================<br />DIM A AS BYTE<br />DIM A16 AS BYTE<br /><br />PTP SETON <br />PTP ALLON<br /><br />'== motor diretion setting ======================<br />DIR G6A,1,0,0,1,0,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,0,1,0<br /><br />'== motor start position read ===================<br />GETMOTORSET G6A,1,1,1,1,1,0<br />GETMOTORSET G6B,1,1,1,0,0,0<br />GETMOTORSET G6C,1,1,1,0,0,0<br />GETMOTORSET G6D,1,1,1,1,1,0<br /><br />SPEED 5<br /><br />'== motor power on  =============================<br />MOTOR G24<br /><br />GOSUB standard_pose<br /><br />'================================================<br />MAIN:    <br /><br />A = REMOCON(1)<br />IF A &lt;&gt; 19 THEN GOTO main<br /><br />GOSUB backward_standup<br />GOSUB standard_pose<br />GOTO MAIN<br /><br />'================================================<br />standard_pose:<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 />RETURN<br />'================================================<br /><br /><br />backward_standup:<br /><br />SPEED 10<br /><br />MOVE G6A,100,  10, 100, 115, 100, 100<br />MOVE G6D,100,  10, 100, 115, 100, 100<br />MOVE G6B,100, 130,  10, 100, 100, 100<br />MOVE G6C,100, 130,  10, 100, 100, 100<br />WAIT<br /><br />MOVE G6A,100, 10,  83, 140, 100, 100<br />MOVE G6D,100, 10,  83, 140, 100, 100<br />MOVE G6B,20, 130,  10, 100, 100, 100<br />MOVE G6C,20, 130,  10, 100, 100, 100<br />WAIT<br /><br />MOVE G6A,100, 126,  60, 50, 100, 100<br />MOVE G6D,100, 126,  60, 50, 100, 100<br />MOVE G6B,20,  30,  90, 100, 100, 100<br />MOVE G6C,20,  30,  90, 100, 100, 100<br />WAIT<br /><br />MOVE G6A,100, 165,  70, 15, 100, 100<br />MOVE G6D,100, 165,  70, 15, 100, 100<br />MOVE G6B, 30,  20,  95,100, 100, 100<br />MOVE G6C, 30,  20,  95,100, 100, 100<br />WAIT<br /><br />MOVE G6A,100, 165,  40, 100, 100, 100<br />MOVE G6D,100, 165,  40, 100, 100, 100<br />MOVE G6B,110,  70,  50, 100, 100, 100<br />MOVE G6C,110,  70,  50, 100, 100, 100<br />WAIT<br /><br />RETURN<br />'================================================<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=2395">ozfiddler</a> — Mon Feb 07, 2011 11:47 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[reubenwilcock]]></name></author>
<updated>2011-02-07T16:42:43+01:00</updated>
<published>2011-02-07T16:42:43+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=6982&amp;p=30101#p30101</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=6982&amp;p=30101#p30101"/>
<title type="html"><![CDATA[Code that makes RoboNova stand up when he falls down?]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=6982&amp;p=30101#p30101"><![CDATA[
Hi all, <br /><br />I have a RoboNova that is loaded with some default code which makes him stand up when he falls down. However, the code templates I have dont seem to include this move, so when I reprogram him, he wont do that action any more. Can anyone post or tell me where the standard template code for the tilt-equipped RoboNova is please?<br /><br />Thanks,<br /><br />Reuben<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=2567">reubenwilcock</a> — Mon Feb 07, 2011 4:42 pm</p><hr />
]]></content>
</entry>
</feed>