SlideShare a Scribd company logo
1 of 9
Date: 20/11/2013

Al-Azhar University-Gaza
Faculty of Engineering & Information Technology
Mechatronices engineering
Microprocessors & Interfacing
(ITCE 3306)
LAB NO.4
Stepper motor
Prepared By:
Ronza sameer Abu jayyab
No. 20111511
Submitted To:
Eng. Mahmoud I. Hasanain

First semester
2013/2014
 introduction:
we will deal with steeper motor which is,
electromechanical device which converts electrical pulses into discrete
mechanical movements.
Shaft of a steeper motor rotates in discrete step increments when electrical
pulses are applied.
Sequence of the applied pulses is directly related to the direction of motor
shaft's rotation.
Speed of rotation is directly related to the frequency of input pulses applied.

 objective:
after this lab we're being able to answer these questions,
1. what is the stepper motor and from what it consist also who it is work?
2. how we can deal with stepper motor ?
3. How can you connect stepper motor with parallel port to make computer
interfacing?

 background:
 stepper motor:
 types of stepper motor:
There are four main types of stepper motors:

1.
2.
3.
4.

Permanent magnet stepper.
Hybrid synchronous stepper.
Variable reluctance stepper.
Lavet type stepping motor.

 Two-phase stepper motors:
1. Unipolar steeper motor.
2. Bipolar steeper motor.

 Unipolar steeper motor:
A unipolar stepper motor has one winding with center tap per phase. Each
section of windings is switched on for each direction of magnetic field.
Since in this arrangement a magnetic pole can be reversed without
switching the direction of current, the commutation circuit can be made
very simple (e.g., a single transistor) for each winding. Typically, given a
phase, the center tap of each winding is made common: giving three leads
per phase and six leads for a typical two phase motor. Often, these two
phase commons are internally joined, so the motor has only five leads.
A micro controller or stepper motor controller can be used to activate the
drive transistors in the right order, and this ease of operation makes
unipolar motors popular with hobbyists; they are probably the cheapest
way to get precise angular movements.

Fig-1Unipolar stepper motor coils
(For the experimenter, the windings can be identified by touching the
terminal wires together in PM motors. If the terminals of a coil are
connected, the shaft becomes harder to turn. one way to distinguish the
center tap (common wire) from a coil-end wire is by measuring the
resistance. Resistance between common wire and coil-end wire is always
half of what it is between coil-end and coil-end wires. This is because
there is twice the length of coil between the ends and only half from center
(common wire) to the end.) A quick way to determine if the stepper motor
is working is to short circuit every two pairs and try turning the shaft,
whenever a higher than normal resistance is felt, it indicates that the circuit
to the particular winding is closed and that the phase is working.
 Modes of Stepper Motor:
1. Full step.
2. Half step.
 Full step:
1. The center taps of the windings are wired to the positive supply.
2. The two ends of each winding are alternately grounded to reverse
the direction of the field provided by that winding.
3. Full step sequence showing how binary numbers can control the
motor.

Fig-2Full step- stepper motor
 Half step:
1. Same circuity with different winding sequence.
2. Two windings are energized at the same instance.
3. Half step sequence showing how binary numbers can control the
motor.

Fig- 3Half step- stepper motor

Fig -4Full and half clockwise rotation
 advantages of stepper motors:
1.
2.
3.
4.
5.
6.
7.

the rotation angle of the motor is proportional to the input pulse.
Excellent response to starting, stopping, and reversing.
The motors response to digital input pulses provides open-loop control.
It's possible to achieve very low speed synchronous rotation.
A wide range of rotational speeds can be real realized.
Very reliable since there no contact brushes in the motor.
Accuracy of 3-5% of a step and this error is non cumulative from one step to
the next.

 ULN2003A ICs:
An ULN2003A is a high-voltage, high-current Darlington transistor array.
It consists of seven NPN Darlington pairs that feature high-voltage outputs with
common-cathode flyback diodes for switching inductive loads.
It is very similar to the ULN2801A, ULN2802A, ULN2803A,[3] ULN2804A, and
ULN2805A, only differing in logic input levels (TTL, CMOS, PMOS) and number of
inputs (8).

