EEE3410 Microcontroller Applications Department of Electrical Engineering Lecture 11 Motor Control

Size: px
Start display at page:

Download "EEE3410 Microcontroller Applications Department of Electrical Engineering Lecture 11 Motor Control"

Transcription

1 EEE34 Microcontroller Applications Department of Electrical Engineering Lecture Motor Control Week 3

2 EEE34 Microcontroller Applications In this Lecture. Interface 85 with the following output Devices Optoisolator Stepper motor DC motor 2

3 Optoisolator EEE34 Microcontroller Applications An optoisolator, also called optocoupler, is to isolate two parts of a system. An optoisolator has an LED transmitter and a photo-transistor receiver, separated from each other by a gap. When current flows through the LED, it will light up and the light transmits across the gap. When the photo-transistor receives the light, it will turn on linking up the two output leads similar to a mechanical switch. The action of the photo-transistor will produce the same signal with the same phase as from the LED but with a different current and amplitude. The gap between the transmitter and receiver of optoisolators prevents the electrical current surge produced at the receiving reaching the transmitting end. 3

4 EEE34 Microcontroller Applications Interfacing an Optoisolator The optoisolator comes in a small IC package with four or more pins. There are also packages that contain more than one optoisolator. When placing an optoisolator between two circuits, two separate voltage source are used, one for each side. Unlike relays, no drivers need to be placed between the microcontroller output and the optoisolators. Figure. IC package of Optoisolator Figure.2 Controlling a Lamp via Optoisolator 4

5 EEE34 Microcontroller Applications Stepper Motor (/2) Stepper motor: a device that translates electrical pulses into mechanical movement Usually used in robotics Permanent magnet (PM) rotor surrounded by a stator Stepper shaft (rotor) moves in a fixed repeatable increment rather than running freely as in conventional motors Figure.3 Stepper shaft alignment 5

6 EEE34 Microcontroller Applications Stepper Motor (2/2) We shall consider a 4-phase stepper motor 6 leads: 4 stator winding leads and 2 center-tapped commons A N common A A common B S common N o S S N B B B common A Figure.4 A 4-phase stepper motor 6

7 EEE34 Microcontroller Applications Stepper Motor Position Control (/5) Current through the coils determine the polarity of the stator poles Applying a specific sequence of voltage to each winding will enable the rotor to rotate in a specific manner P.7 P.6 P.5 P.4 P.3 P.2 P. P. A B A A B +V 85 A B common Stepper Motor B Figure.5 7

8 Stepper Motor Position Control (2/5) EEE34 Microcontroller Applications There are several widely used sequences where each has a different degree of precision. Normal 4-step sequence 8-step sequence (half-stepping) Step angle the step angle is the minimum degree of rotation associated with a single step. The smaller of step angle, higher degree of precision in position control. Motor Step Angle ( ) Steps per Revolution

9 EEE34 Microcontroller Applications Stepper Motor Position Control (3/5) Normal 4-Step 4 Sequence Clockwise Step # Winding A Winding B Winding A Winding B Counter-clockwise ORG H MOV A, #B ; load step sequence BACK: MOV P, A ; issue sequence to motor RR A ; rotate right clock ACALL DELAY ; wait SJMP BACK ; repeat the rotation sequence ; DELAY:.. ; time delay subroutine RET END 9

10 EEE34 Microcontroller Applications Stepper Motor Position Control (4/5) 8-Step Sequence (Half Step) Step # Winding A Winding B Winding A Winding B 2 Clockwise Counter-clockwise 8

11 EEE34 Microcontroller Applications Stepper Motor Position Control (5/5) Program of 8-Step 8 Sequence (Half Step) ORG H MOV R, #B ; load normal step sequence MOV R, #B ; load half step sequence BACK: MOV A, R ; load normal sequence value MOV P, A ; issue sequence to motor RR A ; rotate right - clockwise MOV R, A ; store normal sequence value ACALL DELAY ; wait MOV A, R ; load half step sequence value MOV P, A ; issue sequence to motor RR A ; rotate right - clockwise MOV R, A ; store half step sequence value ACALL DELAY ; wait SJMP BACK ; repeat the rotation sequence ; DELAY:.. ; time delay subroutine RET END

12 EEE34 Microcontroller Applications Further example on Stepper Motor Position Control Controlling stepper motor via optoisolator Figure.6 85 connection to Stepper motor Example. If a switch is connected to port P2.7. Write a program to monitor the status of SW and perform the following: (a) If SW=, the stepper motor moves clockwise. (b) If SW=, the stepper motor moves counter-clockwise. 2

13 EEE34 Microcontroller Applications Further example on Stepper Motor Position Control Example. Program listing ORG H MAIN: SETB P2.7 ; make P2.7 as an input MOV A, #99H ; starting phase value MOV P, A ; send value to port TURN: JNB P2.7, CW ; check switch RR A ; rotate right - clockwise ACALL DELAY ; wait MOV P, A ; send value to port SJMP TURN ; repeat CW: RL A ; rotate left counter-clockwise ACALL DELAY ; wait MOV P, A ; send value to port SJMP TURN ; repeat ; DELAY: MOV R2, # ; time delay subroutine H: MOV R3, #255 H2: DJNZ R3, H2 DJNZ R2, H RET END 3

14 EEE34 Microcontroller Applications DC Motors DC motor: has only a pair of + and leads. Connecting to a DC voltage source, DC motors move in one direction. By reversing the voltage polarity, they will move in the opposite direction. Figure.7 DC motor rotation 4

15 DC Motors - Bidirectional control (/2) EEE34 Microcontroller Applications With the help of relays or some specially designed chips, the rotational directions (forward and backward) of DC motors can be control. The basic concept is the H-Bridge control of DC motors Figure.8 H-Bridge Motor Configuration Figure.9 H-Bridge Motor Clockwise Configuration 5

16 EEE34 Microcontroller Applications DC Motors - Bidirectional control (2/2) Figure. H-Bridge Motor Counter-Clockwise Configuration Figure. H-Bridge in an Invalid Configuration H-Bridge control can be created using relays, transistors, or a single IC solution. When using relays and transistors, make sure that invalid configuration do not occur. 6

