Environment Building

pymycobot is a Python package used for serial communication with myCobot/myArm. It supports Python2, Python3.5 and later versions.

Before using pymycobot, make sure to build a Python environment. Follow the steps below to install Python.

1 Download and Installation of Python

At present, Python has two versions: 2.x and 3.x. These two versions are incompatible with each other. This section takes the version 3.x as an example due to its increasing popularity.

1.1 Installing Python

Notice: Before installation, check the operation system of PC. Press right button on the My Computer icon and then select Properties. Install the corresponding Python.

7.1.1-1

7.1.1-1

  • Go to http://www.python.org/download/ to download Python.
  • Click on Downloads, and then download begins. Tick Add Python 3.10 to PATH. Click on Install Now, and then installation begins.

7.1.1-1

7.1.1-1

7.1.1-1

  • Download and installation complete.

    7.1.1-1

1.2 Running Python

Open the command prompt window (Win+R, input cmd and press Enter). Type Python.

Successful Installation:

7.1.1-1

This on-screen instruction means that Python is successfully installed. The prompt >>> means Python interactive environment. If you input a Python code to get the execution result immediately.

Error Report:

If a wrong instruction is typed, for example "pythonn", the system may report an error.

7.1.1-1

Notice: Generally, the error results from lack of environment configuration. Refer to 1.3 Environment Configuration to solve problems.

1.3 Environment Variable Configuration

Windows follows the path set by a Path environment variable in search of python.exe . Otherwise, an error will be reported. If you fail to tick Add Python 3.9 to PATH during installation, you need to manually add the path where python.exe is located into environment variable or download python again. Remember to tick Add Python 3.9 to PATH .

Follow the steps below to add python into environment variable manually.

  • Right click on My Computer icon -->Properties ->Advanced System Settings ->Environment Variables

7.1.1-1

  • The environment variables include user variables and system variables. For user variables, users can utilize their own downloaded programs via cmd command. Write the absolute path of the target program into the user variables.

7.1.1-10

7.1.1-11

  • After the configuration, open the command prompt window (Win+R; input cmd and press Enter), and type Python.

7.1.1-7

2 Installation of PyCharm

PyCharm is a powerful python editor with the nature of cross-platform. Follow the steps below to download and install PyCharm.

Go to PyCharm to download PyCharm.

2.1 Download and Installation

Official website view:

7.1.1-7

It is recommended to install the free version.

  • Click on Next:

7.1.1-7

  • Select options according to your needs and then select Next:

7.1.1-7

  • Tap Install:

7.1.1-7

  • Installing:

7.1.1-7

  • Tap Finish

    7.1.1-7

2.2 Create a new project

  • Click +New Project :

7.1.1-7

  • The Interpreter is used to interpret python programs. Select Add Interpreter ->Newto add base interpreter.

    7.1.1-7

    7.1.1-7

  • Location refers to the place where to save python file. Choose a file to put your programs.

    7.1.1-7

  • Click on Create and a sample appears:

    7.1.1-7

  • Right click on the selection that the red arrow points, and create a new python file.

    7.1.1-7

  • Type name for the new file.

    7.1.1-7

3 Preparations

  • Firmware burning. Firmware serves as a driver for systems to control robots.

    • M5Stack version Make sure to burn minirobot for Basic at the bottom. And then chooseTransponder function (to receive instructions from Basic), Press Press A. Atom: OK means connect successfully. Refer to MyStudio) for more information about firmware burning.
  • pymycobot installation. Type pip install pymycobot --upgrade --user via terminal (Win+R) cmd command.

    pip install pymycobot --upgrade --user
    

7.1.1-7

  • Source code installation. Open a terminal (Win+R, input cmd ), and type the command below to install.

    git clone https://github.com/elephantrobotics/pymycobot.git <your-path>   
    #Fill in your installation address in <your-path>, do not choose the current default path.
    
    cd <your-path>/pymycobot    
    #Go to the pymycobot folder of the downloaded package.
    
    #Run one of the following commands according to your python version.
    # Install
     python2 setup.py install    
    # or
     python3 setup.py install
    
  • Update pymycobot

pip install pymycobot --upgrade

4 Import of pymycobot

After the above preparations are completed, the control of the robotic arm begins with Python code. Here's an example of the myArm Master 750 version.

  • Enter the following code to import our library:
from pymycobot import MyArmM

Notice:

  1. If no red wavy line appears below the codes, pymycobot is successfully installed.
  2. if a red wavy line appears, got to the address https://github.com/elephantrobotics/pymycobot to download pymycobot manually and put it into python library.

7.1.1-7

5 Simple Demo

Create a new Python file, and type the following codes to set the color of RGB light panel.

Notice: The baud rates are different according to types of devices. Refer to calculator device manager to check the corresponding number.

  • Codes for MyArmM:
# demo.py
from pymycobot import MyArmM
import time

# Initiate MyCobot
# Create object code here for windows version
myarmm = MyArmM("COM4", 115200)

i = 7
#loop 7 times
while i > 0:
    myarmm.set_tool_led_color(0, 0, 255)  # blue light on
    time.sleep(2)  # wait for 2 seconds        
    myarmm.set_tool_led_color(255, 0, 0)  #red light on
    time.sleep(2)  # wait for 2 seconds    
    myarmm.set_tool_led_color(0, 255, 0)  #green light on
    time.sleep(2)  # wait for 2 seconds    
    i -= 1

Run the example file:

python3 demo.py

The blue, red, and green lights on the top of the robot flash 7 times continuously at an interval of 2 seconds.


← Previous Page | Next Page →

results matching ""

    No results matching ""