Robot Statement

Selects the current robot.

Syntax
Robot number

Parameters

robotNumber
Specify the robot number. The value ranges from 1 to the number of installed robots.

Description
Robot allows the user to select the default robot for subsequent motion instructions.

On a system with one robot, the Robot statement does not need to be used.

See Also
Accel Statement, AccelS Statement, Arm Statement, ArmSet Statement, Go Statement, Hofs Statement, Home Statement, Hordr Statement, Local Statement, Move Statement, Pulse Statement, Robot Function, Speed Statement, SpeedS Statement

Robot Statement Example

Function main
    Integer I
    For I = 1 to 100
        Robot 1
        Go P(i)
        Robot 2
        Go P(i)
    Next I
Fend