
LNC-M8000
Expression
寶元數控精密股份有限公司 187
LNC Technology Co., Ltd.
7 Expression
This chapter is to explain whole series of INT mode.
Version: Milling machine INT mode mill_int_Ver03.01.01
7.1 IF~GOTO
A. Conditioned Jump
Method:IF ( <Conditional express> ) GOTO n
Description:IF <Conditional express> condition is true, then jump to the block numbered “n”, else
continue the next block
Example:
IF(#1>3) GOTO 1001;
G01 X10.;
…
N1001 G01 X20.;
…
M30;
B. Unconditioned Jump
Method:GOTO n
Description:Jump to the block numbered “n” directly.
Example:
GOTO 1001;
G01 X10.;
…
N1001 G01 X20.;
…
M30;
Komentarze do niniejszej Instrukcji