10-10-2023 03:50 AM
Hello,
I have one question, I set move mode of help point to 'Blended' during teaching poistion, and the robot need to be moved to the help point to wait for next process done, in this way, tamplate command 'Area to Pos' cannot be finished, I tried to set a flag to change the move mode in the method via change move mode function block before executing the tamplate command, but some times it works, not all the time.
is there any parcmd to change move mode before executing tamplate command? thank you~
Solved! Go to Solution.
10-10-2023 09:47 AM - edited 10-10-2023 09:50 AM
I’m not sure I understood the problem correctly.
Do you use the command parameter AsyncExecution ? If yes, then you must use "EXECUTE_TEMPLATE_POS_TO_POS",
because if you start a new movement while the robot is still moving, it can happen, that he path is calculated from a wrong start position.
In general, if you want to manipulate generated pointlists, you can do this in the UserManipulateGeneratedList method - this method is called before the point list will be executed...
If you use a Stäubli robot, there is something special:
If the last point in your pointlist is set as a blended move,
the robot does not move to end position and it stops at blending distance before the end position.
That’s why we have included a parameter in the stäubli peripheral that you can activate : LastPointInListNonBlended.
If this parameter is activated, the move-mode of the last point in the list will be set to non blended automatically .
10-10-2023 10:06 AM - edited 10-10-2023 10:20 AM
Sorry about the question is not clear. I use the Staubli robot. I just tested the parameter, it works, thank you~😁