17 Solution: ORG H MAIN: CLR P. ; H-Bridge switch CLR P. ; H-Bridge switch 2 CLR P.2 ; H-Bridge switch 3 CLR P.3 ; H-bridge switch 4 SETB P2.7 MONITOR: JNB P2.7, CW ; check switch SETB P. ; H-Bridge switch CLR P. ; H-Bridge switch 2 CLR P.2 ; H-Bridge switch 3 SETB P.3 ; H-Bridge switch 4 SJMP MONITOR CW: CLR P. ; H-Bridge switch SETB P. ; H-Bridge switch 2 SETB P.2 ; H-Bridge switch 3 CLR P.3 ; H-Bridge switch 4 SJMP MONITOR END EEE34 Microcontroller Applications Example.2 : If a switch is connected to port P2.7. Write a program to monitor the status of SW and perform the H-Bridge direction control of DC motor as follow: (a) If SW=, the DC motor moves clockwise. (b) If SW=, the DC motor moves counter-clockwise. 7

18 EEE34 Microcontroller Applications DC Motors - Speed control by PWM (/2) The speed of DC motor depends on three factors; (a) load, (b) voltage and (c) current For a fixed load, speed of DC motor can be changed by pulse width modulation (PWM) PWM is to change the width of the pulse applied to DC motor which lead to an increase or decrease the amount of power supplied to the motor. As a result, the motor speed increases or decreases respective to the power supplied. Although the amplitude of the pulse is fixed at a voltage level, but its duty is varied. The wider the pulse, the higher speed of motor. Motor Speed Figure.2 Pulse Width Modulation Comparison 8

19 EEE34 Microcontroller Applications Example.3 : Refer to figure.9, write a program to monitor the status of SW and perform the following: (a) If P2.7 =, the DC motor moves with 25% duty cycle pulse. (b) If P2.7 =, the DC motor moves with 5% duty cycle pulse. Figure.3 Connection of DC Motor speed Control by PWM 9

20 EEE34 Microcontroller Applications Read reference The 85 Microcontroller and Embedded Systems - Using Assembly and C, Mazidi Chapter 7 P.49 P.55 2

21 EEE34 Microcontroller Applications Review Questions. Give two applications for an optoisolator. 2. Give the advantages of an optoisolator over an electromechanical relay. 3. If a stepper motor takes 9 steps to make one complete revolution, what is the step angle for this motor? 4. Calculate the number of steps per revolution for a step angle of 7.5 degrees. 5. Finish the normal four-step sequence counterclockwise if the first step is (binary). 6. What is the effect of a time delay between issuing each step? 7. What is the factors which affect the speed of a DC motor? 8. What is the advantage of stepper motors over DC motors? 9. A DC motor is moving a load. How do we keep the motor speed constant?. What is PWM, and how is it used in DC motor control? 2

22 EEE34 Microcontroller Applications Department of Electrical Engineering END of Lecture Motor Control Week 3 22

Assembly Language. Topic 14 Motion Control. Stepper and Servo Motors

Assembly Language. Topic 14 Motion Control. Stepper and Servo Motors Assembly Language Topic 14 Motion Control Stepper and Servo Motors Objectives To gain an understanding of the operation of a stepper motor To develop a means to control a stepper motor To gain an understanding

More information

Automatic Railway Gate Control & Track Switching

Automatic Railway Gate Control & Track Switching Automatic Railway Gate Control & Track Switching ABSTRACT: Present project is designed using 8051 microcontroller to avoid railway accidents happening at unattended railway gates, if implemented in spirit.

More information

combine regular DC-motors with a gear-box and an encoder/potentiometer to form a position control loop can only assume a limited range of angular

combine regular DC-motors with a gear-box and an encoder/potentiometer to form a position control loop can only assume a limited range of angular Embedded Control Applications II MP10-1 Embedded Control Applications II MP10-2 week lecture topics 10 Embedded Control Applications II - Servo-motor control - Stepper motor control - The control of a

More information

EEE3410 Microcontroller Applications Department of Electrical Engineering. Lecture 10. Analogue Interfacing. Vocational Training Council, Hong Kong.

EEE3410 Microcontroller Applications Department of Electrical Engineering. Lecture 10. Analogue Interfacing. Vocational Training Council, Hong Kong. Department of Electrical Engineering Lecture 10 Analogue Interfacing 1 In this Lecture. Interface 8051 with the following Input/Output Devices Transducer/Sensors Analogue-to-Digital Conversion (ADC) Digital-to-Analogue

More information

ANGULAR POSITION CONTROL OF DC MOTOR USING SHORTEST PATH ALGORITHM

ANGULAR POSITION CONTROL OF DC MOTOR USING SHORTEST PATH ALGORITHM EE 712 Embedded Systems Design, Lab Project Report, EE Dept. IIT Bombay, April 2006. ANGULAR POSITION CONTROL OF DC MOTOR USING SHORTEST PATH ALGORITHM Group Number: 17 Rupesh Sonu Kakade (05323014)

More information

MICROCONTROLLERS Stepper motor control with Sequential Logic Circuits

MICROCONTROLLERS Stepper motor control with Sequential Logic Circuits PH-315 MICROCONTROLLERS Stepper motor control with Sequential Logic Circuits Portland State University Summary Four sequential digital waveforms are used to control a stepper motor. The main objective

More information

Lab Exercise 9: Stepper and Servo Motors

Lab Exercise 9: Stepper and Servo Motors ME 3200 Mechatronics Laboratory Lab Exercise 9: Stepper and Servo Motors Introduction In this laboratory exercise, you will explore some of the properties of stepper and servomotors. These actuators are

More information

International Journal of Advance Engineering and Research Development. Wireless Control of Dc Motor Using RF Communication

International Journal of Advance Engineering and Research Development. Wireless Control of Dc Motor Using RF Communication International Journal of Advance Engineering and Research Development Scientific Journal of Impact Factor (SJIF): 4.72 Special Issue SIEICON-2017,April -2017 e-issn : 2348-4470 p-issn : 2348-6406 Wireless

