ProtoTwin API
    Preparing search index...

    Class SetSpeedRobotInstruction

    Set speed instruction.

    Instructs the robot controller to modify some of its motion parameters. This instruction can be used to modify the speed and acceleration of the robot.

    Hierarchy (View Summary)

    Index

    Constructors

    Accessors

    • get angularAcceleration(): number

      The angular acceleration to be applied.

      Returns number

      The angular acceleration will be applied if the

      flag is set.

    • set angularAcceleration(value: number): void

      Parameters

      • value: number

      Returns void

    • get angularSpeed(): number

      The angular speed to be applied.

      Returns number

      The angular speed will be applied if the

      flag is set.

    • set angularSpeed(value: number): void

      Parameters

      • value: number

      Returns void

    • get jointAcceleration(): number

      The joint acceleration multiple to be applied.

      Returns number

      The joint acceleration multiple will be applied if the

      flag is set.

    • set jointAcceleration(value: number): void

      Parameters

      • value: number

      Returns void

    • get jointSpeed(): number

      The joint speed multiple to be applied.

      Returns number

      The joint speed multiple will be applied if the

      flag is set.

    • set jointSpeed(value: number): void

      Parameters

      • value: number

      Returns void

    • get linearAcceleration(): number

      The linear acceleration to be applied.

      Returns number

      The linear acceleration will be applied if the

      flag is set.

    • set linearAcceleration(value: number): void

      Parameters

      • value: number

      Returns void

    • get linearSpeed(): number

      The linear speed to be applied.

      Returns number

      The linear speed will be applied if the

      flag is set.

    • set linearSpeed(value: number): void

      Parameters

      • value: number

      Returns void

    • get program(): null | RobotProgram

      The program to which the instruction has been assigned.

      Returns null | RobotProgram

      If the program is null then the instruction hasn't been added to a program.

    • set program(value: null | RobotProgram): void

      Parameters

      Returns void

    Methods