|
Intro to Physical Computing Syllabus Research & Learning Other Class pages
ITP Help Pages |
Using a transistor to control high current loads with an ArduinoIn this tutorial, you'll learn how to control a high-current DC load such as a DC motor or an incandescent light from a microcontroller. Table of Contents (hide) 1. PartsYou will need the following parts for this tutorial.
- or -
2. Add a potentiometerConnect a potentiometer to analog in pin 0 of the module:
3. Connect a transistor to the microcontrollerThe transistor allows you to control a circuit that's carrying higher current and voltage from the microcontroller. It acts as an electronic switch. The one you're using for this lab is an NPN-type transistor called a p2n2222a. The datasheet for it can be found here. It's designed for switching high-current loads. It has three connections, the base, the collector, and the emitter. The base is connected to the microcontroller's output. The high-current load (i.e. the motor or light) is attached to its power source, and then to the collector of the transistor. The emitter of the transistor is connected to ground. If you're looking at the flat side of the transistor, the pins from the left are the collector, base, emitter. ![]() Note: you can also use an IRF510 or IRF520 MOSFET transistor for this. A TIP120, and performs similarly. MOSFETS can handle more amperage and voltage, but are more sensitive to static electricity damage.
Connect the base to an output pin of the microcontroller, and the emitter to ground like so:
3.1 Connect a motor and power supplyAttach a DC motor to the collector of the transistor. Many motors will require more amperage or voltage than the microcontroller can supply. If you're using the motor in your kit, it will run off USB power just fine and you can wire like the image below. If your motor requires more amperage or voltage, you'll need to wire up a separate power supply. If your motor runs on around 9V, you could use a 9V battery. A 5V motor might run on 4 AA batteries. a 12V battery may need a 12V wall wart, or a 12V battery. The ground of the motor power supply should connect to the ground of the microcontroller, on the breadboard.
FInally, add diode in parallel with the collector and emitter of the transistor, pointing away from ground. The diode to protects the transistor from back voltage generated when the motor shuts off, or if the motor is turned in the reverse direction. ![]() Note: the schematic symbol for the transistor here is actually for an IRF510 MOSFET. But it can be replaced with a TIP120
Be sure to add the diode to your circuit correctly. The silver band on the diode denotes the cathode which is the tip of the arrow in the schematic, like so: This circuit assumes you're using a 5V motor. If your motor requires a different voltage, make sure to use a power supply that's appropriate. Connect the ground of the motor's supply to the ground of your microcontroller circuit, though, or the circuit won't work properly. 3.2 Connect a lamp insteadYou could also attach a lamp using a transistor. Like the motor, the lamp circuit below assumes a 12V lamp. Change your power supply accordingly if you're using a different lamp. In the lamp circuit, the protection diode is not needed, since there's no way for the polarity to get reversed in this circuit:
4. Program the microcontrollerWrite a quick program to test the circuit. Your program should make the transistor pin an output in the setup method. Then in the loop, it should turn the motor on and off every second, just like the blink sketch does.
const int transistorPin = 9; // connected to the base of the transistor void setup() { // set the transistor pin as output: pinMode(transistorPin, OUTPUT); } void loop() { digitalWrite(transistorPin, HIGH); delay(1000); digitalWrite(transistorPin, LOW); delay(1000); } Now that you see it working, try changing the speed of the motor or the intensity of the lamp using the potentiometer. To do that, read the voltage of the potentiometer using
const int transistorPin = 9; // connected to the base of the transistor void setup() { // set the transistor pin as output: pinMode(transistorPin, OUTPUT); } void loop() { // read the potentiometer: int sensorValue = analogRead(A0); // map the sensor value to a range from 0 - 255: int outputValue = map(sensorValue, 0, 1023, 0, 255); // use that to control the transistor: analogWrite(transistorPin, outputValue); } 5. NotesFor the motor users: |