More information

Laboratory Exercise 1 Microcontroller Board with Driver Board

Laboratory Exercise 1 Microcontroller Board with Driver Board Laboratory Exercise 1 Microcontroller Board with Driver Board The purpose of this lab exercises is to demonstrate how the Microcontroller Board can be used to control motors connected to the Driver Board

More information

Page 1. Relays. Poles and Throws. Relay Types. Common embedded system problem CS/ECE 6780/5780. Al Davis. Terminology used for switches

Page 1. Relays. Poles and Throws. Relay Types. Common embedded system problem CS/ECE 6780/5780. Al Davis. Terminology used for switches Relays CS/ECE 6780/5780 Al Davis Today s topics: Relays & Motors prelude to 5780 Lab 9 Common embedded system problem digital control: relatively small I & V levels controlled device requires significantly

More information

Experiment#6: Speaker Control

Experiment#6: Speaker Control Experiment#6: Speaker Control I. Objectives 1. Describe the operation of the driving circuit for SP1 speaker. II. Circuit Description The circuit of speaker and driver is shown in figure# 1 below. The

More information

o What happens if S1 and S2 or S3 and S4 are closed simultaneously? o Perform Motor Control, H-Bridges LAB 2 H-Bridges with SPST Switches

o What happens if S1 and S2 or S3 and S4 are closed simultaneously? o Perform Motor Control, H-Bridges LAB 2 H-Bridges with SPST Switches Cornerstone Electronics Technology and Robotics II H-Bridges and Electronic Motor Control 4 Hour Class Administration: o Prayer o Debriefing Botball competition Four States of a DC Motor with Terminals

More information

L E C T U R E R, E L E C T R I C A L A N D M I C R O E L E C T R O N I C E N G I N E E R I N G

L E C T U R E R, E L E C T R I C A L A N D M I C R O E L E C T R O N I C E N G I N E E R I N G P R O F. S L A C K L E C T U R E R, E L E C T R I C A L A N D M I C R O E L E C T R O N I C E N G I N E E R I N G G B S E E E @ R I T. E D U B L D I N G 9, O F F I C E 0 9-3 1 8 9 ( 5 8 5 ) 4 7 5-5 1 0

More information

Small DC Motor Control

Small DC Motor Control APPLICATION NOTE Small DC Motor Control JAFAR MODARES ECO APPLICATIONS September 1988 Order Number 270622-001 Information in this document is provided in connection with Intel products Intel assumes no

More information

Introduction to Relays. ECE/CS 5780/6780: Embedded System Design. Various Relay Configurations. Types of Relays. Drawing of an EM Relay

Introduction to Relays. ECE/CS 5780/6780: Embedded System Design. Various Relay Configurations. Types of Relays. Drawing of an EM Relay Introduction to Relays ECE/CS 5780/6780: Embedded System Design Chris J. Myers Lecture 15: Relays and Motors A relay is a device that responds to a small current or voltage change by activating a switches

More information

Mechatronics Engineering and Automation Faculty of Engineering, Ain Shams University MCT-151, Spring 2015 Lab-4: Electric Actuators

Mechatronics Engineering and Automation Faculty of Engineering, Ain Shams University MCT-151, Spring 2015 Lab-4: Electric Actuators Mechatronics Engineering and Automation Faculty of Engineering, Ain Shams University MCT-151, Spring 2015 Lab-4: Electric Actuators Ahmed Okasha, Assistant Lecturer okasha1st@gmail.com Objective Have a

More information

PART 2 - ACTUATORS. 6.0 Stepper Motors. 6.1 Principle of Operation

PART 2 - ACTUATORS. 6.0 Stepper Motors. 6.1 Principle of Operation 6.1 Principle of Operation PART 2 - ACTUATORS 6.0 The actuator is the device that mechanically drives a dynamic system - Stepper motors are a popular type of actuators - Unlike continuous-drive actuators,

More information

Basic of PCD Series Pulse Control LSIs

Basic of PCD Series Pulse Control LSIs Basic of PCD Series Pulse Control LSIs Nippon Pulse Motor Co., Ltd. Table of Contents 1. What is a PCD? 1 2. Reviewing common terms 1 (1) Reference clock 1 (2) Operating patterns and registers 1 (3) Commands

More information

DC motor control using arduino

DC motor control using arduino DC motor control using arduino 1) Introduction: First we need to differentiate between DC motor and DC generator and where we can use it in this experiment. What is the main different between the DC-motor,

More information

2.017 DESIGN OF ELECTROMECHANICAL ROBOTIC SYSTEMS Fall 2009 Lab 4: Motor Control. October 5, 2009 Dr. Harrison H. Chin

2.017 DESIGN OF ELECTROMECHANICAL ROBOTIC SYSTEMS Fall 2009 Lab 4: Motor Control. October 5, 2009 Dr. Harrison H. Chin 2.017 DESIGN OF ELECTROMECHANICAL ROBOTIC SYSTEMS Fall 2009 Lab 4: Motor Control October 5, 2009 Dr. Harrison H. Chin Formal Labs 1. Microcontrollers Introduction to microcontrollers Arduino microcontroller

More information

EXPERIMENT 6: Advanced I/O Programming

EXPERIMENT 6: Advanced I/O Programming EXPERIMENT 6: Advanced I/O Programming Objectives: To familiarize students with DC Motor control and Stepper Motor Interfacing. To utilize MikroC and MPLAB for Input Output Interfacing and motor control.

More information

Micromouse Meeting #3 Lecture #2. Power Motors Encoders

Micromouse Meeting #3 Lecture #2. Power Motors Encoders Micromouse Meeting #3 Lecture #2 Power Motors Encoders Previous Stuff Microcontroller pick one yet? Meet your team Some teams were changed High Level Diagram Power Everything needs power Batteries Supply

More information

AN Industrial Stepper Motor Driver. Application Note Abstract. Introduction. Stepper Motor Control Method

