The MiR Serial interface is a generic interface protocol suitable for interfacing, for example, PLCs to the MiR mobile robot platform. The interface offers possibilities of setting new positions, starting and stopping robot mission execution, and making 100 32 bit integer and 100 64 bit floating point registers available for the user to store process variables, mission parameters, and other data.
The registers can be used as a shared memory interface for data sharing between the mobile robot, the device connected through the serial port, and devices using the built-in REST interface. Through this device, the system can be programmed for example to wait for a certain register to be set before proceeding on a mission, which can be useful when waiting for a PLC controlled process to finish or a button to be pressed before continuing.
In addition to this, the interface offers the possibility of a limited interaction with the mission subsystem of the MiR robot by for example retrieving a list of available missions and queueing, starting, and aborting missions in the mission queue.
Serial Interface works on all MiR robots as long as the robot has at least one free USB port.
To install and configure a USB to serial adapter to use with the MiR Serial Interface, you must have a compatible USB to serial adapter available.
The parameters of the Serial Interface are as listed in the table below. The values marked in bold are the default values. The parameters of the interface can be configured by editing a configuration file, see Installing a USB to serial adapter.
Parameter | Specification |
---|---|
Serial interface type | RS232 |
Baud rate | Standard 1200, 2400, 4800, 9600, 19200, 38400, 57600, 115200 User specific |
Data bits | 7 or 8 |
Stop bits | 0, 1 or 2 |
Parity | None, Even, Odd |
Synchronization (CTS/RTS) | Not supported |
MiR robots support USB to RS232 converters based on the FTDI chipset. MiR recommends that you buy a FTDI-based USB to RS232 from http:/www.ftdichip.com/Products/Cables/USBRS232.htm.
This section describes how to install and configure a USB to serial adapter to use with the MiR Serial Interface. For this, you must have a compatible USB to serial adapter available.
The USB to serial adapter can be installed in the top-mounted USB ports if the physical layout of the top module allows it, and if the port is not occupied by a top camera. If the top-mounted USB port is occupied, it is possible to use the USB port, going to the service port under the front corner.
To install a USB to serial adapter, follow the steps below:
When using the serial interface, the Serial Interface node is automatically activated. However, you can manually start and stop it under the Launch Menu, which is located under System > Processes.
There are two basic ways of interacting with the robot via the serial protocol: setting parameters by prefixing a command with !, or retrieving parameters by prefixing a command with ?.
Prefix | Syntax | Command | Example explanation | Example | Response |
---|---|---|---|---|---|
! | R<n># <value> | Set Register | Set register 101 with value 3.14159 | !R101# 3.14159 | OK: Register set |
! | P | Pause Signal | Pause robot | !P | OK: Wait called |
! | C | Continue Signal | Un-Pause robot | !C | OK: Continue called |
! | GO: <x>, <y>, <theta> | Go to point | Go to point with coordinates (2.4,45.2) 0.29 degrees | !GO: | OK: Position set |
! | GO: <position name> | Go to position | Go to position called “Home” | !GO: Home | OK: Goal position set |
! | X | Abort current mission | Abort current mission | !X | OK: Mission aborted |
! | MA: <Mission name> | Append Mission to Mission queue | Append Mission “Move to List” | !MA: Move to List | OK: Mission appended |
! | MC | Clear Mission Queue | Clear the Mission | !MC | OK: Mission queue cleared |
? | R<n> | Get Register | Get value | ?R101 | OK: R101#3.14159 |
? | P | Get current position | Get current position (X, Y, theta in radians) | ?P | OK: 52.15, 0.81, 1.929 |
? | S | Get robot status | Get Status (platform state, distance traveled, uptime, battery, mode) | ?S | OK: 3, 0.0, 83.87, 25.50, manual |
? | L | Get list of available position names | Get list of position names | ?L | |
? | MQ | Get Missions in Mission Queue | Returns the names of the Missions in the Mission queue | ?MQ | OK: Call Elevator, Go to Dock, Dock |
? | MA | Get name of active Mission | Returns the name of the active Mission in the Mission queue | ?MA | OK: Call Elevator |
? | ML | Get name of available Missions | Returns the names of the available Missions | ?ML | OK: Call Elevator, Go to Dock, Dock, Production, Open Door |
All commands must be terminated by the carriage return character \r with the hexadecimal value of 0x0D. The response sent back will be terminated by a carriage return character \r as well.
Some commands and associated return values in the command set of the MiR Serial Interface deserve special attention. The commands are listed in this section for easy reference.
When handling dynamic strings on devices, such as PLCs, some of the replies utilize fixed positions for the return values to allow for the device to index directly to the values they require.
Please note that the commands are case sensitive, and the serial interface will therefore not accept lower-case letters as commands.
The syntax of the command is !R<n>#<value>\r, with !R being the Set Register command, <n> being the number of the register, for example 37, # being the value specification character, and <value> being the value, for example 82. In this case, the complete command would be !R37#82\r.
For registers 101-200, the syntax of the command is basically the same, but it allows floating point values. An example of such a command is !R101#3.1459\r for setting register 101 to the value of 3.1459.
The syntax of the command is ?R<n>\r, with ?R being the Get Register command and <n> being the register to query for value. An example of such a command is ?R101\r to get the value in register 101.
The return string of the command is formatted as follows: OK: R%i#%i\r in the case of registers 1-100 and OK: R%i#%lf\r in the case of registers 101-200. The register number will be filled with leading zeroes, so that ?R7 returns OK: R007#1234\r. Another example of a reply from a floating-point register is OK: R101#3.1459\r, denoting a value of 3.1459 in register 101.
By querying with the Get Current Position command, it is possible to get the position of the MiR robot in the internal coordinate system. The units of the coordinate system are in meters and the resolution of the positions given are in centimeters.
Figure 1.1. Coordinate system of the robot.
The origin of the coordinate system is the point where the mapping procedure started. This means that an X/Y position will not necessarily be at a corner of a map, but most likely somewhere inside it. Error: Reference source not found shows the axes of the coordinate system used in the MiR robot. The X coordinate can be thought of as the longitude of the map, the Y coordinate as the latitude, and the Theta as the rotation around the origin versus the X axis measured in radians (multiply by 57.296 to get degrees).
The return string of the command is formatted as follows: OK: %7.2lf,%7.2lf,%5.3lf\r, which means that space is reserved for coordinates up to 99999 with centimeter precision and rotations with precision of a thousandth of a radian. An example of a reply is OK: 52.15, 0.81, 1.929\r, denoting an X coordinate of 52.15, a Y coordinate of 0.81, and a rotation of 1.1929 radians.
The possible system states of the robot are listed in Error: Reference source not found.
The first field of the Get Status reply denotes the system state of the robot. During the execution of a mission, the normal state of the robot is 5, meaning the robot is executing a mission.
By querying with the Get Status command, it is possible for example to see if the robot is in emergency mode and for example activate a blinking light on the attached PLC.
State ID | State |
---|---|
1 | Starting |
2 | Shutting down |
3 | Ready |
4 | Pause |
5 | Executing |
6 | Aborted |
7 | Completed |
10 | Emergency Stop |
11 | Manual Control |
12 | Error |
The serial interface offers 200 custom registers. Registers 1-100 are 32 bit integer registers, while registers 101-200 are 64 bit floating point registers. Writing floating point values to integer registers will truncate the values and loose the information found in the value after the decimal point.
For example, the registers can be used for persistent storage of values or interacting with missions.
If you are using the registers for synchronization between the robot and for example a PLC, please note that the mission subsystem of the robot will accept a difference in values of lower than 10-5 as a match due to internal handling of the numbers. This means that if a mission is programmed to wait for a value of 1.000000 in a register, and the value stored by the PLC is 1.0000005, the values are accepted as a match. It is recommended only to use the integer registers 1-100 as synchronization registers.
To allow for further customization, synchronization, and editing, you can use the PLC registers accessible in the robot interface.
Follow the steps below to use PLC registers:
In this section, a series of examples are listed as inspiration for users of the MiR Serial Interface. The examples should be regarded as demonstrations of the interface only and not as complete in terms of possible feedback to the users, as these examples focus on the communication over the serial interface.
The CLICK PLC C0-00DD1-D and associated programming software from AutomationDirect have been used to illustrate the examples.
This example pauses, resumes, or aborts the robot during execution of a mission. This could be beneficial if, for example, the robot is entering an area where personnel are operating heavy equipment, and due to the risk of equipment damage, the robot should wait until the personnel have finished before continuing. If the operation of heavy equipment takes too long, the personnel would like to be able to cancel the current mission and reassign the robot to go back to for example a dock to be assigned new missions.
The example can be realized with a PLC with two buttons connected: one for controlling the pause/continue/abort operation, and one for commanding the robot to return to the Dock position after the abort signal has been sent over the Serial Interface.
The operation of the program is as follows:
When the StopButton is pressed, a timer starts. If the timer is pressed more than five seconds, the abort signal !X is sent over the serial interface.
If the StopButton (X1) is activated, and pause has not been sent, the !P signal is sent over the serial interface.
If the StopButton is released, and the abort timer has not fired, the continue signal !C is sent over the serial interface.
If the abort signal has been sent, and the DockButton has been pressed, the Go To Position with position Dock is sent !GO:Dock.
Figure 1.2. CLICK PLC Ladder program of Pause/Continue/Abort example.
One of the key features of the MiR Serial Interface is the ability to share information between the robot and peripheral devices connected via the MiR Serial Interface, such as PLCs, using one or more of the 200 available registers.
These registers can be assigned values by the PLC and used for triggering events in the robot programming interface to signal when a PLC based process has been completed, and the robot can proceed with its mission.
The procedure of the program is as follows:
The robot drives to the specified position.
The value of Register 10 is set to 1 to signal the top-mounted PLC to start operation.
The robot waits while monitoring the status of Register 10. When the value of the Register is 0, it proceeds to position OffloadPosition.
PLC: The subroutine Proc MiR SerialInterface monitors the serial interface, sends periodic commands to get the value of Register 10 (?R#10), and parses the incoming string. The value of Register 10 is put into the register DS1.
PLC: If this value is equal to 1, the StartSignal register is activated which in turn activates the (in this case abstract) process of the TopModuleProcess subroutine. This process uses the PLC register C2 to signal when the process is complete.
PLC: When the process is complete, and register C2 is enabled, the PLC writes the value ‘0’ to register 10 with the command !R10#0.
The robot observes that Register 10 has returned to value 0 and proceeds to the specified position.
Figure 1.3. CLICK PLC ladder diagram example of using the registers as synchronization between the robot and a PLC. Please note that the process of parsing the incoming strings is now shown.
Figure 1.4. Mission of the process as described in the list. The first entry is the Move to position. Then the Mission sets Register 10 to 1 as the start signal to the PLC. The Wait for PLC Register monitors Register 10 until it reaches the value 0. After this, the robot continues to the specified position.
The serial interface protocol is a generic protocol whose use extends beyond the realm of PLCs. If the users wish to use it with for example a PC equipped with a RS232 port, it is possible either through custom software or through either commercially available or freeware software from a wide range of vendors and organizations.
An example of such a piece of software is the PuTTy2 client. Originally written with SSH and Telnet clients in mind, the program is also able to handle serial connections in the terminal. Other terminal programs, such as Windows Hyperterminal, Docklight, RealTerm, or similar can also be used. Please note that the PuTTy terminal program does not offer the use of delete or backspace characters in the terminal window, so any commands with spelling errors will not be accepted.
The example will demonstrate how to interact with the Mission subsystem of the robot platform. The example assumes that three missions called Go Home, Dock, and Call Elevator have been created, using the MiR robot interface, and the current mission queue is empty.
To interface using PuTTy, follow the steps below:
.