How to Control DC Motors with Arduino

Arduino Uno And Dc Motor Driver Modules L298n L293d Feature Image

Maybe having the Raspberry Pi and DC motor combo isn’t enough. Perhaps you want to expand your DIY project portfolio. Read on and try out using DC motors on an Arduino!

Why Use DC Motors on an Arduino

Arduino Uno Photo Disconnected

A lot can be said about the differences between a Raspberry Pi and an Arduino. But here are three reasons why you might want to choose the latter:

  • Lower cost – you can buy more Arduino boards to drive more DC motors at a lower price.
  • Power constraints – if you are running on limited power through a battery or power station, you can run an Arduino on less power than a Raspberry Pi.
  • Power interruptions are no issue – an Arduino board can be abruptly cut off from power again and again, and it’ll still work like normal.

Good to know: If you’re planning to choose an ESP32 over an Arduino Uno, remember that there are Arduino shields that can give the latter more functionality. In fact, you could run four DC motors over a single L293D motor driver shield for the Uno.

Why You Need a Motor Driver

Here’s a big warning – don’t you EVER try and put a DC motor directly on your Arduino’s pins, or any other microcontroller’s pins.

There are two reasons for this:

  • Prevent damage through counter EMF – counter EMF happens when you turn the motors backward which induces an electromagnetic force that’s so strong that it starts reversing the flow of electricity from GND to the output pin. This can break the output pin you’re using for the motor.
  • Avoid overworking pins due to excessive current – to put things into perspective, a hobbyist HCROBO0061 5V DC motor needs 55mA to spin. That’s without a load connected to it. The current requirement will increase if you add a wheel or propeller to it. On the other hand, each output pin on Arduino boards using ATmega328P peaks out at 40mA at maximum. At that point, you’d be maxing out what the microcontroller chip can handle. You should be using about 20mA for continuous output. That’s less than half of what it takes to spin a weak toy motor.

With a DC motor driver, you can get rid of these problems because it isolates your microcontroller’s logic pins from the DC motor itself. The motor driver powers the DC motor too, letting you drive motors needing even up to 100x the Arduino’s current output limit.

Project Requirements

  • Arduino – any model will work, although it would be easier to work with an Uno instead
  • Motor driver – either the L293D motor driver shield for the Uno or L298N motor driver module for use with other Arduino models
  • Jumper wires – for connecting the Arduino to your motor driver
  • DC motor – preferably rated 6-12V
  • Power supply for the Arduino – either a 9V battery with DC barrel jack or a regular power bank should work
  • Power supply for DC motor – a second 9V battery can work as long as it has a DC barrel jack that can connect to on the motor driver’s GND and VCC.

How to Control DC Motors with Arduino

This tutorial outlines two methods of making DC motors work with Arduino.

1. Using L293D Motor Driver Shield

L293d Dc Motor Driver Shield On Arduino Uno Complete Circuit
  1. Copy and paste the following code into the Arduino IDE or PlatformIO. If you plan to use the latter, be sure to add #include <Arduino.h>.

Note: the following code uses four motors named dcMotor1, dcMotor2, dcMotor3, and dcMotor4.

#include <AFMotor.h> 
 
AF_DCMotor dcMotor1(1); // This defines the name of the motor (dcMotor1) and port number (1).
AF_DCMotor dcMotor2(2);
AF_DCMotor dcMotor3(3);
AF_DCMotor dcMotor4(4);
 
void setup() {
  dcMotor1.setSpeed(150); // Set the speed for the selected DC motor. Values can range between 0 and 255.
  dcMotor2.setSpeed(150);
  dcMotor3.setSpeed(150);
  dcMotor4.setSpeed(150);
}
 
void loop() {
  dcMotor1.run(FORWARD); // The FORWARD command runs the motor forward.
  delay(1000); 
  dcMotor1.run(BACKWARD); // The BACKWARD command runs the motor backward.
  delay(1000);  
  dcMotor1.run(RELEASE); // The RELEASE command stops the motor.
  delay(1000);
  dcMotor2.run(FORWARD);
  delay(1000); 
  dcMotor2.run(BACKWARD);
  delay(1000);  
  dcMotor2.run(RELEASE);
  delay(1000);
  dcMotor3.run(FORWARD);
  delay(1000); 
  dcMotor3.run(BACKWARD);
  delay(1000);  
  dcMotor3.run(RELEASE);
  delay(1000);
  dcMotor4.run(FORWARD);
  delay(1000); 
  dcMotor4.run(BACKWARD);
  delay(1000);  
  dcMotor4.run(RELEASE);
  delay(1000);
}
  1. Connect the motor driver shield to the Arduino.
