Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Driving stepper motor

Status
Not open for further replies.

quium

Newbie level 6
Joined
Jun 18, 2006
Messages
14
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,402
Hi
I am having a bipolar 12V 0.6 AMPS 1.8degree stepper motor.I am having problem in finding the driver circuit. And secondly If i have to control it using the signals from the PIC how am I going to do it?????/
Any circuit diagram or any related information will be really helpful
Kind Regards
Quium
 

Try this link for Bipolar stepper. The PICStep looks good.

**broken link removed**
 

use L298 or L297+L298 combination

you can use L293D also.See how i had done for AVR, use the same logic and hardware for your PIC
**broken link removed**

Bibin John
www.bibinjohn.tk
 

cause stepper need high current U can use uln 2001 .uln 2001 have darlington transistor can give current from electric current to stepper.

i have already make this...

and cause i use avr atmega...source code is

void main(void)
{
DDRB =0xFF;
PORTB =0xFF;


while(1
{
while (1)
{
// Place your code here
PORTB=0x01;
delay_ms(5);
PORTB=0x02;
delay_ms(5);
PORTB=0x04;
delay_ms(5);
PORTB=0x08;
delay_ms(5);
};
}

};

}
}
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top