Introduction
All Maple Systems HMIs programmed with EBPro (EasyBuilder Pro), including every cMT X Series and cMT Series model, are compatible with a Mitsubishi F930GOT Server. Configure your Controller and HMI/cMT with the following parameters to establish reliable communication.
Supported Series: F930GOT general-purpose communication Type 1
HMI Settings
| Parameters | Recommended | Options | Notes |
|---|---|---|---|
| PLC Type | F930GOT Server | ||
| PLC I/F | RS232 | ||
| Baud Rate | 38400 | 9600, 115200 | |
| Data Bits | 8 | 7 or 8 | |
| Parity | None | Even, Odd, None | |
| Stop Bits | 1 | 1 or 2 | |
| PLC Sta. No. | 1 |
Device Address
| Bit/Word | Device Type | Format | Range | Memo |
|---|---|---|---|---|
| B | RB | DDDD | 0 ~ 2047 | |
| W | RW | DDDDD | 0 ~ 65535 |
NOTE: In the PLC name drop-down menu, do not select F930GOT Server. Select Local HMI, Device Type = RW.
Wiring Diagram
NOTE: The serial port pin assignments may vary between HMI models.
RS-232
| HMI | Direction | PLC |
|---|---|---|
| Pin assignments | Micro Computer Board RS232 Female | |
| Rx | ↔ (bidirectional) | 3 |
| Tx | ↔ (bidirectional) | 2 |
| GND | ↔ (bidirectional) | 5 |
Protocol
Read Command
PC to HMI request frame (read RW0, 1 word / 2 bytes). STX = 0x02, '0' = Read command, CR = 0x0D.
PC → HMI
02 '0' [Read address] [Size] CR
02 30 30 30 30 30 30 32 0D
Read address (hexadecimal): 0 ~ FFFF = RW0 ~ 65535
Size (hexadecimal): 2 ~ FE = 2 ~ 254 bytes = 1 ~ 127 words (must be even)Code language: JavaScript (javascript)
HMI to PC response frame (RW0 = 0x0010 = 16):
HMI → PC
02 [Data1] [Data2] … CR
02 30 30 31 30 0DCode language: CSS (css)
Write Command
PC to HMI request frame (write RW0 = 0x1234).
PC → HMI
02 '1' [Read address] [Size] [Data1] [Data2] … CR
02 31 30 30 30 30 30 32 12 34 0D
Read address (hexadecimal): 0 ~ FFFF = RW0 ~ 65535
Size (hexadecimal): 2 ~ FE = 2 ~ 254 bytes = 1 ~ 127 words (must be even)Code language: JavaScript (javascript)
HMI to PC response:
HMI → PC
06
ACK = 0x06