G4 Dwell time in seconds

Temporally defined dwell time with defined duration in seconds and automatic program continuation. The dwell time must always be specified since it does not take effect modally. The command works in blocks. Dwelling begins only when the previously programmed motion path has been run in its entirety. Once the time has expired, the program indicator switches over. The instruction must be placed before the parameter. Specifying the parameter is mandatory. The parameter identifier must also be specified. The address letter X or F may be used. When converting G-code into the SEW Robot Language, note that the time in s that is specified in G-code is converted into ms for the WAIT_TIME command. The conversion is displayed as an expression in the SRL program. (E.g. 0.8 s = 0.8 * 1000 ms).

Difference to the ISO standard: This command only accepts parameter names that have been selected from the address letter list. An equal sign is not permitted.

Parameter:

Parameter name (F,X)

Syntax: Observe Note on the syntax explanation.

G4 (F,X)<float>

Example:

G4 X0.5

G4 F0.5

Implementation in the SRL program:

WAIT_TIME (<float> * 1000 ) [ms]