<?xml version="1.0" encoding="ISO-8859-1" ?><rss version="2.0">
<channel>
    <title>RoboRealm Forum</title>
    <link>http://www.RoboRealm.com/</link>
    <description>The newest forum threads.</description>
    <lastBuildDate>Tue, 30 Nov 1999 00:11:00 EST</lastBuildDate>
    <language>en-us</language>
    <copyright>Copyright: (C) RoboRealm, http://www.RoboRealm.com/</copyright>
    <docs>http://www.RoboRealm.com/</docs>

    <item>
        <title>No Title</title>
        <description>
        blackhawk,&lt;br&gt;&lt;br&gt;Seems that your robofile is not quite correct. You have calculated and created two variables left_motor and right_motor in the VBScript module but you do not specify them in the Lego_NXT Motor dropdowns (as was mentioned in our previous post). You DO have an unknown variable &quot;Moto&quot; specified in the B motor but that does not appear to come from anywhere or have any relevant values.&lt;br&gt;&lt;br&gt;Try selecting left and right motor variables using the provided dropdowns (you will see those variables in there) but be sure to specify the correct A,B, or C motor depending on your robot.&lt;br&gt;&lt;br&gt;Let us know if you continue to have any issues.&lt;br&gt;&lt;br&gt;STeven.        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3062</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3062</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        OK, here I is        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3062</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3062</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        Naturally things work fine for us so we are unable to replicate your issue.&lt;br&gt;&lt;br&gt;Can you post your robofile that uses the NXT so that we can determine what you are trying to do?&lt;br&gt;&lt;br&gt;Sounds like you just do not have the motor variables mapped (i.e. specified in the dropdown) in the NXT GUI ... but the robofile will tell us that.&lt;br&gt;&lt;br&gt;STeven.        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3062</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3062</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        Yes, this sounds very similiar to my problem, but now, we still need someone who can help us.;-)&lt;br&gt;&lt;br&gt;&lt;br&gt;Please, we need help,&lt;br&gt;blackhawk        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3062</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3062</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        Hmmm...is this similar or in some way related to the problem I&apos;ve been having?&lt;br&gt;&lt;a href=&quot;http://www.roborealm.com/forum/index.php?thread_id=3048#&quot; target=&quot;_blank&quot;&gt;http://www.roborealm.com/&lt;wbr&gt;forum/&lt;wbr&gt;index.php?thread_&lt;wbr&gt;id=3048#&lt;/a&gt;&lt;br&gt;&lt;br&gt;Win&lt;br&gt;        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3062</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3062</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
    <item>
        <title>NXT Motor Variables</title>
        <description>
        Hey Guys,&lt;br&gt;&lt;br&gt;I think I&apos;ve got a problem with my NXT and the Motor Variables.&lt;br&gt;I tried to program a robot like the modified tribot in the tutorials but the nxt doesn&apos;t accept changes of the variables.&lt;br&gt;&lt;br&gt;I&apos;ve got this VBScript wich changes the Motor-Variables but the nxt-Module doesn&apos;t use the changed values.&lt;br&gt;&lt;br&gt; left_motor = 128&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;right_motor= 128&lt;br&gt;&lt;br&gt;mittex = (GetVariable(&quot;IMAGE_WIDTH&quot;)/2)&lt;br&gt;abstandx = GetVariable(&quot;COG_X&quot;)-mittex&lt;br&gt;&lt;br&gt;if abstandx &amp;lt; 0 then&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;left_motor = 60&lt;br&gt;&amp;nbsp;&amp;nbsp; right_motor= 128&lt;br&gt;&amp;nbsp;&amp;nbsp;else&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if abstandx &amp;gt; 0 then&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;left_motor = 128&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;right_motor= 60&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;else&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;left_motor = 128&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;right_motor = 128&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;end if&lt;br&gt;&amp;nbsp;&amp;nbsp;end if&lt;br&gt;&lt;br&gt; SetVariable &quot;left_motor&quot;, left_motor&lt;br&gt;&amp;nbsp;&amp;nbsp;SetVariable &quot;right_motor&quot;, right_motor&lt;br&gt;&lt;br&gt;&lt;br&gt;And there&apos;s another problem, but I think when the other is solved, this one is solved too:&lt;br&gt;When I click on the start button in the NXT-module, the variable from motor B is automatically set to 0.&lt;br&gt;&lt;br&gt;I hope you can help me,&lt;br&gt;blackhawk&lt;br&gt;&lt;br&gt;PS: Sorry for my (maybe) bad english, I&apos;m from Germany.&lt;br&gt;        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3062</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3062</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
</channel>
</rss>
