Welcome to Synthiam!

The easiest way to program the most powerful robots. Use technologies by leading industry experts. ARC is a free-to-use robot programming software that makes servo automation, computer vision, autonomous navigation, and artificial intelligence easy.

Get Started
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

ARC Pro will give you immediate updates and new features needed to unleash your robot's potential!

PRO
Synthiam
#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


Code:


$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
Germany
#2  
thank you :-)

its working fine for me !