Exosphere icon Exosphere Telepresence and remote control for any ARC-compatible robot from phone/tablet, combining AI and human operators to perform tasks and train autonomy Try it →
USA
Asked — Edited
Resolved Resolved by DJ Sures!

Syntax; Return()


:pingtest
Goto(SonarTest)
say("Distance" + $Distance + "inches")
sleep(5000)
Goto(pingtest)

:SonarTest
$Distance = Round(GetPing(D9,D8)/2.54,0)
if(1 < 1000)
sleep(25)
Return() 
endif  
goto(SonarTest) 

So, it's apparently been too many years since I've attempted to write some code, as I'm getting stumped pretty easy. Can anyone tell me why the Return() command above is getting ignored? When the code gets to that line it, it keeps going until it gets to:

goto(SonarTest)

then keeps repeating that loop. The if statement before the Return statement is true and should cause the code to jump back to the 3rd line of code since the Return() in encapsulated between the IF and the EndIf, the way I understand things.


ARC Pro

Upgrade to ARC Pro

Discover the limitless potential of robot programming with Synthiam ARC Pro – where innovation and creativity meet seamlessly.

#2  

Thanks DJ, that fixed it.:)