UF_ModbusTCP_Manual
UFACTORY ModbusTCP User Instructions
Notice:
Communication complies with standard Modbus TCP protocol
Data transmission uses Big-endian method, for example transmission order of data 0x1234 is: 0x12, 0x34
Different register addresses hold different specific contents, details refer to the appendix
Make sure to access the pre-defined register address(refer to appendix),or there will be exception in response
Supported Modbus TCP function codes:
Coil register(1 bit)
0x01: Read multiple coil registers,each bit in responded data section represents the value of each one register:
0x05: Write single coil, according to Modbus protocol, specified data can only be 0xFF00 or 0x0000,for wriring 1 or 0 to the register.
0x0F: Write multiple coil registers
Discrete input register (1 bit)
0x02: Read multiple discrete input registers
Holding register (16 bit)
0x03: Read multiple holding registers
0x06: Write single holding register
0x10: Write multiple holding registers
0x16: Mask write single holding register
0x17: Read and Write multiple holding registers
Input register (16 bit)
0x04: Read multiple input registers
Exception code explanation
0x01: Illegal/Unsuppported function code
0x02: Illegal target address
0x03: Exception of requested data
Appendix
Coil Registers (single bit access, READ/WRITE)
Address(Dec) Address(Hex) Explanation 0 ~ 31
0x00 ~ 0x1F
32 controller Digital Output (Now only 16 effective)
32 ~ 39
0x20 ~ 0x27
8 tool Digital Output (Now only 2 effective)
40 ~ 127
0x28 ~ 0x7F
Reserved
128 ~ 134
0x80 ~ 0x86
joint (J1-J7) brake states
135 ~ 141
0x87 ~ 0x8D
joint (J1-J7) enable states
142
0x8E
Reduced mode (0: OFF, 1: ON)
143
0x8F
Digital Fence (0: OFF, 1: ON)
144
0x90
isPaused (0: False, 1: True)
145
0x91
isStopped (0: False, 1: True)
146 ~ 159
0x92 ~ 0x9F
Robot Mode (14 bits for mode 0-13 respectively, 0: not in this mode, 1: in this mode)
160 ~ 255
0xA0 ~ 0xFF
Reserved
256 ~ 511
0x100 ~ 0x1FF
General purpose, user defined
Discrete Input Registers (single bit access, READ only)
Address(Dec) Address(Hex) Explanation 0 ~ 31
0x00 ~ 0x1F
32 controller Digital Input (Now only 16 effective)
32 ~ 39
0x20 ~ 0x27
8 tool Digital Input (Now only 2 effective)
40 ~ 127
0x28 ~ 0x7F
Reserved
Holding Registers (16 bit access, READ/WRITE)
Address(Dec) Address(Hex) Explanation 0 ~ 1
0x00 ~ 0x01
32 controller Digital Outputs (Now only 16 effective), each bit correspond to one IO in order
2
0x02
8 tool Digital Outputs (Now only 2 effective), each bit correspond to one IO in order
3 ~ 6
0x03 ~ 0x06
4 controller analog outputs (now only 2 effective), it is 1000 times the real value
7 ~ 10
0x07 ~ 0x0A
4 tool analog outputs (currently NOT EFFECTIVE), it is 1000 times the real value
11 ~ 31
0x0B ~ 0x1F
Reserved
32
0x20
Robot Mode
33
0x21
Robot State
34 ~ 47
0x22 ~ 0x2F
Reserved
48 ~ 63
0x30 ~ 0x3F
Offline (Blockly) Task (only effective by writing multiple (max 16) holding registers to address 0x30 via function code 0x10, each register value correspond to one Blockly project with specific naming convention, for example: value 1 for project '00001', 12 for project '00012', projects will be executed automatically in order)
64
0x40
Gcode(Firmware≥2.4.0), trigged the gcode file under modbus_tcp folder.
65 ~ 255
0x41 ~ 0xFF
Reserved
256 ~ 511
0x100 ~ 0x1FF
General purpose, user defined
Input Registers (16 bit access, READ only)
Address(Dec) Address(Hex) Explanation 0 ~ 1
0x00 ~ 0x01
32 controller Digital Inputs (Now only 16 effective)
2
0x02
8 tool Digital Inputs (Now only 2 effective)
3 ~ 6
0x03 ~ 0x06
4 controller analog inputs (now only 2 effective), it is 1000 times the real value
7 ~ 10
0x07 ~ 0x0A
4 tool analog inputs (now only 2 effective), it is 1000 times the real value
11 ~ 31
0x0B ~ 0x1F
Reserved
32
0x20
Robot Error code
33
0x21
Robot Warning code
34 ~ 35
0x22 ~ 0x23
Counter value (0x22 stores the higher 16-bit, 0x23 stores the lower 16-bit)
36 ~ 63
0x23 ~ 0x3F
Reserved
64 ~ 72
0x40 ~ 0x48
Current TCP coordinate of x/y/z/roll/pitch/yaw/rx/ry/rz values, register values are 10 times the real numbers (unit: mm, degree)
73 ~ 76
0x49 ~ 0x4C
TCP payload mass(1000x)/center_x(10x)/center_y(10x)/center_z(10x) (unit: kg, mm)
77 ~ 82
0x4D ~ 0x52
TCP Offset, register values are 10 times the real numbers(unit: mm, degree)
83 ~ 88
0x53 ~ 0x58
User/world coordinate offset, register values are 10 times the real numbers(unit: mm, degree)
89 ~ 95
0x59 ~ 0x5F
joint (J1-J7) angles, register values are 10 times the real numbers(unit: degree)
86 ~ 102
0x60 ~ 0x66
joint (J1-J7) temperature (unit: degree Celsius)
103 ~ 109
0x67 ~ 0x6D
joint (J1-J7) speed, register values are 10 times the real numbers(unit: degree/s)
110
0x6E
Robot TCP linear speed, register values are 10 times the real numbers(unit: mm/s)
111 ~ 127
0x6F ~ 0x7F
Reserved
Last updated