Dobot MG400 Manual
Also See for MG400:

Advertisement

Dobot MG400 Manual

Preface

Purpose
This manual introduces the installation procedure of MG400 training system, as well as LED light demo and trajectory simulation demo, which is convenient for users to understand and use the MG400 training system.

Intended Audience
This document is intended for:

  • Ÿ Customer
  • Ÿ Sales Engineer
  • Ÿ Installation and Commissioning Engineer
  • Ÿ Technical Support Engineer

Change History

Date Change Description
2023/01/06 Integrate the installation procedure, LED light demo and trajectory simulation demo of MG400 training system
2022/06/15 The first release

Symbol Conventions
The symbols that may be found in this document are defined as follows.

Symbol Description
Indicates a hazard with a high level of risk which, if not avoided, could result in death or serious injury
Indicates a hazard with a medium level or low level of risk which, if not avoided, could result in minor or moderate personal injury and damage to the equipment
warningNOTICE Indicates a potentially hazardous situation which, if not avoided, can result in damage to the equipment, data loss, or unanticipated result
NOTE Provides additional information to emphasize or supplement important points in the main text

Product Introduction

The MG400 training system is an educational solution designed for vocational and higher education to help students understand the functions of standard automation systems and improve the effectiveness of training. A standard MG400 training system is shown in the figure below. The MG400, vision system and air pump box need to be purchased separately.
The MG400 training system can realize the following functions:

  • Robot programming and debugging
  • User/Tool coordinate system settings
  • Palletizing
  • Dynamic grasping
  • Trajectory programming
  • Robot object recognition, etc.

Installation Instructions

The size of MG400 training system is 900×600 mm. The installation position of each part is shown below.
Installation Instructions - Step 1

Install MG400

  1. Remove the four screws from the baseplate for MG400.
    Installation Instructions - Step 2
  2. Take the MG400 out of the packing case and place it on the training system, as shown below.
    Installation Instructions - Step 3
  3. Secure the MG400 using four screws.
    Installation Instructions - Step 4
  4. Connect each cable of the training system to the corresponding interface of the MG400. Connect each cable and air pipe to the corresponding interface of MG400, according to the figures below.
    Installation Instructions - Step 5
    Installation Instructions - Step 6

Table 3.1 Description on MG400 interfaces

Index Sign Description
A1 OUT DO interface
A2 OUT DO interface
B1 IN DI interface
B2 IN DI interface
C1 ENC Encoder interface, which is used to connect the conveyor belt for dynamic tracking
C2 E-Stop Emergency stop switch interface
Air pipe AIR Air source interface. The diameter of the corresponding air pipe is 4mm

Place toolbox

The MG400 training system is equipped with a toolbox, and the props in the toolbox are used with the MG400 for different operations. The toolbox props are shown below.
Place toolbox - Step 1
Place the toolbox in its corresponding area on the training system for easy access.
Place toolbox - Step 2

Install LED light

The MG400 training system is equipped with an LED status light, including three colors, which is mainly used to display the current operating status of the equipment.

  1. Place three boat nuts at the installation position of the LED light on the training system, as shown in the figure below.
    Install LED light - Step 1
  2. Place the LED light on the boat nut.
    Install LED light - Step 2
  3. Adjust the position of the boat nut based on the hole position of the LED light baseplate.
    warningNOTICE
    The LED light has four holes, while only three holes are used here.
  4. Tighten the three screws and washers with the corresponding boat nuts using the socket head wrench in the toolbox.

Install vision system

  1. Install the camera light source kit on the camera, and tighten the 3 fixed knobs on the light source kit to secure it to the camera.
    Install vision system - Step 1
  2. Assemble the camera support using two M4*10 hexagon socket screws.
  3. Fix the camera to the camera support and tighten the screws, as shown below.
    Install vision system - Step 2
  4. Connect two extension rods together.
    Install vision system - Step 3
  5. Install the assembled extension rod on the base where the vision system is installed on the training system, and tighten it.
    Install vision system - Step 4
  6. Install the camera support to the extension rod. It is recommended that the camera support be 2cm away from the top of the extension rod. Adjust the fixture on the camera support to secure the camera support to the extension rod.
  7. Connect the I/O cable and USB cable to the camera, as shown in the figure below.
    Install vision system - Step 5
  8. Disassemble the position as shown in the following figure. Connect the visual light source, and take out the light switch.
    Install vision system - Step 6

Install protective cover

The protective cover can effectively protect the distribution panel of MG400 training system from being squeezed and mis-operated.

  1. Assemble the three acrylic side-plates of the protective cover using M3*12 flat head screws.
    Install protective cover - Step 1
  2. Assemble the upper cover of the protective cover using M3*12 flat head screws.
    Install protective cover - Step 2
  3. Remove the four screws, as shown in the figure below.
    Install protective cover - Step 3
  4. Place the protective cover to its corresponding position on the training system, and tighten 4 screws.
    Install protective cover - Step 4

