Chapter Three Programming
163
Part 1 Programming
Repeat for 10 times
It is repeated when #30=1
#120=#120+1
;
N4 END1
;
Note 1: It is very necessary to note the following items when the WHILE is programmed repeatedly.
DOm should be specified before the ENDm.
①
┆
END1
;
┆
(Can not)
DO1
;
┆
DOm and ENDm should be
②
corresponded each other in one program.
┆
DO1
;
┆
DO1
;
(Can not)
┆
END1
;
┆
DO1
;
┆
END1 (Can not)
┆
END1
;
┆
③
The same identification number can be used repeatedly.
┆
DO1
;
┆
END1
;
┆
(Can not)
DO1
;
┆
END1
;
┆
The DO statement can be nested for 3 times.
④
┆
DO1
;
┆
DO2
;
┆
DO3
;
┆
END3
;
┆
END2
;
┆
END1
;
┆
N2 WHILE [ #30EQ1 ] DO2
;
N3 END 2
;
Summary of Contents for GSK983Ma
Page 124: ......
Page 143: ......
Page 185: ......
Page 209: ...Chapter Four Operation 197 Part 2 Operation ...
Page 239: ...Chapter Four Operation 227 Part 2 Operation ...
Page 242: ......
Page 279: ......
Page 296: ...GSK983Ma Milling Machine Center CNC System User Manual 284 Part 2 Operation ...
Page 371: ...Appendix 11 USB Interface Parameter Transfer Operation ...