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 →
Germany
Asked — Edited
Resolved Resolved by DJ Sures!

Auto Position Action In Random Modus

Dear EZ-Robot Team and Fans,

If my camera notice something.. I want to play an action from auto position.. but not every time the same.. I want a Random-Modus for all my actions.. I found nothing to play actions random ? I hope someone can help me.

regards


ARC Pro

Upgrade to ARC Pro

Unleash your creativity with the power of easy robot programming using Synthiam ARC Pro

Author Avatar
PRO
Synthiam
LinkedIn Thingiverse Twitter YouTube GitHub
#1  

Programming.... Start watching the robot program to learn how to start programming. Here's an example of how your program would look.

Blockly:

User-inserted image

EZ-Script:

User-inserted image


$RandomAction = GetRandom(0, 5)

if ($item = 0)

  ControlCommand("Auto Position", "AutoPositionAction", "Be Awesome")

elseif ($item = 1)

  ControlCommand("Auto Position", "AutoPositionAction", "Dance")

elseif ($item = 2)

  ControlCommand("Auto Position", "AutoPositionAction", "Jump")

elseif ($item = 3)

  ControlCommand("Auto Position", "AutoPositionAction", "Smile")

elseif ($item = 4)

  ControlCommand("Auto Position", "AutoPositionAction", "Super Action")

else

  ControlCommand("Auto Position", "AutoPositionAction", "Wave")

endif
Author Avatar
Germany
#2  

thank you :-)

its working fine for me !