AN Industrial Stepper Motor Driver. Application Note Abstract. Introduction. Stepper Motor Control Method Industrial Stepper Motor Driver AN43679 Author: Dino Gu, Bill Jiang, Jemmey Huang Associated Project: Yes Associated Part Family: CY8C27x43, CY8C29x66 GET FREE SAMPLES HERE Software Version: PSoC Designer

More information

Appendix 1. Basic Electronics. The PIC Hardware. Using Transistors (Basic Electronics)

Appendix 1. Basic Electronics. The PIC Hardware. Using Transistors (Basic Electronics) Teach Yourself PIC Microcontrollers www.electronicspk.com 120 Appendix 1 Basic Electronics The PIC Hardware Well so far you have gained an insight about the various features of 1PIC microcontroller. Now

More information

MicroToys Guide: Motors N. Pinckney April 2005

MicroToys Guide: Motors N. Pinckney April 2005 Introduction Three types of motors are applicable to small projects: DC brushed motors, stepper motors, and servo motors. DC brushed motors simply rotate in a direction dependent on the flow of current.

More information

Stepper Motor Board. User Manual. 1.0, Oct 2013

Stepper Motor Board. User Manual. 1.0, Oct 2013 Stepper Motor Board User Manual 1.0, Oct 2013 This work is licensed under the Creative Commons AttributionShare Alike 2.5 India License. To view a copy of this license, visit http://creativecommons.org/licenses/bysa/2.5/in/

More information

DC-Motor Driver circuits

DC-Motor Driver circuits DC-Mot May 19, 2012 Why is there a need for a motor driver circuit? Normal DC gear-head motors requires current greater than 250mA. ICs like 555 timer, ATmega Microcontroller, 74 series ICs cannot supply

More information

SMART Funded by The National Science Foundation

SMART Funded by The National Science Foundation Lecture 5 Capacitors 1 Store electric charge Consists of two plates of a conducting material separated by a space filled by an insulator Measured in units called farads, F Capacitors 2 Mylar Ceramic Electrolytic

More information

Experiment (2) DC Motor Control (Direction and Speed)

Experiment (2) DC Motor Control (Direction and Speed) Introduction Experiment (2) DC Motor Control (Direction and Speed) Controlling direction and speed of DC motor is very essential in many applications like: 1- Robotic application to change direction and

More information

Job Sheet 2 Servo Control

Job Sheet 2 Servo Control Job Sheet 2 Servo Control Electrical actuators are replacing hydraulic actuators in many industrial applications. Electric servomotors and linear actuators can perform many of the same physical displacement

More information

THE UNIVERSITY OF BRITISH COLUMBIA. Department of Electrical and Computer Engineering. EECE 365: Applied Electronics and Electromechanics

THE UNIVERSITY OF BRITISH COLUMBIA. Department of Electrical and Computer Engineering. EECE 365: Applied Electronics and Electromechanics THE UNIVERSITY OF BRITISH COLUMBIA Department of Electrical and Computer Engineering EECE 365: Applied Electronics and Electromechanics Final Exam / Sample-Practice Exam Spring 2008 April 23 Topics Covered:

More information

Half stepping techniques

Half stepping techniques Half stepping techniques By operating a stepper motor in half stepping mode it is possible to improve system performance in regard to higher resolution and reduction of resonances. It is also possible

More information

ESO 210 Introduction to Electrical Engineering

ESO 210 Introduction to Electrical Engineering ESO 210 Introduction to Electrical Engineering Lecture-12 Three Phase AC Circuits Three Phase AC Supply 2 3 In general, three-phase systems are preferred over single-phase systems for the transmission

More information

Lock Cracker S. Lust, E. Skjel, R. LeBlanc, C. Kim

Lock Cracker S. Lust, E. Skjel, R. LeBlanc, C. Kim Lock Cracker S. Lust, E. Skjel, R. LeBlanc, C. Kim Abstract - This project utilized Eleven Engineering s XInC2 development board to control several peripheral devices to open a standard 40 digit combination

More information

Electronic Speed Controls and RC Motors

Electronic Speed Controls and RC Motors Electronic Speed Controls and RC Motors ESC Power Control Modern electronic speed controls regulate the electric power applied to an electric motor by rapidly switching the power on and off using power

More information

ME 2110 Controller Box Manual. Version 2.3

ME 2110 Controller Box Manual. Version 2.3 ME 2110 Controller Box Manual Version 2.3 I. Introduction to the ME 2110 Controller Box A. The Controller Box B. The Programming Editor & Writing PBASIC Programs C. Debugging Controller Box Problems II.

More information

Ametek, Inc. Rotron Technical Products Division. 100 East Erie St., Suite 200 Kent, Ohio User's Guide. Number Revision F

Ametek, Inc. Rotron Technical Products Division. 100 East Erie St., Suite 200 Kent, Ohio User's Guide. Number Revision F Ametek, Inc. Rotron Technical Products Division 100 East Erie St., Suite 200 Kent, Ohio 44240 User's 120 Volt, 800 Watt and 240 Volt, 1200 Watt Brushless Motor Drive Electronics 5.7" (145 mm) and 7.2"

More information

ES86 Series Closed-loop Stepper Drive + Motor System (ES-D808 Drive+ Motor/Encoder)

ES86 Series Closed-loop Stepper Drive + Motor System (ES-D808 Drive+ Motor/Encoder) ES86 Series Closed-loop Stepper Drive + Motor System (ES-D808 Drive+ Motor/Encoder) Traditional stepper motor drive systems operate open loop providing position control without feedback. However, because

More information

Stepping Motor. Applications. Structure and operation. Code names. Mobile equipment Digital cameras, Mobile equipments, PDA, etc.

Stepping Motor. Applications. Structure and operation. Code names. Mobile equipment Digital cameras, Mobile equipments, PDA, etc. Stepping Motor pplications Mobile equipment Digital cameras, Mobile equipments, PD, etc. Office automation equipment Printers, facsimiles, Typewriters, Photocopiers, FDD head drives, CD-ROM pickup drives,

More information

