The leader in industrial automation and control solutions

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

ParametersRecommendedOptionsNotes
PLC TypeF930GOT Server
PLC I/FRS232
Baud Rate384009600, 115200
Data Bits87 or 8
ParityNoneEven, Odd, None
Stop Bits11 or 2
PLC Sta. No.1

Device Address

Bit/WordDevice TypeFormatRangeMemo
BRBDDDD0 ~ 2047
WRWDDDDD0 ~ 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

HMIDirectionPLC
Pin assignmentsMicro 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):

HMIPC
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