Document version: 1.3
Valid for: All MiR robots
Valid for software version: N/A
Valid for hardware version: N/A
Modbus is a software communication tool that is used to communicate between MiR robots and other devices. You can enable or disable it as needed.
This article explains what Modbus is, how it can be utilized, and how to set up Modbus on your MiR robots.
To enable the Modbus feature on the robot, go to System > Settings > Features and enable Modbus. Select Save changes at the bottom of the page.
Modbus TCP can be used to communicate between MiR robots and other devices to achieve the following purposes:
To control the status of the robot, such as Pause/Continue, Cancel current mission, Clear mission queue, and Clear error message.
To get basic information from the robot, such as its status, power percentage, and error messages.
To read and write registers in the robot.
To trigger a mission.
The Modbus slave/server is running on the robot and broadcasting on both local network IP (192.168.12.20) and an external WiFi IP address. It is listening on the standard port 502 for commands from outside devices. Usually, the device would be a PLC acting as the master/client device, and the MiR robot would be the slave/server device. The master/client device is the one in charge of polling the data.
In a typical case, the PLC (master/client) establishes a connection with the robot (slave/server). The robot waits for an incoming connection from the PLC. Once a connection is established, the robot responds to the queries from the PLC until the PLC closes the connection.
Several masters/clients can connect to the robot at the same time. Each connection is threaded.
The data is cached to avoid a high-frequency load of requests on the API while providing a response to any request.
The server can respond to function codes described in Table 1.1.
In the MiR robot, the content of coils and discrete inputs are matched with each other, as are the input registers and holding registers. So you can get the same data from them, but you can only send information to coils and holding registers.
Modbus can respond with the error codes (called exception codes) described in Table 1.2 if the user sends a wrong signal to Modbus.
The data model is described with the following points:
Addressing
The Modbus address that the robot uses can be found in the tables under Modbus data addresses reference.
The Modbus server has 0-based addressing. Be aware that some other devices are 1-based, for example, Anybus X-gateways. When using a 1-based device, add one to the address on that device, for example, address 3 on the robot will be address 4 on the Anybus X-gateway.
Read/write scheme
Status messages: Read only.
Registers: Read and write.
Mission triggers: Write available. Reading always return 0 if triggers have been set.
Action commands: Write available. Reading always returns 0.
Integer register
MiR robots save the integer in 32 bits, but the Modbus communications are 16 bits encoded. To accomodate this, In the Modbus server, two addresses are combined to represent one integer value in the robot. MiR Modbus uses big endian encoding as default configuration. This method is applied to all the integer registers and integer values of the robot’s information.
Floating register
MiR Modbus usees IEEE 754 ISO standard to encode floating point values.
The following tables describe which Modbus addresses can be used on the robot, including their function, permission, and data type.
Title | Description | Permission | Data type | Address |
---|---|---|---|---|
Pause robot | Address of the coil used to trigger the Pause action on the robot | W | Bool | [00002] |
Cancel current mission | Address of the coil used to cancel the ongoing mission, if any | W | Bool | [00003] |
Clear mission queue | Address of the coil used to clear the entire mission queue | W | Bool | [00004] |
Clear error | Address of the coil used to clear the errors on the robot | W | Bool | [00005] |
Continue robot | Address of the coil used to trigger the Continue action on the robot | W | Bool | [00006] |
Title | Description | Permission | Data type | Address |
---|---|---|---|---|
Triggers | Trigger the linked mission in system settings. | W | Bool | [01001]…[02000] |
Title | Description | Permission | Data type | Address |
---|---|---|---|---|
Software version | Robot software version. Each address represents one digit of the software version | R | int16 | [40001, 40002, 40003] |
Mode | The current mode of the robot. Refer to Code Definition for more information | R | int16 | [40004] |
State | The current state of the robot. Refer to Code Definition for more information | R | int16 | [40005] |
Error code | The last error registered on the robot. 0 if no errors were detected | R | int16 | [40006, 40007] |
Battery level | Remaining charge in percent [%] | R | int16 | [40008] |
Uptime | The robots uptime | R | int32 | [40009, 40010] |
Distance run | The total distance run by the robot | R | float32 | [40011, 40012] |
Position X | Position X in global coordinates | R | float32 | [40013, 40014] |
Position Y | Position Y in global coordinates | R | float32 | [40015, 40016] |
Position Orientation | Orientation of the robot in global coordinates [in degrees] | R | float32 | [40017, 40018] |
Length of mission queue | Number of missions pending or executing | R | int16 | [40019] |
Title | Description | Permission | Data type | Address |
---|---|---|---|---|
Integer Registers | Value of integer registers | R/W | int32 | [41001,41002]…[41199, 41200] |
Float Registers | Value of float registers | R/W | float32 | [42001,42002]…[42199, 42200] |
By default you will be able to set up a Modbus master on your PLC to get status messages, get/set registers, and set action commands from the robot. If you need to trigger missions on the robot, mission triggers need to be set up as described below.
After you have turned on the Modbus feature and created a mission, go to System > Triggers > Create trigger to create a new trigger. The coil ID can be assigned to any integer between 1001 and 2000. After the trigger is created, the robot will trigger the mission once you set the coil to True via Modbus.
The following tables describe the ID values for the robot's modes and states.
Mode ID | Description |
---|---|
0 | Start mode |
3 | Robot is mapping |
4 | Robot is finalizing the map |
7 | Robot is executing |
255 | Robot is transitioning to a map |
State ID | Description |
---|---|
0 | None |
1 | Starting |
2 | Shutting down |
3 | Ready |
4 | Pause |
5 | Executing |
6 | Aborted |
7 | Completed |
8 | Docked |
9 | Docking |
10 | Emergency/Protective stop |
11 | Manual control |
12 | Error |