Sensors and Sensing Motors, Encoders and Motor Control

Sensors and Sensing Motors, Encoders and Motor Control Sensors and Sensing Motors, Encoders and Motor Control Todor Stoyanov Mobile Robotics and Olfaction Lab Center for Applied Autonomous Sensor Systems Örebro University, Sweden todor.stoyanov@oru.se 13.11.2014

More information

M.Kaliamoorthy and I.Gerald PSNACET/EEE CHAPTER 2 STEPPER MOTORS

M.Kaliamoorthy and I.Gerald PSNACET/EEE CHAPTER 2 STEPPER MOTORS 2.1.General Lecture Notes M.Kaliamoorthy and I.Gerald PSNACET/EEE CHAPTER 2 STEPPER MOTORS Stepper motors are electromagnetic incremental devices that convert electric pulses to shaft motion (rotation).

More information

EDE1204 Bi-Polar Stepper Motor IC

EDE1204 Bi-Polar Stepper Motor IC EDE1204 Bi-Polar Stepper Motor IC EDE1204 Coil B Control Signal 1 Coil B Coil A 18 Coil A Control Signal Coil B Control Signal 2 Coil B Coil A 17 Coil A Control Signal Connect to +5V DC 3 +5V OSC1 16 Oscillator

More information

Solid State Devices (2)

