RobotStudio event

How to rotate axis 6

Options
Dear,

In my program I have to rotate axis 6 180 degrees counter clockwise and then back 180 degrees clockwise.
Is there a command to do this or is this done by rotating points orientations ?

Thanks in advance for the help greetings.

Comments

  • lemster68
    lemster68 ✭✭✭
    Options
    MoveAbsJ
    Lee Justice
  • nomad5t5
    Options

    MoveJ p10,vmax,z10,tGrip,\WObj:=wobj0;

    MoveJ Reltool(p10,0,0,0\Rz:=180),vmax,fine ,tGrip,\WObj:=wobj0;

    MoveJ p10,vmax,z10,tGrip,\WObj:=wobj0


  • lemster68
    lemster68 ✭✭✭
    Options
    nomad5t5 said:

    MoveJ p10,vmax,z10,tGrip,\WObj:=wobj0;

    MoveJ Reltool(p10,0,0,0\Rz:=180),vmax,fine ,tGrip,\WObj:=wobj0;

    MoveJ p10,vmax,z10,tGrip,\WObj:=wobj0


    This will work if your TCP is directly in line with axis six and it has the same orientation.
    Lee Justice
  • Jarniiee
    Options
    lemster68 said:
    nomad5t5 said:

    MoveJ p10,vmax,z10,tGrip,\WObj:=wobj0;

    MoveJ Reltool(p10,0,0,0\Rz:=180),vmax,fine ,tGrip,\WObj:=wobj0;

    MoveJ p10,vmax,z10,tGrip,\WObj:=wobj0


    This will work if your TCP is directly in line with axis six and it has the same orientation.
    Thanks for the help.