- This topic has 2 replies, 3 voices, and was last updated 12 years, 9 months ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.
|
Microcontroller › 8051 › stepper motor using 8051
i want to rotate the motor with intensity of light using 8051.plz help me out.
also i was going through the project control of stepper motor using 8051 but i could not understand how to programe the 8051 micro controller using c language.please help me out about this program also.
Connect any kind of ambient light sensor to the ADC of the microcontroller. Drive the motor using PWM method. All you have to do is to vary the low time of the pulse with the ADC value.
if you want to control the speed of motor then follow the logic
use a LDR(light dependent resistor)
commet one end to Vcc and other end to a 10K resistor. other end of resistor to ground.
take out put from LDR and resistor interface
give it to an ADC
to drive the stepper motor use ULN2003 IC
read adc
motor port =0x01;
delay(adc value);
motor potr=0x02;
delay(adc value);
motor port=0x04;
delay(adc value);
motor port=0x08;
delay(adc value);