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, AccelS, Arm, ArmSet, Go, Hofs, Home, HOrdr, Local, Move, Pulse, Robot Function, Speed, SpeedS

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