A quick circuit showing how to control the speed of a DC motor with a potentiometer with your Arduino board. Also shows how to use a TIP120 transistor to allow the Arduino control a larger power supply.
Transistors are 3 pin devices, which via the 3rd pin (Base) allow it to control the current passing through the other 2 pins (Collector and Emitter). So for this tutorial I am using the power from the Arduino Digital PWM pin 9 (+5V) to control the flow of current to a DC motor which uses an additional power supply with a much larger current than the Arduino board can supply or control. Of course like most electrical components each transistor is designed for a specfic operating range or current.
Below you can see TIP120 the pins and how they appear in a schematic:

So thats the transistor. Next up is the rectifier diode, I’m using this inbetween the power supply flowing from the motor. It acts like a one way valve to only allow the current to flow one way, so my circuit should be protected should the motor power supply cause a surge or if the motor draws too much current. The main thing to remember is that Diodes like LED’s have a correct orientation, shown to the left.
The other item is the potentiometer, which is basically a variable resistor. By turning it you control the flow of current by allowing more or less through. Potentiometers, like resistors have a resistance rating in Ohms and a power rating. For this I am using a pot with a 10K ohm rating.
Arduino TIP120 Circuit Components
1K Ohm resistor (Brown, Black, Red, Gold)
10k Potentiometer
TIP120 Transistor
1n4004 1A Diode
6V DC motor
Arduino Deumilanove w/ ATMEGA328
Breadboard / Prototyping board
Jumper/ Connector wires
4x AA battery holder
4x AA batteries
Optional 9V DCpower supply or use the USB power for the Arduino
TIP120 Arduino DC Motor Control Circuit
Pretty simple, but remember that the GND connection must be shared between the Arduino and the additional power supply and I’m using a 1k Ohm resistor between Arduino pin 9 and the Base pin of the transistor.
TIP120 DC Motor Driver Sketch
int potPin = 0; // Analog pin 0 connected to the potentiometer
int transistorPin = 9; // connected from digital pin 9 to the base of the transistor
int potValue = 0; // value returned from the potentiometer
void setup() { // set the transistor pin as an output
pinMode(transistorPin, OUTPUT);
}
void loop() { // read the potentiometer, convert it to between 0 - 255 for the value accepted by the digital pin.
potValue = analogRead(potPin) / 4; // potValue alters the supply from pin 9 which in turn controls the power running through the transistor
analogWrite(9, potValue);
}
I’m going to use the above and the work I’ve done with the Arduino and L293D chip so far to control the speed and direction to the motor with a potentiometer.
This content is published under the Attribution-Noncommercial-Share Alike 3.0 Unported license.
- Control a DC motor with Arduino and L293D chip
- Controlling a Servo with Arduino
- Obstacle avoidance Arduino robot – build your own larryBot
- Arduino – Controlling the Robot Arm
- Arduino – motion triggered camera
- Arduino & Processing – Getting values from SRF05 ultrasound sensor & serial port
- Arduino – IR remote/ intervalometer for Nikon D80 DSLR (that means timelapse photography yarrr!)
- Arduino – Using a Sharp IR Sensor for Distance Calculation
- Arduino + Processing – Make a Radar Screen – Part 3: Visualising the Data from Sharp Infrared Range Finder
- Using Processing to Send Values using the Serial Port to Arduino









Hi, I found this tutorial very helpful for what I wanted ! Thanks !
Glad it helped you out.
Im living in Ireland and am finding it very difficult to get a Tip120. Would it be possible to use a Tip121 instead?
TIP121 should be fine if you look at the datasheets they’re basically identical. I’m using the TIP120 because its emitter pin uses no more than 5 Volts which is what you’re looking for with the Arduino – so you could find any part that has the same properties and it should be OK. You’ll see its collector pin can handle around 60 Volts (I think). If you have any issues I have a few spare TIP120′s