Solid State Devices (2) Solid State Devices (2) Daniel Kohn University of Memphis Department of Engineering Technology TECH 3821 Industrial Electronics Fall 2015 Opto Isolators An optoisolator (also known as optical coupler,

More information

International Journal of Advance Engineering and Research Development

International Journal of Advance Engineering and Research Development Scientific Journal of Impact Factor (SJIF): 3.134 International Journal of Advance Engineering and Research Development Volume 3, Issue 1, January -2016 e-issn (O): 2348-4470 p-issn (P): 2348-6406 Design

More information

ES86 Series Closed-loop Stepper Drive + Motor System (Drive+ Motor/Encoder)

ES86 Series Closed-loop Stepper Drive + Motor System (Drive+ Motor/Encoder) ES86 Series Closed-loop Stepper Drive + Motor System (Drive+ Motor/Encoder) Traditional stepper motor drive systems operate open loop providing position control without feedback. However, because of this,

More information

WIRELESS DC MOTOR SPEED AND DIRECTION CONTROL USING IR (PWM and H-Bridge)

WIRELESS DC MOTOR SPEED AND DIRECTION CONTROL USING IR (PWM and H-Bridge) WIRELESS DC MOTOR SPEED AND DIRECTION CONTROL USING IR (PWM and H-Bridge) Title of the project : Wireless DC motor speed and direction control using IR (PWM and H-Bridge) Domain : Wireless Communication,

More information

Input/Output Control Using Interrupt Service Routines to Establish a Time base

Input/Output Control Using Interrupt Service Routines to Establish a Time base CSUS EEE174 Lab Input/Output Control Using Interrupt Service Routines to Establish a Time base 599 Menlo Drive, Suite 100 Rocklin, California 95765, USA Office/Tech Support: (916) 624-8333 Fax: (916) 624-8003

More information

ES86 Series Closed-loop Stepper Drive + Motor System (Drive+ Motor/Encoder)

ES86 Series Closed-loop Stepper Drive + Motor System (Drive+ Motor/Encoder) ES86 Series Closed-loop Stepper Drive + Motor System (Drive+ Motor/Encoder) Traditional stepper motor drive systems operate open loop providing position control without feedback. However, because of this,

More information

WIRELESS DC MOTOR SPEED AND DIRECTION CONTROL USING RF COMMUNICATION

WIRELESS DC MOTOR SPEED AND DIRECTION CONTROL USING RF COMMUNICATION WIRELESS DC MOTOR SPEED AND DIRECTION CONTROL USING RF COMMUNICATION Title of the project : Wireless DC motor speed and direction control using RF (PWM) Domain : Wireless Communication, Electrical & Embedded

More information

Introduction to the ME2110 Kit. Controller Box Electro Mechanical Actuators & Sensors Pneumatics

Introduction to the ME2110 Kit. Controller Box Electro Mechanical Actuators & Sensors Pneumatics Introduction to the ME2110 Kit Controller Box Electro Mechanical Actuators & Sensors Pneumatics Features of the Controller Box BASIC Stamp II-SX microcontroller Interfaces with various external devices

More information

Dimensions: Specifications:

Dimensions: Specifications: Rover 5 Rover 5 is a new breed of tracked robot chassis designed specifically for students and hobbyist. Unlike conventional tracked chassis s the clearance can be adjusted by rotating the gearboxes in

More information

30-80V, 8.2A Peak, No Tuning, Nulls loss of Synchronization

30-80V, 8.2A Peak, No Tuning, Nulls loss of Synchronization 2-phase Hybrid Servo Drive 30-80V, 8.2A Peak, No Tuning, Nulls loss of Synchronization Closed-loop, eliminates loss of synchronization Broader operating range higher torque and higher speed Reduced motor

More information

Datasheet of the MEZ Stepper Servo Drive MEZ 2D VDC, 8.2A Peak, Closed-loop, No Tuning. Version

Datasheet of the MEZ Stepper Servo Drive MEZ 2D VDC, 8.2A Peak, Closed-loop, No Tuning. Version Datasheet of the MEZ Stepper Servo Drive MEZ D880 4-75VDC, 8.A Peak, Closed-loop, No Tuning Version 0.1.1 http://www.motionking.com Features Step and direction control Closed position loop for no loss

More information

Lab 8. Stepper Motor Controller

Lab 8. Stepper Motor Controller Lab 8. Stepper Motor Controller Overview of this Session In this laboratory, you will learn: To continue to use an oscilloscope How to use a Step Motor driver chip. Introduction This lab is focused around

More information

Microcontroller Based Electric Expansion Valve Controller for Air Conditioning System

Microcontroller Based Electric Expansion Valve Controller for Air Conditioning System Microcontroller Based Electric Expansion Valve Controller for Air Conditioning System Thae Su Aye, and Zaw Myo Lwin Abstract In the air conditioning system, the electric expansion valve (EEV) is one of

More information

Open Loop Speed Control of Brushless DC Motor

Open Loop Speed Control of Brushless DC Motor Open Loop Speed Control of Brushless DC Motor K Uday Bhargav 1, Nayana T N 2 PG Student, Department of Electrical & Electronics Engineering, BNMIT, Bangalore, Karnataka, India 1 Assistant Professor, Department

More information

USING THE L6204, A BIPOLAR STEPPER AND DC MOTOR DRIVER IN BCD TECHNOLOGY

USING THE L6204, A BIPOLAR STEPPER AND DC MOTOR DRIVER IN BCD TECHNOLOGY USING THE L6204, A BIPOLAR STEPPER AND DC MOTOR DRIVER IN BCD TECHNOLOGY by E Balboni Containing two H-bridge drivers, the L6204 is a compact and simple solution for driving two-phase bipolar stepper motors

More information

Application Note. 3-Phase Brushless DC Motor Control with Hall Sensors AN-CM-244

Application Note. 3-Phase Brushless DC Motor Control with Hall Sensors AN-CM-244 Application Note 3-Phase Brushless DC Motor Control with Hall AN-CM-244 Abstract This application note describes how to control a 3-phase brushless DC motor using a GreenPAK. This application note comes

More information

Activity 4: Due before the lab during the week of Feb

Activity 4: Due before the lab during the week of Feb Today's Plan Announcements: Lecture Test 2 programming in C Activity 4 Serial interfaces Analog output Driving external loads Motors: dc motors, stepper motors, servos Lecture Test Activity 4: Due before

More information

Stepper Motors and Control Part I - Unipolar Stepper Motor and Control (c) 1999 by Rustle Laidman, All Rights Reserved

Stepper Motors and Control Part I - Unipolar Stepper Motor and Control (c) 1999 by Rustle Laidman, All Rights Reserved Copyright Notice: (C) June 2000-2008 by Russell Laidman. All Rights Reserved. ------------------------------------------------------------------------------------ The material contained in this project,

More information

Application Information

Application Information Application Information Allegro Motor Driving with Angular Sensor IC By Christophe Lutz, Andrea Foletto, Kamyar Khosravi, Masahira Kurihara, Charles Keefer, and Ryan Bradley, Allegro Microsystems France,

More information

AppKit: Using the LTC bit Analog-to-Digital Converter

AppKit: Using the LTC bit Analog-to-Digital Converter AppKit: Using the LTC1298 12-bit Analog-to-Digital Converter This AppKit shows how to use the Linear Technology LTC 1298 12-bit ADC chip with PIC microcontrollers and the Parallax BASIC Stamp single-board

More information

Basic NC and CNC. Dr. J. Ramkumar Professor, Department of Mechanical Engineering Micro machining Lab, I.I.T. Kanpur

Basic NC and CNC. Dr. J. Ramkumar Professor, Department of Mechanical Engineering Micro machining Lab, I.I.T. Kanpur Basic NC and CNC Dr. J. Ramkumar Professor, Department of Mechanical Engineering Micro machining Lab, I.I.T. Kanpur Micro machining Lab, I.I.T. Kanpur Outline 1. Introduction to CNC machine 2. Component

More information

Motor control using FPGA

Motor control using FPGA Motor control using FPGA MOTIVATION In the previous chapter you learnt ways to interface external world signals with an FPGA. The next chapter discusses digital design and control implementation of different

More information

User's Manual. Step Motor Driver L E V E L

User's Manual. Step Motor Driver L E V E L /15/ User's Manual 550 Step Motor Driver Applied Motion Products, Inc. 404 Westridge Drive Watsonville, CA 50 Tel (31) 1-555 (00) 525-10 Fax (31) 1-544 E REVISION L E V E L s drives controls Technical

More information

Design of double loop-locked system for brush-less DC motor based on DSP

Design of double loop-locked system for brush-less DC motor based on DSP International Conference on Advanced Electronic Science and Technology (AEST 2016) Design of double loop-locked system for brush-less DC motor based on DSP Yunhong Zheng 1, a 2, Ziqiang Hua and Li Ma 3

More information

Stepper motors. Resources and methods for learning about these subjects (list a few here, in preparation for your research):

Stepper motors. Resources and methods for learning about these subjects (list a few here, in preparation for your research): Stepper motors This worksheet and all related files are licensed under the Creative Commons Attribution License, version 1.0. To view a copy of this license, visit http://creativecommons.org/licenses/by/1.0/,

More information

Embedded Systems Lab Lab 7 Stepper Motor Application

Embedded Systems Lab Lab 7 Stepper Motor Application Islamic University of Gaza College of Engineering puter Department Embedded Systems Lab Stepper Motor Application Prepared By: Eng.Ola M. Abd El-Latif Apr. /2010 :D 0 Objective Tools Theory To realize

More information

CL86T. 24~80VDC, 8.2A Peak, Closed-loop, No Tuning. Descriptions. Closed-loop. Stepper. Applications. Datasheet of the Closed-loop Stepper CL86T

CL86T. 24~80VDC, 8.2A Peak, Closed-loop, No Tuning. Descriptions. Closed-loop. Stepper. Applications. Datasheet of the Closed-loop Stepper CL86T CL86T Closed-loop Stepper 24~80VDC, 8.2A Peak, Closed-loop, No Tuning Closed-loop, eliminates loss of synchronization Broader operating range higher torque and higher speed Reduced motor heating and more

More information

ECE 4510/5530 Microcontroller Applications Week 13

ECE 4510/5530 Microcontroller Applications Week 13 ECE 4510/5530 Microctroller Applicatis Week 13 Dr. Bradley J. Bazuin Associate Professor Department of Electrical and Computer Engineering College of Engineering and Applied ciences General Informati More

More information

Semiconductor 9/21/2015

Semiconductor 9/21/2015 Semiconductor Electronics 9/21/2015 Starting simple the diode. The diode is one of the simplest semiconductor devices. It is comprised of two layers of semiconductor. One is impregnated with an electron

More information

Administrative Notes. DC Motors; Torque and Gearing; Encoders; Motor Control. Today. Early DC Motors. Friday 1pm: Communications lecture

Administrative Notes. DC Motors; Torque and Gearing; Encoders; Motor Control. Today. Early DC Motors. Friday 1pm: Communications lecture At Actuation: ti DC Motors; Torque and Gearing; Encoders; Motor Control RSS Lecture 3 Wednesday, 11 Feb 2009 Prof. Seth Teller Administrative Notes Friday 1pm: Communications lecture Discuss: writing up

More information

Citrus Circuits Fall Workshop Series. Roborio and Sensors. Paul Ngo and Ellie Hass

Citrus Circuits Fall Workshop Series. Roborio and Sensors. Paul Ngo and Ellie Hass Citrus Circuits Fall Workshop Series Roborio and Sensors Paul Ngo and Ellie Hass Introduction to Sensors Sensor: a device that detects or measures a physical property and records, indicates, or otherwise

More information

OPENCOCKPITS IOCard USBSTEPPER INSTALLATION AND USER S MANUAL

OPENCOCKPITS IOCard USBSTEPPER INSTALLATION AND USER S MANUAL OPENCOCKPITS IOCard USBSTEPPER INSTALLATION AND USER S MANUAL INTRODUCCION This card allows to manage up to 3 stepper motors, both unipolar as bipolar. Also, this card can easily control the steppers motors

More information

3DM phase Digital Stepper Drive

3DM phase Digital Stepper Drive 3DM2283 3-phase Digital Stepper Drive 150-220VAC, 0.5-8.2A peak, Auto-configuration, Low Noise Anti-Resonance provides optimal torque and nulls mid-range instability Motor auto-identification and parameter

More information

PMSM Control Using a Three-Phase, Six-Step 120 Modulation Inverter

PMSM Control Using a Three-Phase, Six-Step 120 Modulation Inverter Exercise 1 PMSM Control Using a Three-Phase, Six-Step 120 Modulation Inverter EXERCISE OBJECTIVE When you have completed this exercise, you will be familiar with six-step 120 modulation. You will know

More information

Zig-Bee Robotic Panzer

Zig-Bee Robotic Panzer International Journal for Modern Trends in Science and Technology Volume: 03, Special Issue No: 02, March 2017 ISSN: 2455-3778 http://www.ijmtst.com Zig-Bee Robotic Panzer P.Bose Babu 1 V.Madhu Babu 2

More information

MEGORAS Technology - TB6600 STEP MOTOR Driver.

MEGORAS Technology - TB6600 STEP MOTOR Driver. MEGORAS Technology - TB6600 STEP MOTOR Driver MEGORAS Technology - TB6600 STEP MOTOR Driver BOM SR. QNTY. REF. DESC. 1 6 CN1,CN2,CN3,CN4,CN5,CN8 2 PIN SCREW TERMINAL 2 1 CN6 3 PIN HEADER CONNECTOR 3 1

More information

User's Manual. Step Motor Driver

User's Manual. Step Motor Driver 9/7/99 7080.ai User's Manual 7080 Step Motor Driver Applied Motion Products, Inc. 0 Westridge Drive Watsonville, CA 95076 Tel (8) 76-6555 (800) 55-609 Fax (8) 76-65 s drives controls Technical Specifications

More information

The Mechatronics Sorter Team Members John Valdez Hugo Ramirez Peter Verbiest Quyen Chu

The Mechatronics Sorter Team Members John Valdez Hugo Ramirez Peter Verbiest Quyen Chu The Mechatronics Sorter Team Members John Valdez Hugo Ramirez Peter Verbiest Quyen Chu Professor B.J. Furman Course ME 106 Date 12.9.99 Table of Contents Description Section Title Page - Table of Contents

More information

School of Engineering Mechatronics Engineering Department. Experim. ment no. 1

School of Engineering Mechatronics Engineering Department. Experim. ment no. 1 University of Jordan School of Engineering Mechatronics Engineering Department 2010 Mechatronics System Design Lab Experim ment no. 1 PRINCIPLES OF SWITCHING Copyrights' are held by : Eng. Ala' Bata &

More information

Stepper Motors in C. Unipolar (5 lead) stepper motorr. $1.95 from 100 steps per rotation. 24V / 160mA / 600 gm cm holding 160mA

Stepper Motors in C. Unipolar (5 lead) stepper motorr. $1.95 from  100 steps per rotation. 24V / 160mA / 600 gm cm holding 160mA U tepper Motors ugust 22, 2017 tepper Motors in Unipolar (5 lead) stepper motorr. $1.95 from www.mpja.com 100 steps per rotation. 24V / 160m / 600 gm cm holding torque @ 160m stepper motor is a digital

More information

CIS009-2, Mechatronics Signals & Motors

CIS009-2, Mechatronics Signals & Motors CIS009-2, Signals & Motors Bedfordshire 13 th December 2012 Outline 1 2 3 4 5 6 7 8 3 Signals Two types of signals exist: 4 Bedfordshire 52 Analogue signal In an analogue signal voltages and currents continuously

More information

Feedback Devices. By John Mazurkiewicz. Baldor Electric

Feedback Devices. By John Mazurkiewicz. Baldor Electric Feedback Devices By John Mazurkiewicz Baldor Electric Closed loop systems use feedback signals for stabilization, speed and position information. There are a variety of devices to provide this data, such

More information

Motors and Servos Part 2: DC Motors

Motors and Servos Part 2: DC Motors Motors and Servos Part 2: DC Motors Back to Motors After a brief excursion into serial communication last week, we are returning to DC motors this week. As you recall, we have already worked with servos

More information

The Allen-Bradley Servo Interface Module (Cat. No SF1) when used with the Micro Controller (Cat. No UC1) can control single axis

The Allen-Bradley Servo Interface Module (Cat. No SF1) when used with the Micro Controller (Cat. No UC1) can control single axis Table of Contents The Allen-Bradley Servo Interface Module (Cat. No. 1771-SF1) when used with the Micro Controller (Cat. No. 1771-UC1) can control single axis positioning systems such as found in machine

More information

3. What is the difference between Switched Reluctance motor and variable reluctance stepper motor?(may12)

3. What is the difference between Switched Reluctance motor and variable reluctance stepper motor?(may12) EE6703 SPECIAL ELECTRICAL MACHINES UNIT III SWITCHED RELUCTANCE MOTOR PART A 1. What is switched reluctance motor? The switched reluctance motor is a doubly salient, singly excited motor. This means that

More information

Initial Power-Up Tests

Initial Power-Up Tests Initial Power-Up Tests The signal generator will not function properly until the blank EEPROM has been programmed with a set of default values. The CPU will accomplish this task if the RxTx control line

More information

ARDUINO BASED DC MOTOR SPEED CONTROL

ARDUINO BASED DC MOTOR SPEED CONTROL ARDUINO BASED DC MOTOR SPEED CONTROL Student of Electrical Engineering Department 1.Hirdesh Kr. Saini 2.Shahid Firoz 3.Ashutosh Pandey Abstract The Uno is a microcontroller board based on the ATmega328P.

More information

Exercise 3-3. Manual Reversing Starters EXERCISE OBJECTIVE DISCUSSION. Build manual reversing starters and understand how they work.

Exercise 3-3. Manual Reversing Starters EXERCISE OBJECTIVE DISCUSSION. Build manual reversing starters and understand how they work. Exercise 3-3 Manual Reversing Starters EXERCISE OBJECTIVE Build manual reversing starters and understand how they work. DISCUSSION Reversing motor rotation direction is a common operation in industrial

More information

Lecture #19 Digital To Analog, PWM, Stepper Motors Embedded System Engineering Philip Koopman Monday, 28-March-2016

Lecture #19 Digital To Analog, PWM, Stepper Motors Embedded System Engineering Philip Koopman Monday, 28-March-2016 Lecture #19 Digital To Analog, PWM, Stepper Motors 18-348 Embedded System Engineering Philip Koopman Monday, 28-March-2016 Electrical& Computer ENGINEERING Copyright 2006-2016, Philip Koopman, All Rights

More information

Voltage-Versus-Speed Characteristic of a Wind Turbine Generator

Voltage-Versus-Speed Characteristic of a Wind Turbine Generator Exercise 1 Voltage-Versus-Speed Characteristic of a Wind Turbine Generator EXERCISE OBJECTIVE When you have completed this exercise, you will be familiar with the principle of electromagnetic induction.

More information

Four Quadrant Speed Control of DC Motor with the Help of AT89S52 Microcontroller

Four Quadrant Speed Control of DC Motor with the Help of AT89S52 Microcontroller Four Quadrant Speed Control of DC Motor with the Help of AT89S52 Microcontroller Rahul Baranwal 1, Omama Aftab 2, Mrs. Deepti Ojha 3 1,2, B.Tech Final Year (Electronics and Communication Engineering),

More information

LS7362 BRUSHLESS DC MOTOR COMMUTATOR / CONTROLLER

LS7362 BRUSHLESS DC MOTOR COMMUTATOR / CONTROLLER LS7362 BRUSHLESS DC MOTOR COMMUTATOR / CONTROLLER FEATURES: Speed control by Pulse Width Modulating (PWM) only the low-side drivers reduces switching losses in level converter circuitry for high voltage

More information

AB-44 APPLICATION BRIEF. Using the 87C51GB SHARON LOPEZ APPLICATIONS ENGINEER. March Order Number

AB-44 APPLICATION BRIEF. Using the 87C51GB SHARON LOPEZ APPLICATIONS ENGINEER. March Order Number APPLICATION BRIEF Using the 87C51GB SHARON LOPEZ APPLICATIONS ENGINEER March 1991 Order Number 270957-001 Information in this document is provided in connection with Intel products Intel assumes no liability

More information

Ocean Controls KT-5198 Dual Bidirectional DC Motor Speed Controller

Ocean Controls KT-5198 Dual Bidirectional DC Motor Speed Controller Ocean Controls KT-5198 Dual Bidirectional DC Motor Speed Controller Microcontroller Based Controls 2 DC Motors 0-5V Analog, 1-2mS pulse or Serial Inputs for Motor Speed 10KHz, 1.25KHz or 156Hz selectable

More information

Datasheet of the Easy Servo Drive ES-D VAC or VDC, 8.2A Peak, Close-loop, No Tuning. Version

Datasheet of the Easy Servo Drive ES-D VAC or VDC, 8.2A Peak, Close-loop, No Tuning. Version Datasheet of the Easy Servo Drive ES-D1008 0-70 V or 30-100VDC, 8.A Peak, Close-loop, No Tuning Version 0.1.0 http://www.leadshine.com Features Step and direction control Closed position loop for no loss

More information

of PWM is explained here. Consider a simple circuit as shown in figure below. DC Motor Speed Control using 555 Timer IC. The DC MOTOR SPEED.

of PWM is explained here. Consider a simple circuit as shown in figure below. DC Motor Speed Control using 555 Timer IC. The DC MOTOR SPEED. How To Make A Dc Motor Speed Controller Circuit Using Two 555 Ics DC Motor PWM Speed Control Using 555 IC. The 555 is ubiquitous and can be used as simple PWM speed control. Circuit diagram: DC Motor PWM

More information

Computer Numeric Control

Computer Numeric Control Computer Numeric Control TA202A 2017-18(2 nd ) Semester Prof. J. Ramkumar Department of Mechanical Engineering IIT Kanpur Computer Numeric Control A system in which actions are controlled by the direct

More information

Speed Control Of Transformer Cooler Control By Using PWM

Speed Control Of Transformer Cooler Control By Using PWM Speed Control Of Transformer Cooler Control By Using PWM Bhushan Rakhonde 1, Santosh V. Shinde 2, Swapnil R. Unhone 3 1 (assistant professor,department Electrical Egg.(E&P), Des s Coet / S.G.B.A.University,

More information