Hi to all. I have a question about my kuka lbr iiwa .
I'm using Sunrise 1.13 and i want to change at runtime the TCP of the tool that i create in the template. Is it possible ?
So this is what i'm doing :
Code
//declaring my tool
private Tool tcp;
//extract tool from template
tcp = createFromTemplate("/mytool");
//extract TCP from tool
Frame new_point_tcp = tcp.getFrame("/tcp").copyWithRedundancy();
//modify the new point
new_punto_tcp.setX(207.1);
//TODO: pass the new point as the new TCP for Tool tcp
Display More
Thanks a lot.