logo

Select Sidearea

Populate the sidearea with useful widgets. Itโ€™s simple to add images, categories, latest post, social media icon links, tag clouds, and more.
[email protected]
+1234567890
 

Tutorial Microcontroller MCS-51 ATMEL ISP

Tutorial Microcontroller MCS-51 ATMEL ISP

image

Microcontroller Kits
Programmer and Target 89s51
image

Simple Mikrokontroller 89s51 Trainer
image

Standart
Mikrokontroller 89s51 Trainer
image

Super Mikrokontroller Trainer 89s51
image

All Item Include

Programmer
Via USB

image

ย 

ย 

BACKNEXT

A Microcontroller Based Motor Speed Control
By – Lawrence

ย 

Motor speed control is nothing new, and I won’t spend much time on it. In the basic Pulse Width Modulation (PWM) method, a switch is turned on and off to modulate the current to the motor. The ratio of “on” time to “off” time is what determines the speed of the motor. As an example, if the switch is on for 1 ms and off for 9ms, the ratio is 1 out of 10, or 10%. Another way to express this is having a duty cycle of 10%. There are many IC chips available that will do this. And if you do a search on the internet, you are bound to find some discrete circuits that will work as well.

image

In addition to the basic PWM, you can put a switch across the motor to function as a brake (Fig. b). After the power is turned off, S2 is closed, and the motor quickly stops.

image

But these two methods only allow the motor to go in one direction, as it did with the R/C speed controller that I built before. If you want to run a motor both forward and reverse, you need to set up a circuit that allows you to reverse the polarity of the motor (Fig. c). This is called an H bridge.

As you can see, if you close switches S3 and S2, the motor will spin in one direction, and if you modulate one of these switches, you can control its speed. If you close switches S4 and S1, the motor will spin in the other direction, and you can control the speed by modulating one of these switches. Also note that in this configuration, you can close switches S1 and S2 to create a brake as we did in the circuit above.

Think Before You Chop
I’ve said it before, and I’ll say it again. The success of any project is directly proportional to the amount of planning done before the project is started. So let’s determine what I want to do. As mentioned above, I want to be able to input a value to the controller and have that used as the duty cycle of the motor. I’ll also need a direction bit to tell the motor which way I want it to go, and a brake enable bit in case I don’t want to brake every time. So far, this is easy to implement with dip switches, and input data from a computer or thumbwheel switches. I could extend this scheme to work with a variable voltage control by putting an ADC between the voltage and the speed inputs. I would also like to have the option of “left/right” mode. I could then use a pot to control the speed and direction of the motor — all the way to the left (0 volts) would make the motor go full speed in the CCW direction. Turning the pot to the right would slow the motor down and would stop it when the pot is somewhere in the middle. Turn the pot more to the right and the motor will start slowly in the CW direction, and would continue to increase speed until the pot is all the way to the right (max voltage).

While I’m at it, it would be nice to include an interface from an R/C receiver, but that’s the subject of next quarter’s issue.

To do all this, I’ll need four outputs to control the motor FETs, one bit for the brake enable, one for the direction, and two bits to determine the mode of the controller (one direction, left/right or R/C). That leaves me 7 bits for the input data if I decide to use an 89C2051. With 7 bits I could input the HEX equivalent of 0-100 to get the direct duty cycle required.

I chose HEX rather than BCD because I don’t have enough I/O available with this processor. I figured that for the most part, the inputs would be coming from the parallel port of a computer or another processor, so all my output data could be in decimal form anyway. As an example, I might program my PC to output a 65d (decimal) for 65% duty. Since computers think in binary, it will convert that and output a 41h, or 1000001b. If you wish to use BCD, you will need to go to a u-controller with more inputs.

Comments, questions and discussion about this topic

BACKNEXT

ย 

ย 

ย imageimageimageimage