The drivers can be paralleled for higher current capability, even stacking
one chip on top of another, both electrically and physically has been done.
Features
500 mA rated collector current (single output)
50 V output
Includes output flyback diodes
Inputs compatible with various types of logic
 Application:
Typical usage of the ULN2003A is to:
1. drive relays.
2. lamp and LED displays.
3. stepper motors.

Fig -5ULN2003A ICs

 Experiment:
 Control circuit:

Fig-6Stepper motor circuit

Fig-7Stepper motor circuit
 Experiment no.1:
Control code:

Fig-8Visual basic form to control stepper motor
Dim i As Integer
Private Sub Command1_Click()
Timer1.Enabled = True
Timer2.Enabled = False
Timer1.Interval = 5
Timer2.Interval = 5
End Sub
Private Sub Command2_Click()
Timer1.Enabled = False
Timer2.Enabled = True
Timer1.Interval = 5
Timer2.Interval = 5
End Sub
Private Sub Form_Load()
ntport1.address = 888
End Sub
Private Sub Timer1_Timer()
ntport1.Value = 2 ^ i
i=i+1
If i > 7 Then i = 0
End Sub
Private Sub Timer2_Timer()
ntport1.Value = 2 ^ i
i=i-1
If i < 0 Then i = 7
End Sub

Comment:
Stepper motor move clockwise fast by timer 1 and counter clockwise fast by
timer 2.
When decrease value of interval stepper motor will move fast.

 Experiment no.2:
 Control code:
Dim i As Integer
Private Sub Command1_Click()
Timer1.Enabled = True
Timer2.Enabled = False
Timer1.Interval = 50
Timer2.Interval = 50
End Sub
Private Sub Command2_Click()
Timer1.Enabled = False
Timer2.Enabled = True
Timer1.Interval = 5
Timer2.Interval = 5
End Sub
Private Sub Form_Load()
ntport1.address = 888
End Sub
Private Sub Timer1_Timer()
ntport1.Value = 2 ^ i
i=i+1
If i > 7 Then i = 0
End Sub
Private Sub Timer2_Timer()
ntport1.Value = 2 ^ i
i=i-1
If i < 0 Then i = 7
End Sub

 Comment:
Stepper motor move clockwise slow by timer 1 and counter clockwise slow by
timer 2.
When increase value of interval stepper motor will move slow.

Fig- -
 Conclusion:
a. All types and characteristics of a stepper motor are studied throughout this
report.
b. These are very popular in our day to day life due to a lot of advantages and also
in digital control circuits, such as robotics because they are ideally suited for
receiving digital pulses for ste.

 References:

More Related Content

What's hot

Seminar on stepper motor
Seminar on stepper motorSeminar on stepper motor
Seminar on stepper motorMonty Sharma
 
Interfacing stepper motor
Interfacing stepper motorInterfacing stepper motor
Interfacing stepper motorPRADEEP
 
slide on stepper motor
slide on stepper motorslide on stepper motor
slide on stepper motorSamikshya Kar
 
Stepper motor control
Stepper motor controlStepper motor control
Stepper motor controlJatin Arora
 
Speed control of Induction motors
Speed control of Induction motorsSpeed control of Induction motors
Speed control of Induction motorsRaghav S
 
Setpper Motor
 Setpper Motor Setpper Motor
Setpper Motorjams006
 
Stepper Motor Types, Advantages And Applications
 Stepper Motor Types, Advantages And Applications Stepper Motor Types, Advantages And Applications
Stepper Motor Types, Advantages And Applicationselprocus
 
A PROJECT REPORT SIM & SPEED CONTROL OF INDUCTIO DRIVE
A PROJECT REPORT SIM & SPEED CONTROL OF INDUCTIO DRIVEA PROJECT REPORT SIM & SPEED CONTROL OF INDUCTIO DRIVE
A PROJECT REPORT SIM & SPEED CONTROL OF INDUCTIO DRIVEPawan Kumar
 
Micro stepping mode for stepper motor
Micro stepping mode for stepper motorMicro stepping mode for stepper motor
Micro stepping mode for stepper motorSwathi Venugopal
 

What's hot (20)

Stepper motor
Stepper motorStepper motor
Stepper motor
 
Stepper motor
Stepper motorStepper motor
Stepper motor
 
Seminar on stepper motor
Seminar on stepper motorSeminar on stepper motor
Seminar on stepper motor
 
