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

Input commands
There are 3 types of input control.
Direct executed commands: Single command statements executed immediately.
Program executed commands: A series of commands executed from a program after initiating the
run command.
Bilateral commands: Both directly executed commands and program executed commands. Most
commands are bilateral.
can use both direct executed program executed
ON 0
OFF 0
PRINT A
MOVE
etc
LIST
MPCINIT
ERASE
RUN
etc
GOTO
GOSUB
IF ~
FOR ~ NEXT
etc
#ON 0<Enter> /* direct execution 10 ON 0<Enter> is program (attached number)
#GOTO 100<Enter> /* not happen anything
#10 MPCINIT<Enter> /* don't write MPCINITcommand in the program.
10