How do I import the tool center point data (TCP) from the pendant for use in RoboDK made programs?
It is generally easy to define and calibrate tools from the robot pendant. Being able to import this data from the pendant into RoboDK or specify the TCP from the pendant for use in the output program would be very helpful.
I am using an ABB robot. Right now a RoboDK made mod file has the tool definition as:
The RoboDK code creates a new tool that can be seen on the pendant. The program then references toolRDK for each move.
Instead of defining the tool with the XYZ, quaternion, mass and other data, I want to simply call out the use of a tool from the pendant, e.g. "use AMTool" where AMTool is defined on the pendant.
Is there a way to reference a tool stored on the pendant in RoboDK so that the generated code uses a tool from the pendant? Or should I modify the output file to somehow define toolRDK to be equal to a tool on the pendant, e.g.
where AMTool is defined on the pendant (not sure this will work as ABB documentation is convoluted in how to reference a tool)
It is generally easy to define and calibrate tools from the robot pendant. Being able to import this data from the pendant into RoboDK or specify the TCP from the pendant for use in the output program would be very helpful.
I am using an ABB robot. Right now a RoboDK made mod file has the tool definition as:
Code:
! Tool variables:
PERS tooldata toolRDK := [TRUE,[[346.602,7.309,63.820],[0.70710678,0.00000000,0.70710678,0.00000001]],[1,[0,0,20],[1,0,0,0],0,0,0.005]];
The RoboDK code creates a new tool that can be seen on the pendant. The program then references toolRDK for each move.
Instead of defining the tool with the XYZ, quaternion, mass and other data, I want to simply call out the use of a tool from the pendant, e.g. "use AMTool" where AMTool is defined on the pendant.
Is there a way to reference a tool stored on the pendant in RoboDK so that the generated code uses a tool from the pendant? Or should I modify the output file to somehow define toolRDK to be equal to a tool on the pendant, e.g.
Code:
PERS tooldata toolRDK := AMTool