Interfacing stepper motor
Interfacing stepper motorInterfacing stepper motor
Interfacing stepper motor
 
slide on stepper motor
slide on stepper motorslide on stepper motor
slide on stepper motor
 
stepper motor
stepper motorstepper motor
stepper motor
 
Stepper motor control
Stepper motor controlStepper motor control
Stepper motor control
 
Speed control of Induction motors
Speed control of Induction motorsSpeed control of Induction motors
Speed control of Induction motors
 
Setpper Motor
 Setpper Motor Setpper Motor
Setpper Motor
 
Ac servomotor
Ac servomotorAc servomotor
Ac servomotor
 
Stepper Motor Types, Advantages And Applications
 Stepper Motor Types, Advantages And Applications Stepper Motor Types, Advantages And Applications
Stepper Motor Types, Advantages And Applications
 
A PROJECT REPORT SIM & SPEED CONTROL OF INDUCTIO DRIVE
A PROJECT REPORT SIM & SPEED CONTROL OF INDUCTIO DRIVEA PROJECT REPORT SIM & SPEED CONTROL OF INDUCTIO DRIVE
A PROJECT REPORT SIM & SPEED CONTROL OF INDUCTIO DRIVE
 
Micro stepping mode for stepper motor
Micro stepping mode for stepper motorMicro stepping mode for stepper motor
Micro stepping mode for stepper motor
 
Stepper motor
Stepper motorStepper motor
Stepper motor
 
Dc servo motor
Dc servo motorDc servo motor
Dc servo motor
 
Stepper motor
Stepper motorStepper motor
Stepper motor
 
Stepper motor
Stepper motorStepper motor
Stepper motor
 
Stepper motor
Stepper motorStepper motor
Stepper motor
 
STEPPER MOTOR
STEPPER MOTORSTEPPER MOTOR
STEPPER MOTOR
 
STEPPER MOTOR
STEPPER MOTORSTEPPER MOTOR
STEPPER MOTOR
 

Similar to Report no.4(microprocessor)

Report no.6..(bipolar motor n DC motor)
Report no.6..(bipolar motor n DC motor)Report no.6..(bipolar motor n DC motor)
Report no.6..(bipolar motor n DC motor)Ronza Sameer
 
Speed control of Three phase Induction motor using AC voltage regulator
Speed control of Three phase Induction motor using AC voltage regulatorSpeed control of Three phase Induction motor using AC voltage regulator
Speed control of Three phase Induction motor using AC voltage regulatorShivagee Raj
 
Vector Speed Control of Induction Motor
Vector Speed Control of Induction MotorVector Speed Control of Induction Motor
Vector Speed Control of Induction MotorRanjith Samala
 
Special motors
Special motorsSpecial motors
Special motorsmadhu1729
 
Simulation and Development of Stepper Motor for Badminton Playing Robot
Simulation and Development of Stepper Motor for Badminton Playing RobotSimulation and Development of Stepper Motor for Badminton Playing Robot
Simulation and Development of Stepper Motor for Badminton Playing RobotIJMER
 
J0502 01 5762
J0502 01 5762J0502 01 5762
J0502 01 5762IJMER
 
STEPPER MOTOR .pptx
STEPPER MOTOR .pptxSTEPPER MOTOR .pptx
STEPPER MOTOR .pptxanonymous
 
Improved Rotor Speed Brushless DC Motor Using Fuzzy Controller
Improved Rotor Speed Brushless DC Motor Using Fuzzy ControllerImproved Rotor Speed Brushless DC Motor Using Fuzzy Controller
Improved Rotor Speed Brushless DC Motor Using Fuzzy Controllerijeei-iaes
 
Direct Torque Control of a Bldc Motor Based on Computing Technique
Direct Torque Control of a Bldc Motor Based on Computing TechniqueDirect Torque Control of a Bldc Motor Based on Computing Technique
Direct Torque Control of a Bldc Motor Based on Computing TechniqueIOSR Journals
 
More About Stepper Motors
More About Stepper MotorsMore About Stepper Motors
More About Stepper Motorsiratepaddle343
 
