Mid-Senior Engineers: Reinvent your career with Robotics, earning $100k-$200k+ in the next 90 days. Learn More

Communication Between Arduino & Python

Liz Miller Learn Robotics

About the Author, Liz Miller, Founder/CEO @ Learn Robotics

Liz graduated with a degree in Robotics Engineering from Worcester Polytechnic Institute and researched drones at UPenn's GRASP Lab. Liz is a former Raytheon Engineer, where she managed major $MM automation projects worldwide. Today, she's the driving force behind Learn Robotics, offering the Robotics Career Blueprint for Engineering Professionals and beginner courses through the Online Robotics Class. Liz is a third-generation entrepreneur who is all about the application of innovation in robotics, automation, and AI. Follow Liz on LinkedIn and Facebook.

Disclosure: Some of the links below are affiliate links. This means that, at zero cost to you, Learn Robotics will earn an affiliate commission if you click through the link and finalize a purchase. Learn Robotics is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a way for websites to earn advertising revenues by advertising and linking to Amazon.com.

Join our Private Discord Server, MakeRobots! Sign Up

Recently I started learning Python, and I was amazed by the simplicity and capabilities. So, I thought let’s connect it to Arduino, and see what I can do with it.

Communication between Arduino and Python isn’t a new concept, There are many modules available for Python that help in the process. In this tutorial, I’m going to use ‘pyserial‘ package for communication. For this, you will need a basic understanding of Python and Arduino. I’m using ‘Python 2.7‘ here.

Once you learn how to communicate between these two environments you can use it for multiple projects. Python is a great tool for image processing, object detection, and color recognition which can be used in various robotics projects.

So let’s get started…

What You Need

Check The Video Tutorial

Setup Process

Arduino Python Communication
  1. Download and install Python 2.7.x compatible with your OS. If you use Linux, Python is probably already installed. I use Windows 10, so I installed Python for Windows.
  2. Once it is properly installed, set environmental variables so it can be accessed from CMD.
  3. Now to communicate between Arduino and Python, we need to install a Python module called “pyserial“. To install modules we use the command “pip install“.
  4. Open up a CMD terminal, and type pip install pyserial this will install the module required for Serial communication.

With these steps done, we are ready to start programming.

First Download the Arduino and Python example codes, below or follow along with this tutorial.

Download Now!


Writing the Arduino Sketch to Communicate to Python

Arduino Python Communication

Open up the Arduino Sketch, LED.ino.

Now select the board & correct COM port and upload the code.

After the sketch is uploaded Goto >> Tools >> Serial Monitor, Enter ‘1’ to turn the LED on and ‘0’ to turn it off.  We used the built-in LED (pin 13) in the code, but you can connect an external LED to pin 13, 220-ohm resistor, and GND.

Arduino Python Communication

Writing Python Script

Next, let’s write the python code. But first, note the COM port to which the Arduino is connected. Mine is “COM3”. You can find it out from Tools >> Port or through Device Manager. We will need it in the next step.

Open the example Python script first in Python IDLE. Goto >> Files >> Open.

Now in the script, you have to make a small change. The COM port to which the Arduino is connected needs to be added to the script.  In the example code, replace ‘COM’ with your COM port.

Tip: If you’re on a Mac, open up the Arduino IDE, Goto Tools >> Port, and copy the port address into your python code.

Testing the Build

After writing and editing the script in IDLE, save it as LED.py (Hit Ctrl  + S to save).

Arduino Python Communication

Now before running the program, close the Arduino IDE. We need the COM port to be available for serial communication, so both programs can’t be running simultaneously.

Finally, you can RUN the code. Go ahead and hit F5 to run the script.

You will see a screen asking for input. Just enter ‘1’ or ‘0’ to turn the LED on/off. If the LED does not respond for the first time just close the IDLE and unplug Arduino and plug it again and retry.

Arduino Python Communication

If you can control the LED, you have successfully established communication between Arduino and Python.

How to Control Arduino with Python 3.7 and 3.9

For Python 3.7, you need to make a few minor adjustments to the code. A special thanks to Paulo, for his improvement to this project and for providing us with the sample code for Python 3.7. Give it a try, and let us know how it goes!

Tip: If you get an error: ModuleNotFoundError: No module named ‘serial’, then you’ll need to install the pyserial module for the version of Python that you want to use. This code works on Python 3.9 as well. To install pyserial on python 3.9, you can use the command python3.9 -m pip install pyserial.
import serial
import time

arduino = serial.Serial(port = 'COM3', timeout=0)
time.sleep(2)

while True:

    print ("Enter '1' to turn 'on' the LED and '0' to turn LED 'off'")

    var = str(input())
    print ("You Entered :", var)

    if(var == '1'):
        arduino.write(str.encode('1'))
        print("LED turned on")
        time.sleep(1)

    if(var == '0'):
        arduino.write(str.encode('0'))
        print("LED turned off")

Other Arduino and Python Projects to Try

Now, you’re ready to try out our other Arduino and Python Projects.

I hope you enjoyed this tutorial. Let me know what you think in the comments, below!

How to Interface Python with Arduino
Experienced Engineer (Mechanical, Electrical, Computer, Software): If I offered to help you upgrade your engineering career to robotics, earning $100k-$200k+ in the next 90 days, would you take me up on that offer? Click here for details.
Liz Miller Learn Robotics

🚀 Pre-Launch: Become a "MakeR" with MakeRobots!

Hey Reader, 👋

Liz Miller, Founder/CEO, here with some Exciting News!

Learn Robotics just acquired MakeRobots™, an Online Robotics Community, and are prepping its Official Learn Robotics Debut in Late 2023.

MakeRobots™ is your one-stop-shop for learning, gaining coding, electronics, and robotics skills, connecting, and building robots for one low monthly membership!

Join MakeRobots™ at our Special Pre-launch Rate!
🤖 Access our Private Community & Robotics Courses
💬 Network, Collaborate, Connect with Other Makers
🔓 Only $5.99/month – locked in for life
⏱️ Pre-launch deal is Limited to the first 1,000 subscribers

This is a perfect opportunity for you to get into the fastest growing robotics community on the internet, at our ground-level, pre-launch membership rates.

👇 Click the button below to Claim your Pre-launch Membership and become a MakeR in the MakeRobots Community, today!

Learn Robotics Botly Favicon

MORE LEARN ROBOTICS ARTICLES