L293d Dc Motor Driver Shield Attached To Arduino
  1. Check the jumper connector that connects the two PWR pins. Make sure that they are connected. This will bring electricity from the power supply to the Arduino board underneath.
L293d Dc Motor Driver Shield Jumper Connector To Power Arduino
  1. Connect your motors to the screw terminals marked M1, M2, M3, and M4. You don’t need to connect anything to the GND pin in the middle.
L293d Dc Motor Driver Shield Screwing On Dc Motors
  1. Connect your power supply to the power terminal. Red wire/cathode goes to M+ and black wire/cathode goes to GND.
L293d Dc Motor Driver Module Power Screw Terminal

Tip: You can attach all kinds of sensors to your Arduino board. Check out the most useful.

2. Using the L298N Motor Driver Module

L293d Dc Motor Driver Shield On Arduino Uno Complete Circuit
  1. Copy and paste the following code into your preferred IDE. Similarly, use #include <Arduino.h> on the first line if you plan to use PlatformIO.
#include <AFMotor.h> 
 
const int EnA = 5;
const int EnB = 6;
 
const int IN1 = 7;
const int IN2 = 8;
const int IN3 = 9;
const int IN4 = 10;
 
void setup() {
  // First, define all pins as output.
  pinMode(EnA, OUTPUT);
  pinMode(EnB, OUTPUT);
  pinMode(IN1, OUTPUT);
  pinMode(IN2, OUTPUT);
  pinMode(IN3, OUTPUT);
  pinMode(IN4, OUTPUT);
}
 
void loop() {
  // Add power to motors. The values here range between 0 and 255.
  // We'll start by bringing these motors to full power.
  analogWrite(EnA, 255);
  analogWrite(EnB, 255);
 
  // Motors will start running as soon as we set a direction.
  // The following code will make the motors spin forward and backward consecutively.
  const int time = 1200;
  digitalWrite(IN1, HIGH);
  delay(time);
  digitalWrite(IN1, LOW);
  digitalWrite(IN2, HIGH);
  delay(time);
  digitalWrite(IN2, LOW);
  digitalWrite(IN3, HIGH);
  delay(time);
  digitalWrite(IN3, LOW);
  digitalWrite(IN4, HIGH);
  delay(time);
  digitalWrite(IN4, LOW);
 
  // We can control the speed of the motors with the En pins.
  // To demonstrate, here is a for loop that will spin both motors gradually faster and slower.
  digitalWrite(IN1, HIGH);
  digitalWrite(IN3, HIGH);
 
  for (int i = 0; i < 255; i++) {
    analogWrite(EnA, i);
    analogWrite(EnB, i);
    delay(5);
  }
  for (int i = 255; i > 0; i--) {
    analogWrite(EnA, i);
    analogWrite(EnB, i);
    delay(5);
  }
  digitalWrite(IN1, LOW);
  digitalWrite(IN3, LOW);
}
  1. Use female-to-male jumper wires to connect the following pins between Arduino and the L298N motor driver:
  • EnA = 5
  • EnB = 6
  • IN1 = 7
  • IN2 = 8
  • IN3 = 9
  • IN4 = 10.
L298n Jumper Wires Connected

Note: You might have to remove the jumper pins that connect the EnA and EnB pins to the 5V source.

  1. Connect your motors. The first motor should connect to OUT1 and OUT2 while the second motor to OUT3 and OUT4.
L298n Dc Motors Connected
  1. To power the module, connect the cathode side to +12V and the anode to GND. You can power the Arduino separately by connecting it to a different power source.
L298n Power Supply Screw Terminal
Left to right: +12V, GND, and +5V pins.

As an alternative, you can also power the Arduino from the +5V pin from the L298N DC motor driver. But do note that this can drain your battery faster.

Frequently Asked Questions

What does it mean when my L298N motor driver module beeps?

Your L298N motor driver module SHOULD NOT beep. If it does, then it’s probably the motors. Your motors might not be having enough electricity to spin, so much that it just vibrates forward and backward instead. If this happens fast enough, it could sound like a long beep to your ears.

Why is my Arduino restarting when I plug in the power to run DC motors?

If you are powering your Arduino through a DC motor driver shield or module, then your Arduino might not be receiving enough electricity to keep running. You can avoid this by powering your Arduino from a separate source that provides a constant stream of 5V and 500mA.

Can I run Arduino DC motors from a USB port?

Absolutely not. Your USB port has barely enough power to run the Arduino board itself. It won’t have enough current to drive a DC motor.

All images by Terenz Jomar Dela Cruz.

Subscribe to our newsletter!

Get the best of IoT Tech Trends delivered right to your inbox!

Terenz Jomar Dela Cruz

Terenz is a hobbyist roboticist trying to make the most awesome robot the world has ever seen! He would have done that already if he wasn't so busy burning through LEDs.