Performance Evaluation of Three Phase Induction Motor using MOSFET & IGBT Bas...
Performance Evaluation of Three Phase Induction Motor using MOSFET & IGBT Bas...Performance Evaluation of Three Phase Induction Motor using MOSFET & IGBT Bas...
Performance Evaluation of Three Phase Induction Motor using MOSFET & IGBT Bas...IRJET Journal
 
ENERGY EFFICIENT VARIABLE SPEED HIGH POWER FACTOR THREE PHASE INDUCTION MOTOR...
ENERGY EFFICIENT VARIABLE SPEED HIGH POWER FACTOR THREE PHASE INDUCTION MOTOR...ENERGY EFFICIENT VARIABLE SPEED HIGH POWER FACTOR THREE PHASE INDUCTION MOTOR...
ENERGY EFFICIENT VARIABLE SPEED HIGH POWER FACTOR THREE PHASE INDUCTION MOTOR...Journal For Research
 
Speed Control of PMBLDC Motor using LPC 2148 – A Practical Approach
Speed Control of PMBLDC Motor using  LPC 2148 – A Practical Approach  Speed Control of PMBLDC Motor using  LPC 2148 – A Practical Approach
Speed Control of PMBLDC Motor using LPC 2148 – A Practical Approach IJEEE
 
Iaetsd energy management of induction motor
Iaetsd energy management of induction motorIaetsd energy management of induction motor
Iaetsd energy management of induction motorIaetsd Iaetsd
 

Similar to Report no.4(microprocessor) (20)

Report no.6..(bipolar motor n DC motor)
Report no.6..(bipolar motor n DC motor)Report no.6..(bipolar motor n DC motor)
Report no.6..(bipolar motor n DC motor)
 
Project paper
Project paperProject paper
Project paper
 
Speed control of Three phase Induction motor using AC voltage regulator
Speed control of Three phase Induction motor using AC voltage regulatorSpeed control of Three phase Induction motor using AC voltage regulator
Speed control of Three phase Induction motor using AC voltage regulator
 
Vector Speed Control of Induction Motor
Vector Speed Control of Induction MotorVector Speed Control of Induction Motor
Vector Speed Control of Induction Motor
 
Special motors
Special motorsSpecial motors
Special motors
 
Simulation and Development of Stepper Motor for Badminton Playing Robot
Simulation and Development of Stepper Motor for Badminton Playing RobotSimulation and Development of Stepper Motor for Badminton Playing Robot
Simulation and Development of Stepper Motor for Badminton Playing Robot
 
J0502 01 5762
J0502 01 5762J0502 01 5762
J0502 01 5762
 
Stepper Motor
Stepper MotorStepper Motor
Stepper Motor
 
STEPPER MOTOR .pptx
STEPPER MOTOR .pptxSTEPPER MOTOR .pptx
STEPPER MOTOR .pptx
 
Stepper motors
Stepper motorsStepper motors
Stepper motors
 
More About Stepper Motors
More About Stepper MotorsMore About Stepper Motors
More About Stepper Motors
 
More About Stepper Motors
More About Stepper MotorsMore About Stepper Motors
More About Stepper Motors
 
Improved Rotor Speed Brushless DC Motor Using Fuzzy Controller
Improved Rotor Speed Brushless DC Motor Using Fuzzy ControllerImproved Rotor Speed Brushless DC Motor Using Fuzzy Controller
Improved Rotor Speed Brushless DC Motor Using Fuzzy Controller
 
Direct Torque Control of a Bldc Motor Based on Computing Technique
Direct Torque Control of a Bldc Motor Based on Computing TechniqueDirect Torque Control of a Bldc Motor Based on Computing Technique
Direct Torque Control of a Bldc Motor Based on Computing Technique
 
More About Stepper Motors
More About Stepper MotorsMore About Stepper Motors
More About Stepper Motors
 
Performance Evaluation of Three Phase Induction Motor using MOSFET & IGBT Bas...
Performance Evaluation of Three Phase Induction Motor using MOSFET & IGBT Bas...Performance Evaluation of Three Phase Induction Motor using MOSFET & IGBT Bas...
Performance Evaluation of Three Phase Induction Motor using MOSFET & IGBT Bas...
 