Install air pump box

  1. Take the air pump box out of the packing case and place it on the training system.
    Install air pump box - Step 1
  2. Connect the power supply and air pipe to the corresponding interface of the air pump box respectively, as shown in the following figure.
    Install air pump box - Step 2

LED Demo

On the MG400 training system, the LED light, namely the LED light buzzer, indicates the operation of each device on the MG400 training system through its color and sound.

I/O description

DI Description DO Description
DI2 Start DO6 Green LED light + green button light
DI3 Stop DO7 Yellow LED light + yellow button light
DI4 Reset DO8 Red LED light + red button light
DI5 / DO9 Buzzer

Buttons

Import and run project

  1. Click in DobotStudio Pro main page to enter Script page. Click File > Import project.
    Import and run project - Step 1
  2. Select "script_ LED light buzzer" file folder, and open it.
    Import and run project - Step 2
  3. Click Save. Enter a project name (such as "LED_light_buzzer') and click OK.
  4. Click Startto run the program.
    Import and run project - Step 3

Demo description

Main program

  1. Press the green button.
    → The green light is on.
    WaitDI(2,1)
    DO(6,1)
  2. Press the red button.
    → The green light is off, and the red light is on.
    WaitDI(3,1)
    DO(6,0)
    DO(8,1)
  3. Press the blue button.
    → The red light is off, and the yellow light is on (2s).
    → The yellow light is off, and the green light is on (1s).
    → The green light is off, and the yellow light is on (1s).
    → The yellow light is off, and the red light is on (1s).
    → The green, yellow and red lights are on, and the buzzer rings(2s).
    → The green, yellow and red lights are off, and the buzzer is off (end).
    WaitDI(4,1)
    DO(8,0)
    DO(7,1)
    Sleep(2000)
    DO(7,0)
    DO(6,1) Sleep(1000) DO(6,0)
    DO(7,1)
    Sleep(1000)
    DO(7,0)
    DO(8,1)
    Sleep(1000)
    DO(8,0)
    DO(6,1)
    DO(7,1)
    DO(8,1)
    DO(9,1)
    Sleep(2000)
    DO(6,0)
    DO(7,0)
    DO(8,0)
    DO(9,0)

Trajectory Simulation Demo

In the trajectory simulation demo, the end of the robot can move along the specified trajectory based on the taught points.
Trajectory Simulation Demo

Hardware installation

  1. Install the calibration needle (trajectory needle) on the end of MG400. The red box below shows the parts which need to be assembled.
    Hardware installation - Step 1
  2. Place the trajectory board on the conveyor.
    Hardware installation - Step 2

Teach points and run project

  1. Click in DobotStudio Pro main page to enter Script page. Click File > Import project.
  2. Select "script Trajectory" file folder, and open it.
  3. You need to teach 40 points in this demo. Here shows the points on the trajectory board, which will not be described one by one.
    Teach points and run project - Step 1
  4. Click Points, and you will sce 3 points in the point list.
    Teach points and run project - Step 2
    P1 (HOME) is the safe point, as shown below
  5. Jog MG400 on the Control panel or drag MG400 to move to gjl point on the calibration board, and cover P2 in the point list.
    Teach points and run project - Step 3
    Teach points and run project - Step 4
  6. Cover P3 (gj2) in the same way.
  7. Drag MG400 to gj3 point. Click Add on Points panel to add P4.
    Teach points and run project - Step 5
  8. Repeat the steps above to teach all the 40 points.
  9. Click Save, Enter a project name (such as "Trajectory") and click OK.
  10. Click Startto run the program.

Demo description

When the project starts running, the robot will run to the safe point, and then run to gj1 point. After moving a circle along the trajectory, it will return to the safe point. This section does not give detailed description on the script.

Safety Precautions

This section describes the security precautions that should be noticed when you use this product. Please read this document carefully before using the robot for the first time. This product needs to be used in an environment meeting design specification. You cannot remold the product without authorization, otherwise, it could lead to product failure, and even personal injury, electric shock, fire, etc. People who use this product for system design and manufacture must be trained by Yuejiang Technology Co., Ltd., or relevant institutions, or must have the same professional skills, and use the device in strict accordance with the regulations of this document.

Safety warning sign

The following safety warning signs may appear in this document, and their meanings are listed as follows.

Sign Description
Indicates a high degree of potential danger, which, if not avoided, will result in death or serious injury.
shock hazardELECTRICITY May cause dangerous power consumption soon, which, if not avoided, will cause personal injury or serious damage to the equipment.
warningHOT May cause dangerous hot surfaces, if touched, may cause personal injury
Indicates a moderate or low potential hazard, which, if not avoided, may cause minor personal injury and damage to the equipment.
warningATTENTION Indicates a potential risk, which, if ignored, may result in damage to the robot arm, loss of data or unpredictable results
warningNOTICE A situation that, if not avoided, can cause personal injury or damage to the equipment.
For items marked with such signs, depending on the specific situation, there is sometimes a possibility of significant consequences

General safety

The following security rules should be followed when you start and use the training system for the first time.

  • Ÿ The training system is an electrical device. Non-professional technicians cannot modify the circuit, otherwise, it may cause personal injury or damage to the device. Ÿ You should comply with the local laws and regulations when operating the device.
  • The security precautions in this document are only supplemental to the local laws and regulations.
  • Ÿ Please use the device in the specified environment scope. Exceeding the specifications or load conditions will shorten the service life of the device, or even damage it.
  • Ÿ Please ensure that the device is operated under the security conditions and there is no harmful object around the robot.
  • Ÿ Turning on or off the power continually may result in performance degradation of the main circuit components inside the robot. If turning on or off the power continually is required, please keep the frequency less than once a minute.

warningNOTICE

  • Ÿ The personnel responsible for installation, operation and maintenance of equipment must first undergo rigorous training, understand various safety precautions, and master the correct operation and maintenance methods before they can operate and maintain equipment.
  • Ÿ Personnel without professional training shall not disassemble and repair the equipment without authorization. If the device fails, please contact Shenzhen Yuejiang Technology Co., Ltd. technical support engineer in time.
  • Ÿ Be sure to carry out daily inspections and regular maintenance, and replace faulty components in time to ensure the safe operation of the equipment.
  • Ÿ If the equipment is scrapped, please comply with relevant laws to properly handle industrial waste and protect the environment.
  • Ÿ In order to prevent personnel from accidentally entering the working space of the robot arm, be sure to set up safety fence to prevent personnel from entering the hazardous area.
  • Ÿ Before operating the robot, make sure that no one is inside the safety fence. When operating the robot, be sure to operate outside the safety fence.
  • Ÿ Do not expose the training system to permanent magnetic fields all the time. Strong magnetic fields can cause damage to the device.
  • Ÿ Shenzhen Yuejiang Technology Co., Ltd. assumes no responsibility for robot damage or personal injury caused by failure to follow product instructions or other improper operations.
  • Ÿ Shenzhen Yuejiang Technology Co., Ltd. is not responsible for the damage caused during the transportation and handling of equipment.
  • Ÿ Please make sure that the robot is in the packing posture before packaging, and the brakes on each axis are normal.

  • Ÿ Before the operation, please wear antistatic uniform and gloves.
  • Ÿ It is prohibited to modify or remove the nameplates, instructions, icons, and marks on the equipment.
  • Ÿ Be careful during the device carrying or installing. Please follow the instructions on the packing box to put down the device gently and place it correctly in direction of the arrow.
  • Ÿ Please carry the robot with both hands. One hand holds the upper arm or forearm and the other hand holds the base, so as to keep the body stable and avoid damage caused by random rotation of the base or loosening of other axes.
  • Ÿ For personal security and equipment protection, please use the matched cables.
  • Ÿ Please ensure that robot and tools are installed correctly.
  • Ÿ Please ensure that the robot has enough space to move freely.
  • Ÿ Any impact will release a lot of kinetic energy, with a much more significant effect than that under high speed and high load.

Personal safety

During the operation of the device, it is necessary to ensure the safety of the operator. Please strictly follow the general precautions listed below.

  • Ÿ To reduce the risk of personal injury, please comply with local regulations with regard to the maximum weight one person is permitted to carry.
  • Ÿ Do not touch the terminal blocks or disassemble the equipment with the power ON. Otherwise, it may result in an electric shock.
  • Ÿ Please confirm that the equipment is well grounded, otherwise it will endanger personal safety.
  • Ÿ Do not touch the terminal blocks or remove the interval circuit components within 10 minutes after the power is shut off to avoid an electric shock since there is residual capacitance inside the robot.
  • Ÿ Even if the power switch of the robot is already in the OFF status, touching the terminal blocks or removing the interval circuit components is not allowed, to avoid an electric shock since there is residual capacitance inside the robot.
  • Ÿ Please ensure that safety measures have been established near the operation area, such as guardrails, to protect the operator and surrounding people.

Documents / Resources

Download manual

Here you can download full pdf version of manual, it may contain additional safety instructions, warranty information, FCC rules, etc.

Download Dobot MG400 Manual

Advertisement

Need help?

Need help?

Do you have a question about the MG400 and is the answer not in the manual?

Questions and answers

Table of Contents