Simple 2-way Motor Control for the Arduino

by computergeek in Circuits > Arduino

401253 Views, 132 Favorites, 0 Comments

Simple 2-way Motor Control for the Arduino

100_4205.JPG
MotorSchematic.png

WARNING: This is not a safe way to control a motor. Each I/O pin can only handle 40 mA of current. I would recommend using a H-Bridge or something along those lines.

When I say simple, I don't mean use a speed control. But control the motor directly without any external circuitry. Here's how:


How this came about:

I recently was working on an instructable about charlieplexing with an arduino. And I was wondering if the same principle would work with motors to some extent. So I came up with the idea that if you used a motor instead of an led you could have 2-way control of it & if you used 2 PWM (Pulse Width Modulation) ports you could have 2-way variable speed control for a motor with no external hardware!! So I decided to post my findings. Have fun! If you have any questions Please ask them.

I am not responsible for any thing bad that happens to you or to your arduino!

The Stuff You Need:

100_4208.JPG
Parts:
- Arduino
- Small DC motor
- Wire for motor

Tools:
- Computer with Arduino IDE installed
- A-B USB cord

Connecting the Motor

100_4207.JPG
100_4205.JPG
100_4203.JPG
MotorSchematic.png
Connect your DC motor to your arduino.

- Connect one wire from the motor to pin 5 on you arduino
- Connect the other wire from your motor to pin 6 on your arduino

The hardware setup for this is pretty simple.

Coding the Arduino

Picture 12.png
Here's some basic steps to program your arduino.

1) Download the source code from below
2) Open the file in the Arduino IDE
3) Press the "Upload to I/O Board" button
4) Once the program is uploaded it will start running


I tried to add a good amount of comments to the code, but if you have any questions, please ask them.

How This Works & More Ideas

100_4205.JPG
2way.png
How This Works:
When you make one pin HIGH & another LOW, the pin that is HIGH has a positive voltage & the pin that is LOW works like a ground(-).

Note: The rotation direction maybe different than below.

Pin 5: Pin 6: Rotates: HIGH LOW CCW LOW HIGH CW PWM: 127 LOW CCW 1/2 Speed
CCW = Counter Clockwise
CW = Clockwise

Ideas:
Add a second motor. Sorry I don't have any code for this, But there is a schematic posted below.