ENERGY EFFICIENT VARIABLE SPEED HIGH POWER FACTOR THREE PHASE INDUCTION MOTOR...
ENERGY EFFICIENT VARIABLE SPEED HIGH POWER FACTOR THREE PHASE INDUCTION MOTOR...ENERGY EFFICIENT VARIABLE SPEED HIGH POWER FACTOR THREE PHASE INDUCTION MOTOR...
ENERGY EFFICIENT VARIABLE SPEED HIGH POWER FACTOR THREE PHASE INDUCTION MOTOR...
 
Speed Control of PMBLDC Motor using LPC 2148 – A Practical Approach
Speed Control of PMBLDC Motor using  LPC 2148 – A Practical Approach  Speed Control of PMBLDC Motor using  LPC 2148 – A Practical Approach
Speed Control of PMBLDC Motor using LPC 2148 – A Practical Approach
 
Iaetsd energy management of induction motor
Iaetsd energy management of induction motorIaetsd energy management of induction motor
Iaetsd energy management of induction motor
 
Ct36570573
Ct36570573Ct36570573
Ct36570573
 

Recently uploaded

Contemporary Economic Issues Facing the Filipino Entrepreneur (1).pptx
Contemporary Economic Issues Facing the Filipino Entrepreneur (1).pptxContemporary Economic Issues Facing the Filipino Entrepreneur (1).pptx
Contemporary Economic Issues Facing the Filipino Entrepreneur (1).pptxMarkAnthonyAurellano
 
8447779800, Low rate Call girls in Rohini Delhi NCR
8447779800, Low rate Call girls in Rohini Delhi NCR8447779800, Low rate Call girls in Rohini Delhi NCR
8447779800, Low rate Call girls in Rohini Delhi NCRashishs7044
 
IoT Insurance Observatory: summary 2024
IoT Insurance Observatory:  summary 2024IoT Insurance Observatory:  summary 2024
IoT Insurance Observatory: summary 2024Matteo Carbone
 
Innovation Conference 5th March 2024.pdf
Innovation Conference 5th March 2024.pdfInnovation Conference 5th March 2024.pdf
Innovation Conference 5th March 2024.pdfrichard876048
 
Youth Involvement in an Innovative Coconut Value Chain by Mwalimu Menza
Youth Involvement in an Innovative Coconut Value Chain by Mwalimu MenzaYouth Involvement in an Innovative Coconut Value Chain by Mwalimu Menza
Youth Involvement in an Innovative Coconut Value Chain by Mwalimu Menzaictsugar
 
8447779800, Low rate Call girls in Uttam Nagar Delhi NCR
8447779800, Low rate Call girls in Uttam Nagar Delhi NCR8447779800, Low rate Call girls in Uttam Nagar Delhi NCR
8447779800, Low rate Call girls in Uttam Nagar Delhi NCRashishs7044
 
Traction part 2 - EOS Model JAX Bridges.
Traction part 2 - EOS Model JAX Bridges.Traction part 2 - EOS Model JAX Bridges.
Traction part 2 - EOS Model JAX Bridges.Anamaria Contreras
 
Investment in The Coconut Industry by Nancy Cheruiyot
Investment in The Coconut Industry by Nancy CheruiyotInvestment in The Coconut Industry by Nancy Cheruiyot
Investment in The Coconut Industry by Nancy Cheruiyotictsugar
 
Future Of Sample Report 2024 | Redacted Version
Future Of Sample Report 2024 | Redacted VersionFuture Of Sample Report 2024 | Redacted Version
Future Of Sample Report 2024 | Redacted VersionMintel Group
 
Annual General Meeting Presentation Slides
Annual General Meeting Presentation SlidesAnnual General Meeting Presentation Slides
Annual General Meeting Presentation SlidesKeppelCorporation
 
Case study on tata clothing brand zudio in detail
Case study on tata clothing brand zudio in detailCase study on tata clothing brand zudio in detail
Case study on tata clothing brand zudio in detailAriel592675
 
PSCC - Capability Statement Presentation
PSCC - Capability Statement PresentationPSCC - Capability Statement Presentation
PSCC - Capability Statement PresentationAnamaria Contreras
 
India Consumer 2024 Redacted Sample Report
India Consumer 2024 Redacted Sample ReportIndia Consumer 2024 Redacted Sample Report
India Consumer 2024 Redacted Sample ReportMintel Group
 
Flow Your Strategy at Flight Levels Day 2024
Flow Your Strategy at Flight Levels Day 2024Flow Your Strategy at Flight Levels Day 2024
Flow Your Strategy at Flight Levels Day 2024Kirill Klimov
 
