ARC Pro

Upgrade to ARC Pro

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

Canada
#18  

Hi Nomad 6R

Thanks, I had seen this but it is not the same thing.

#19  

@Holy1 not using a single auto positioner you can't ... Just write simple scripts (using the cheat sheet/control commands) to drive frames or actions on 2 or more different boards. This way you can can control one or more auto-positioner controls at once... e.g... Fingers move in one auto-positioner at the same time head moves in another auto-positioner control... and so on...

Canada
#20  

@Richard.

Thanks, I will work on that as learning scripting is next on the list as my Inmoov is ready to go ( as much as I am going to do for now) .

PRO
Synthiam
#21  

Yeah - create a different Auto Position for different servo groups. Such as one for the fingers, and one for everything else...

then you can execute them like so in ez-script..


ControlCommand("Auto Position Body", AutoPositionAction, "Arm Down")
ControlCommand("Auto Position Fingers", AutoPositionAction, "Fingers Out")

# Wait for auto positions to complete
sleep(500)
waitfor($AutoPositionStatus = 0)

ControlCommand("Auto Position Fingers", AutoPositionAction, "Peace Sign")

# Wait for auto positions to complete
sleep(500)
waitfor($AutoPositionStatus = 0)

ControlCommand("Auto Position Body", AutoPositionAction, "Arm Up")
ControlCommand("Auto Position Finger", AutoPositionAction, "Fingers In")

#22  

I can see that the AutoPosition control (non movement) can be set to EZB 0-4 but AutoPosition (movement) is defaulted to EZB 0

Is this correct ?

Frank

#23  

Yes, all movement panels are EZ-B 0 only.

Alan