Rubik's Cube Solving Robot icon Rubik's Cube Solving Robot Control a custom ARC robot to manipulate and solve a Rubik's Cube using calibrated arms and grippers; integrates with Thingiverse build. Try it →

ARC Pro

Upgrade to ARC Pro

Stay at the forefront of robot programming innovation with ARC Pro, ensuring your robot is always equipped with the latest advancements.

Author Avatar
PRO
Synthiam
LinkedIn Thingiverse Twitter YouTube GitHub
#3  

Or in blocky, use the LOOP command titled LOOP FOREVER

User-inserted image

It generates this code...

User-inserted image

Author Avatar
PRO
Belgium
Thingiverse
#4  

dj

is that only in the begin ? loop forever or is there at the end also a command.

#5  

The above code loops forever... If you want to stop the script use the command below or to just exit the loop but stay in the script you can use a different "Goto/Label" command to put you outside the loop...

 Halt() #stops a script

$x=0
:top
# do something
if($x=1)
goto(exit) #exit the loop only
endif

goto(top)

:exit
Print("finished")
Author Avatar
PRO
Synthiam
LinkedIn Thingiverse Twitter YouTube GitHub
#7  

This demonstrates both ways to exit the loop or script in blockly.

Use Blockly to learn how to program

User-inserted image