APRIL2024_UKRAINE_xml_0000000000000 .pdf
APRIL2024_UKRAINE_xml_0000000000000 .pdfAPRIL2024_UKRAINE_xml_0000000000000 .pdf
APRIL2024_UKRAINE_xml_0000000000000 .pdfRbc Rbcua
 
Marketplace and Quality Assurance Presentation - Vincent Chirchir
Marketplace and Quality Assurance Presentation - Vincent ChirchirMarketplace and Quality Assurance Presentation - Vincent Chirchir
Marketplace and Quality Assurance Presentation - Vincent Chirchirictsugar
 
Call Us 📲8800102216📞 Call Girls In DLF City Gurgaon
Call Us 📲8800102216📞 Call Girls In DLF City GurgaonCall Us 📲8800102216📞 Call Girls In DLF City Gurgaon
Call Us 📲8800102216📞 Call Girls In DLF City Gurgaoncallgirls2057
 
Islamabad Escorts | Call 03070433345 | Escort Service in Islamabad
Islamabad Escorts | Call 03070433345 | Escort Service in IslamabadIslamabad Escorts | Call 03070433345 | Escort Service in Islamabad
Islamabad Escorts | Call 03070433345 | Escort Service in IslamabadAyesha Khan
 

Recently uploaded (20)

Contemporary Economic Issues Facing the Filipino Entrepreneur (1).pptx
Contemporary Economic Issues Facing the Filipino Entrepreneur (1).pptxContemporary Economic Issues Facing the Filipino Entrepreneur (1).pptx
Contemporary Economic Issues Facing the Filipino Entrepreneur (1).pptx
 
Corporate Profile 47Billion Information Technology
Corporate Profile 47Billion Information TechnologyCorporate Profile 47Billion Information Technology
Corporate Profile 47Billion Information Technology
 
8447779800, Low rate Call girls in Rohini Delhi NCR
8447779800, Low rate Call girls in Rohini Delhi NCR8447779800, Low rate Call girls in Rohini Delhi NCR
8447779800, Low rate Call girls in Rohini Delhi NCR
 
IoT Insurance Observatory: summary 2024
IoT Insurance Observatory:  summary 2024IoT Insurance Observatory:  summary 2024
IoT Insurance Observatory: summary 2024
 
Innovation Conference 5th March 2024.pdf
Innovation Conference 5th March 2024.pdfInnovation Conference 5th March 2024.pdf
Innovation Conference 5th March 2024.pdf
 
Youth Involvement in an Innovative Coconut Value Chain by Mwalimu Menza
Youth Involvement in an Innovative Coconut Value Chain by Mwalimu MenzaYouth Involvement in an Innovative Coconut Value Chain by Mwalimu Menza
Youth Involvement in an Innovative Coconut Value Chain by Mwalimu Menza
 
8447779800, Low rate Call girls in Uttam Nagar Delhi NCR
8447779800, Low rate Call girls in Uttam Nagar Delhi NCR8447779800, Low rate Call girls in Uttam Nagar Delhi NCR
8447779800, Low rate Call girls in Uttam Nagar Delhi NCR
 
Japan IT Week 2024 Brochure by 47Billion (English)
Japan IT Week 2024 Brochure by 47Billion (English)Japan IT Week 2024 Brochure by 47Billion (English)
Japan IT Week 2024 Brochure by 47Billion (English)
 
Traction part 2 - EOS Model JAX Bridges.
Traction part 2 - EOS Model JAX Bridges.Traction part 2 - EOS Model JAX Bridges.
Traction part 2 - EOS Model JAX Bridges.
 
Investment in The Coconut Industry by Nancy Cheruiyot
Investment in The Coconut Industry by Nancy CheruiyotInvestment in The Coconut Industry by Nancy Cheruiyot
Investment in The Coconut Industry by Nancy Cheruiyot
 
Future Of Sample Report 2024 | Redacted Version
Future Of Sample Report 2024 | Redacted VersionFuture Of Sample Report 2024 | Redacted Version
Future Of Sample Report 2024 | Redacted Version
 
Annual General Meeting Presentation Slides
Annual General Meeting Presentation SlidesAnnual General Meeting Presentation Slides
Annual General Meeting Presentation Slides
 
