<?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>
        Thankyou so much again Steve for that.&lt;br&gt;Never seen that :settimedvariable&quot;,will try that out.&lt;br&gt;&lt;br&gt;just my curious ways-can we have a readymade module for that whole operation that I can use it directly under a &quot;if&quot;statement?&lt;br&gt;&lt;br&gt;thankyou again steve,you gave me something to work on :&amp;gt;        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=2722</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=2722</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        If you process the image or not is largely not important .. the issue is if you act on the information gathered from the image processing. In order to do your &quot;move back for 3 seconds&quot; I&apos;d try using the SetTimedVariable which will change the variable value in X number of seconds. That&apos;s a condition that you can wait for. So something like this might work:&lt;br&gt;&lt;br&gt;// assuming way point reached in state 0&lt;br&gt;state = GetVariable(&quot;state&quot;)&lt;br&gt;select case state&lt;br&gt;&amp;nbsp;&amp;nbsp;case 0&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&apos; set motors to backup&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;SetVariable &quot;left_motor&quot;, 100&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;SetVariable &quot;right_motor&quot;, 100&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;SetTimedVariable &quot;state&quot;, 2&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;SetVariable &quot;state&quot;, 1&lt;br&gt;&amp;nbsp;&amp;nbsp;case 1&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&apos; motors are moving when in this step ... just don&apos;t do anything&lt;br&gt;&amp;nbsp;&amp;nbsp;case 2&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&apos; motors are still moving but we want to stop them&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;SetVariable &quot;left_motor&quot;, 128&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;SetVariable &quot;right_motor&quot;, 128&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;SetVariable &quot;state&quot;, 3&lt;br&gt;&amp;nbsp;&amp;nbsp;case 3&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&apos; continue here with normal operation&lt;br&gt;end select&lt;br&gt;&lt;br&gt;Think of it as a state transition diagram ... the video is being processed during this entire phase but since you are not changing the motor values in accordance with this information it doesn&apos;t really matter if you are processing.&amp;nbsp;&amp;nbsp;If you want you can add an IF_STATEMENT module around any significantly slow processing to reduce CPU cycles and use the &quot;state&quot; variable to determine when you need to&amp;nbsp;&amp;nbsp;process or when not. &lt;br&gt;&lt;br&gt;Remember, the VBScript module (used above) works within the processing loop so you can&apos;t just stop the processing and wait .. otherwise everything shuts down!&lt;br&gt;&lt;br&gt;STeven.&lt;br&gt;&amp;nbsp;&amp;nbsp;&lt;br&gt;&lt;br&gt;&lt;br&gt;        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=2722</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=2722</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        Hi Steve,&lt;br&gt;Thanks for the info...&lt;br&gt;but my task itself is- &quot;move for time T&quot;&lt;br&gt;and yes,I see no difference in &quot;listeing&quot;or not,and that shouldnot be a problem for me.&lt;br&gt;basically what im looking for is just a timer&lt;br&gt;sorry for that confusion :) &lt;br&gt;In simpler words&lt;br&gt;-reached waypoint A&lt;br&gt;-move reverse for 3sec&lt;br&gt;-continue with the previous waypoints&lt;br&gt;Thankyou,&lt;br&gt;Saikumar.        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=2722</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=2722</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        Not quite sure why you need RoboRealm to suspend video processing... could you simply have the robot &quot;listen&quot; for a command, then have the robot act on the command and complete its task, then, when ready, listen for the next command?&amp;nbsp;&amp;nbsp;If RoboRealm is sending commands while the robot is busy doing other things (that is, not &quot;listening&quot;), what&apos;s the difference?        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=2722</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=2722</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
    <item>
        <title>suspend operation{delay</title>
        <description>
        Hello Steve,&lt;br&gt;I want to know whether there is a certain module which can provide me following &lt;br&gt;-stop image processing for some time &quot;T&quot;,when a condition is met&lt;br&gt;-do a perticular work[like bot turning 90deg or so&lt;br&gt;-continue image processing &lt;br&gt;May be i can use pipelining to change the work/stop processing&lt;br&gt;&lt;br&gt;but im looking bascially for some ___&quot;time delay&quot;___&lt;br&gt;i doubt whether i can use the timer module&lt;br&gt;Thankyou&lt;br&gt;Saikumar.        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=2722</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=2722</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
</channel>
</rss>
