Connection of PM42M-048 stepper motor.

Status
Not open for further replies.

ikelectro

Member
Can any one tell me how to connect a this stepper motor for uni direction. And what actually means by 2-2 phase motor?? I never worked before with motor...
 
You need to connect each winding to a full bridge.
At a guess I'd say 2-2 phase means 2 phases each with 2 wires.
 
I used L293D to drive the stepper motor. But after one or two minutes the ic got burned!


and here is my testing code to run the stepper motor with AT89C52
Code:
            ORG 0H
ASGN:        NOP
            MOV P1,#255
            NOP
MAIN:        MOV P1,#00000110B
            LCALL DLY
            MOV P1,#00000101B
            LCALL DLY
            MOV P1,#00001001B
            LCALL DLY
            MOV P1,#00001010B
            LCALL DLY
            AJMP MAIN
dly:
mov r0, #255
dly1:
mov r1, #40
dly2:
djnz r1, dly2
djnz r0, dly1
ret
 

Attachments

  • l293d.jpg
    246.8 KB · Views: 394
Last edited:
Looks as though it should work, maybe you need a l298 which can handle more current.
Depending on the motor you might need to use current limit, both l293 and l298 support this, steppers particularly at low speed can saturate and draw excess current.
 
Now I have to buy some driver, I think! May be some heat sink can handle them better... But unable to think how to implement a heat sink in the DIP PTH package?
 
Status
Not open for further replies.
Cookies are required to use this site. You must accept them to continue using the site. Learn more…