Case study on tata clothing brand zudio in detail
Case study on tata clothing brand zudio in detailCase study on tata clothing brand zudio in detail
Case study on tata clothing brand zudio in detail
 
PSCC - Capability Statement Presentation
PSCC - Capability Statement PresentationPSCC - Capability Statement Presentation
PSCC - Capability Statement Presentation
 
India Consumer 2024 Redacted Sample Report
India Consumer 2024 Redacted Sample ReportIndia Consumer 2024 Redacted Sample Report
India Consumer 2024 Redacted Sample Report
 
Flow Your Strategy at Flight Levels Day 2024
Flow Your Strategy at Flight Levels Day 2024Flow Your Strategy at Flight Levels Day 2024
Flow Your Strategy at Flight Levels Day 2024
 
APRIL2024_UKRAINE_xml_0000000000000 .pdf
APRIL2024_UKRAINE_xml_0000000000000 .pdfAPRIL2024_UKRAINE_xml_0000000000000 .pdf
APRIL2024_UKRAINE_xml_0000000000000 .pdf
 
Marketplace and Quality Assurance Presentation - Vincent Chirchir
Marketplace and Quality Assurance Presentation - Vincent ChirchirMarketplace and Quality Assurance Presentation - Vincent Chirchir
Marketplace and Quality Assurance Presentation - Vincent Chirchir
 
Call Us 📲8800102216📞 Call Girls In DLF City Gurgaon
Call Us 📲8800102216📞 Call Girls In DLF City GurgaonCall Us 📲8800102216📞 Call Girls In DLF City Gurgaon
Call Us 📲8800102216📞 Call Girls In DLF City Gurgaon
 
Islamabad Escorts | Call 03070433345 | Escort Service in Islamabad
Islamabad Escorts | Call 03070433345 | Escort Service in IslamabadIslamabad Escorts | Call 03070433345 | Escort Service in Islamabad
Islamabad Escorts | Call 03070433345 | Escort Service in Islamabad
 

