How to control DC motor forward and reverse with one potentiometer

I'm trying to wire up my own joystick controlled, analog, pan/tilt. Keeping the circuit analog only, how would you wire up a 12v battery, a 5k or 10k pot, and a 12v dc motor so that when the pot was in the center of it's travel the motor is still, and as you move the pot either direction from that center position, the motor moves a different direction. In the big picture there will be a 2-axis joystick controlling two DC motors. This is an Open-loop system. Because of that fact, servos aren't necessary even though they could be used. There should be a way to construct a simple, analog circuit that consists of not much more than a battery, pot, and dc motor but still allows for proportional forward and reverse movement of that motor.

Basically you can't with a simple motor you need a servo. With a motor you have no real control of position.

For pan and tilt you need two servos.

Mark

All of the current products I sell use servos. Trust me. I know aaaaalll about servos and their benefits but for this specific application I purposely want to use power window motors. I don't need it to hold a specific position. I just want an open-loop, analog pan/tilt wiring diagram.

Is there arduino in the picture? What kind of driver do you have?
Some examples Design-8, 9, 10, 12, 15 :
http://www.talkingelectronics.com/projects/H-Bridge/H-Bridge-1.html

Seems like a rotary encoder 'pot' would make more sense. Read the direction and rate of turning and adjust the motor voltage in a manner that correlates to the encoder signal.

Why can't you just use a a 12v battery, a pot, and a 12v motor? This is an Open-loop system. Because of that fact, servos aren't necessary even though they could be used. There should be a way to construct a simple, analog circuit that consists of not much more than a battery, pot, and dc motor but still allows for proportional forward and reverse movement of that motor.

Simple, use IF/ Else statements. I assume you don't want the motors to act like servos in which case they will rotate continuously. All you have to do is find the POTs limits as well as its center. Errr, if you find it's limits then subtract the highest from the lowest and divide by 2, to get the center. Then you may want to have an offset. Once you find the center, give it some slack.

// say the lowest is 350 and the highest is 650, the difference is 300
// so divide 300 by 2, you get 150.
// then 350 + 150= 500 (center) 
//offset, you decide how much dead zone you want, for the center. 
// +-10 should be enough.
If( POT1< 490) { // offset(10) - center(500)
...go forward...
}
Else if (POT1 > 510) {
... Go backwards...
}
Else { 
... Full stop...
}

Simple.

David82:
Why can't you just use a a 12v battery, a pot, and a 12v motor? This is an Open-loop system. Because of that fact, servos aren't necessary even though they could be used. There should be a way to construct a simple, analog circuit that consists of not much more than a battery, pot, and dc motor but still allows for proportional forward and reverse movement of that motor.

You could do this - but it's going to take a few more parts. I'm envisioning something using the parts you mentioned, plus a window comparator or two (to sense voltage above or below a mid-point value, taken from the pot as a voltage divider), with those outputs feeding into a square-wave VCO or something (for PWM), and from there into one side or the other of an h-bridge.

In short, you would simply be redesigning what is inside a servo - with the feedback potentiometer being the "controller", the motor of the servo running open loop. In fact, I would look into the analog circuits used by early servos (talking stuff from the 1960s-1980s or so) as an idea (or you could just use one of the various chips used in servos today; they still require more than a few extra parts - a couple of transistors for a half-bridge, and a handful of diodes, caps, and resistors - maybe an inductor or two).

It'd be easier to just emulate it all with an ATTiny (but you'd still need an h-bridge)...

Why is everyone assuming he wants to control a servo, he said he wants to control a DC motor.
Where did servo come from?

There should be a way to construct a simple, analog circuit that consists of not much more than a battery, pot, and dc motor but still allows for proportional forward and reverse movement of that motor.

Well, just skip all that other stuff and get two switches like below (one for each motor).

Why is everyone assuming he wants to control a servo, he said he wants to control a DC motor.
Where did servo come from?

Because it is the closest analogy to the requirement stated?
Clearly a pot, motor and battery alone aren't going to be sufficient because they don't allow for current reversal to allow the motor to change direction, unless, perhaps you have a battery with centre tap. You're going to need some active components in there.

I know he needs an H-bridge, but all he asked was can he control a DC motor with a POT.
YES, he can. He will need a H- bridge, to supply the proper current to the motor, and if he wires it up correctly, the code I wrote will work.

the code I wrote will work.

Maybe, but it isn't an analogue solution, as requested in the original post (though what it is doing in this forum beats me XD )

For a motor (with h-bridge/motor shield of course!). You read the pot with ADC and then values above (say ) 700 are forward, values below 300 are backward and values in between are stop. But you still need one pot per motor.

Mark

In the big picture there will be a 2-axis joystick controlling two DC motors.

this is simple too. It is only a differential setup.

Pseudocode.
if ( Y > 0 && XL > 0 || XR < 0) //forward with left or right turning
{
M1F = Y - XL;         M2F = Y - XR;              //XL and XR can be set by an IF statement, if analogRead(A0) > 0, then put it in XL
M1R = 0 or LOW     M2R = 0 or LOW           // else put it in XR
}
else if ( Y < 0 && XL > 0 || XR < 0) // reverse with left or right turning
{
M1R = Y - XL;         M2R = Y - XR;        
M1F = 0 or LOW     M2F = 0 or LOW
}

More code for 360 turning...

else 
{...full stop... }

holmes4:
For a motor (with h-bridge/motor shield of course!). You read the pot with ADC and then values above (say ) 700 are forward, values below 300 are backward and values in between are stop. But you still need one pot per motor.

Mark

That looks to be correct. Do you have a link to a recommended h-bridge/motor shield? Remember, I'm simply using a analog, 2-axis joystick (with 2 pots total) to control a pair open-loop motors for use in a pan tilt system. For example, if the joystick is half-way tilted to the right, the pan/tilt system will go half-speed in that direction. I've done this plenty of times with servos but now the components need to be basic, dc motors.

I've done this plenty of times with servos but now the components need to be basic, dc motors.

Then my solution is the one you want to use.

It gets data from the 2 pots and tells the motors how to move.If you dont like my second way, then just repeat my first way for both motors.

This controls the forward and backwards movement of ONE motor, repeat for second motor.

// say the lowest is 350 and the highest is 650, the difference is 300
// so divide 300 by 2, you get 150.
// then 350 + 150= 500 (center) 
//offset, you decide how much dead zone you want, for the center. 
// +-10 should be enough.
If( POT1< 490) { // offset(10) - center(500)
...go forward...
}
Else if (POT1 > 510) {
... Go backwards...
}
Else { 
... Full stop...
}

Which motor shield depends on how much current the motors would require. Take a look and the Arduino one in the hardware section of the main site as a starter. This runs two motors each with speed and direction (4 digital pins in all).

As for the pots one end to earth one to the 5v and the center wiper to the analog pin.

Mark

This runs two motors each with speed and direction (4 digital pins in all).

You may also want to add another couple of pins for the brakes.

And two for current sensing?

Mark