RobotStudio event

A way to move a robot without worrying about the orientation of the tool

Options
Is there a move command that lets me move the robot only based on a given position and doesn't need the orientation of the tool to be specified?

Comments

  • lemster68
    Options
    MoveAbsJ.  It tells the robot to go to absolute joint angles specified by a jointtarget.
    Lee Justice
  • Mechie
    Options
    MoveAbsJ won't work as I have a position, but not the joint angles.
  • DenisFR
    Options
    Hello,
    You can force orient data of your robtarget.
  • lemster68
    Options
    MyjPos:=CalcJointT(MyRobtarget,MyTool\Wobj:=MyWobj)
    MoveAbsJ MyjPos, blah, blah, blah;
    Lee Justice
  • Mechie
    Options
    Thank you lemster68.