Report no.4(microprocessor)

  • 1. Date: 20/11/2013 Al-Azhar University-Gaza Faculty of Engineering & Information Technology Mechatronices engineering Microprocessors & Interfacing (ITCE 3306) LAB NO.4 Stepper motor Prepared By: Ronza sameer Abu jayyab No. 20111511 Submitted To: Eng. Mahmoud I. Hasanain First semester 2013/2014
  • 2.  introduction: we will deal with steeper motor which is, electromechanical device which converts electrical pulses into discrete mechanical movements. Shaft of a steeper motor rotates in discrete step increments when electrical pulses are applied. Sequence of the applied pulses is directly related to the direction of motor shaft's rotation. Speed of rotation is directly related to the frequency of input pulses applied.  objective: after this lab we're being able to answer these questions, 1. what is the stepper motor and from what it consist also who it is work? 2. how we can deal with stepper motor ? 3. How can you connect stepper motor with parallel port to make computer interfacing?  background:  stepper motor:  types of stepper motor: There are four main types of stepper motors: 1. 2. 3. 4. Permanent magnet stepper. Hybrid synchronous stepper. Variable reluctance stepper. Lavet type stepping motor.  Two-phase stepper motors: 1. Unipolar steeper motor. 2. Bipolar steeper motor.  Unipolar steeper motor: A unipolar stepper motor has one winding with center tap per phase. Each section of windings is switched on for each direction of magnetic field. Since in this arrangement a magnetic pole can be reversed without switching the direction of current, the commutation circuit can be made very simple (e.g., a single transistor) for each winding. Typically, given a phase, the center tap of each winding is made common: giving three leads per phase and six leads for a typical two phase motor. Often, these two phase commons are internally joined, so the motor has only five leads. A micro controller or stepper motor controller can be used to activate the drive transistors in the right order, and this ease of operation makes
  • 3. unipolar motors popular with hobbyists; they are probably the cheapest way to get precise angular movements. Fig-1Unipolar stepper motor coils (For the experimenter, the windings can be identified by touching the terminal wires together in PM motors. If the terminals of a coil are connected, the shaft becomes harder to turn. one way to distinguish the center tap (common wire) from a coil-end wire is by measuring the resistance. Resistance between common wire and coil-end wire is always half of what it is between coil-end and coil-end wires. This is because there is twice the length of coil between the ends and only half from center (common wire) to the end.) A quick way to determine if the stepper motor is working is to short circuit every two pairs and try turning the shaft, whenever a higher than normal resistance is felt, it indicates that the circuit to the particular winding is closed and that the phase is working.  Modes of Stepper Motor: 1. Full step. 2. Half step.  Full step: 1. The center taps of the windings are wired to the positive supply. 2. The two ends of each winding are alternately grounded to reverse the direction of the field provided by that winding. 3. Full step sequence showing how binary numbers can control the motor. Fig-2Full step- stepper motor
  • 4.  Half step: 1. Same circuity with different winding sequence. 2. Two windings are energized at the same instance. 3. Half step sequence showing how binary numbers can control the motor. Fig- 3Half step- stepper motor Fig -4Full and half clockwise rotation  advantages of stepper motors: 1. 2. 3. 4. 5. 6. 7. the rotation angle of the motor is proportional to the input pulse. Excellent response to starting, stopping, and reversing. The motors response to digital input pulses provides open-loop control. It's possible to achieve very low speed synchronous rotation. A wide range of rotational speeds can be real realized. Very reliable since there no contact brushes in the motor. Accuracy of 3-5% of a step and this error is non cumulative from one step to the next.  ULN2003A ICs:
  • 5. An ULN2003A is a high-voltage, high-current Darlington transistor array. It consists of seven NPN Darlington pairs that feature high-voltage outputs with common-cathode flyback diodes for switching inductive loads. It is very similar to the ULN2801A, ULN2802A, ULN2803A,[3] ULN2804A, and ULN2805A, only differing in logic input levels (TTL, CMOS, PMOS) and number of inputs (8). The drivers can be paralleled for higher current capability, even stacking one chip on top of another, both electrically and physically has been done. Features 500 mA rated collector current (single output) 50 V output Includes output flyback diodes Inputs compatible with various types of logic  Application: Typical usage of the ULN2003A is to: 1. drive relays. 2. lamp and LED displays. 3. stepper motors. Fig -5ULN2003A ICs  Experiment:
  • 6.  Control circuit: Fig-6Stepper motor circuit Fig-7Stepper motor circuit  Experiment no.1: Control code: Fig-8Visual basic form to control stepper motor
  • 7. Dim i As Integer Private Sub Command1_Click() Timer1.Enabled = True Timer2.Enabled = False Timer1.Interval = 5 Timer2.Interval = 5 End Sub Private Sub Command2_Click() Timer1.Enabled = False Timer2.Enabled = True Timer1.Interval = 5 Timer2.Interval = 5 End Sub Private Sub Form_Load() ntport1.address = 888 End Sub Private Sub Timer1_Timer() ntport1.Value = 2 ^ i i=i+1 If i > 7 Then i = 0 End Sub Private Sub Timer2_Timer() ntport1.Value = 2 ^ i i=i-1 If i < 0 Then i = 7 End Sub Comment: Stepper motor move clockwise fast by timer 1 and counter clockwise fast by timer 2. When decrease value of interval stepper motor will move fast.  Experiment no.2:  Control code: Dim i As Integer Private Sub Command1_Click() Timer1.Enabled = True Timer2.Enabled = False
  • 8. Timer1.Interval = 50 Timer2.Interval = 50 End Sub Private Sub Command2_Click() Timer1.Enabled = False Timer2.Enabled = True Timer1.Interval = 5 Timer2.Interval = 5 End Sub Private Sub Form_Load() ntport1.address = 888 End Sub Private Sub Timer1_Timer() ntport1.Value = 2 ^ i i=i+1 If i > 7 Then i = 0 End Sub Private Sub Timer2_Timer() ntport1.Value = 2 ^ i i=i-1 If i < 0 Then i = 7 End Sub  Comment: Stepper motor move clockwise slow by timer 1 and counter clockwise slow by timer 2. When increase value of interval stepper motor will move slow. Fig- -
  • 9.  Conclusion: a. All types and characteristics of a stepper motor are studied throughout this report. b. These are very popular in our day to day life due to a lot of advantages and also in digital control circuits, such as robotics because they are ideally suited for receiving digital pulses for ste.  References: