User`s manual
Table Of Contents
- MPC-684 family
- The feature of the MPC-684
- Program development environment
- How to connect
- Input commands
- I/O check
- How to input program
- Edit of a program
- How to program save to the PC, load from the PC
- I/O control
- Variable, Array variable, String variable, Memory I/O
- Calculation
- Pulse generation
- Multi-task
- RS-232 communication
- Debugging
- Use touch panel
- Command List

Insert statement
10 *LOOP
20 ON 0
30 OFF 0
40 GOTO *LOOP
10 *LOOP
20 ON 0
25 TIME 50<Enter>
30 OFF 0
40 GOTO *LOOP
Move cousor to the 30th line
then press 'Ctrl+N'.
10 *LOOP
20 ON 0
30 OFF 0
40 GOTO *LOOP
25 TIME 50<Enter>
LIST
10 *LOOP
20 ON 0
25 TIME 50
30 OFF 0
40 GOTO *LOOP
Input the new string and line number
that you want to insert.
Delete statement
LIST
10 *LOOP
20 ON 0
25 TIME 50
30 OFF 0
40 GOTO *LOOP
LIST
10 *LOOP
20 ON 0
30 OFF 0
40 GOTO *LOOP
Move cursor to the 25th line
then press 'Ctrl+Y'.
LIST 0
10 *LOOP
20 ON 0
25 TIME 50
30 OFF 0
40 GOTO *LOOP
25<Enter>
LIST
10 *LOOP
20 ON 0
30 OFF 0
40 GOTO *LOOP
Input the line number.
The statement will be deleted.
17