H-bridge for DC motor control

Size: px
Start display at page:

Download "H-bridge for DC motor control"

Transcription

1 H-bridge for DC motor control Directional control Control algorithm for this h-bridge circuit A B 0 0 Stop 0 1 Forward 1 0 Reverse 1 1 Prohibited This circuit has the advantage of small voltage drop due to the transistors, however braking is not available as transistors Q 1 and Q 2 cannot be turned simultaneously, so as Q 3 and Q 4. Turning on transistors Q 1 and Q 2 at the same time (both input A and B are high), will turn on transistors Q 3 and Q 4 at the same time. And that means short-circuiting through transistors Q 1 and Q 3 as well as through transistorsq 2 and Q 4. This will damage all 4 transistors

2 Speed Control To control the speed of a d.c. motor we need a variable voltage d.c. power source. While a variable resistor can derive a variable d.c.voltage from a fixed d.c. source voltage it is not a efficient way of controlling d.c. voltage as a portion of the energy is converted to heat by the resistor. Pulse Width Modulation (PWM) If you take a 12v motor and switch on the power to it, the motor will start to speed up: motors do not respond immediately so it will take a small time to reach full speed. If we switch the power off sometime before the motor reaches full speed, then the motor will start to slow down. If we switch the power on and off quickly enough, the motor will run at some speed part way between zero and full speed. This is exactly what a p.w.m. controller does: it switches the motor on in a series of pulses. To control the motor speed it varies (modulates) the width of the pulses - hence Pulse Width Modulation. A pulse width modulator (PWM) is a device that may be used as an efficient light dimmer or DC motor speed controller. A PWM circuit works by making a square wave with a variable on-to-off ratio, the average on time may be varied from 0 to 100 percent. In this manner, a variable amount of power is transferred to the load. The main advantage of a PWM circuit over a resistive power controller is the efficiency, at a 50% level, the PWM will use about 50% of full power, almost all of which is transferred to the load, a resistive controller at 50% load power would consume about 71% of full power, 50% of the power goes to the load and the other 21% is wasted heating the series resistor The effective voltage developed depends on the time-on and time-off ratio.

3 Pulse Width Modulation is usually achieved by using electronic timing circuits or using in-built timing circuits of microprocessors. PWM Circuit Motor We can simulate a PWM operation by using the parallel port and the h-bridge circuit we have tried on. Control algorithm for this h-bridge circuit A B 0 0 Stop 0 1 Forward 1 0 Reverse 1 1 Prohibited By setting input A of the h-bridge at zero and switching input B on and off we can have PWM for the forward rotation of a motor. By setting input B of the h-bridge at zero and switching input A on and off we can have PWM for the reverse rotation of a motor. Pin 2 A Pin 3 Pin 18 ~ 25 B H-bridge Circuit Parallel port cable Use the data register (888) of the parallel port to set the inputs (A and B) of the h- bridge

4 To turn on and off the motor in the forward motion, the data of 0 and 2 have to be sent alternatively to the data register (888) To turn on and off the motor in the reverse motion, the data of 0 and 1 have to be sent alternatively to the data register (888). Qbasic program to Simulate PWM DIM direction AS STROMG DIM keypressed AS STRING DIM time_on AS INTEGER DIM time_off AS INTEGER DIM timecount AS INTEGER Direction = F time_on = 1000 time_off = 1000 Start: Keypressed = INKEY$ IF keypressed = + THEN time_on = time_on IF keypressed = - THEN Time_off = time_of IF keypressed = F OR keypress = R OR keypressed = H THEN direction = keypressed IF direction = F THEN gosub Forward IF direction = R THEN gosub Reverse OUT 888,0 Forward: OUT 888,2 gosub Ontime OUT 888,0 gosub Offtime Reverse: OUT 888,1 gosub Ontime OUT 888,0 gosub Offtime Ontime: FOR timecount = 1 TO time_on NEXT Offtime: FOR timecount = 1 TO time_off NEXT Remark this is not part of the program the codes underlined in the program is supposed to be on one line GOTO Start

5 Important points of the project 1. The h-bridge should have free-wheeling diode incorporated to protect the transistors from back emf of the motor during switching 2. Qbasic allows control in steps of integer seconds through the command SLEEP. The minimum time to turn on or turn off the motor would be 1 second if the SLEEP command is used. And this will cause the motor running intermittently. To use custom subroutines of delay can partly solve the problem but there are drawbacks: The delay routine will be dependent on the speed of the processor of the computer therefore there is no way of accurately controlling the on time and off time. The looping of the main program also add extra delay to the on and off times. 3. If the circuit does not wok properly, check that The ground of the h-bridge and the ground of the parallel port are connect. The 2 transistors connected to +5V are PNP transistors (e.g. BC327) and the other 4 transistors are NPN transistors (e.g. BC337) The pins of transistors are connected correctly. Remember the word CLER when you look down onto your circuit with the flat side of the transistor facing you. (Collector Left & Emitter-Right). This is true only for transistors with the TO-92 package. Check your program, particularly the spelling of the variables like direction, time_on, time_off, etc.

6

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

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

Electronics, Sensors, and Actuators

Electronics, Sensors, and Actuators Electronics, Sensors, and Actuators 4/14/15 David Flicker BE107 Overview Basic electronics and components Sensors Actuators Electronics 101 Voltage, V, is fundamentally how much energy is gained or lost

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

Understanding the Arduino to LabVIEW Interface

Understanding the Arduino to LabVIEW Interface E-122 Design II Understanding the Arduino to LabVIEW Interface Overview The Arduino microcontroller introduced in Design I will be used as a LabVIEW data acquisition (DAQ) device/controller for Experiments

More information

Basic Electronics Course Part 2

Basic Electronics Course Part 2 Basic Electronics Course Part 2 Simple Projects using basic components Including Transistors & Pots Following are instructions to complete several electronic exercises Image 7. Components used in Part

More information

Transistor Characteristics

Transistor Characteristics Transistor Characteristics Topics covered in this presentation: Transistor Construction Transistor Operation Transistor Characteristics 1 of 15 The Transistor The transistor is a semiconductor device that

More information

Programmable Control Introduction

Programmable Control Introduction Programmable Control Introduction By the end of this unit you should be able to: Give examples of where microcontrollers are used Recognise the symbols for different processes in a flowchart Construct

More information

EXPERIMENT 5 CURRENT AND VOLTAGE CHARACTERISTICS OF BJT

EXPERIMENT 5 CURRENT AND VOLTAGE CHARACTERISTICS OF BJT EXPERIMENT 5 CURRENT AND VOLTAGE CHARACTERISTICS OF BJT 1. OBJECTIVES 1.1 To practice how to test NPN and PNP transistors using multimeter. 1.2 To demonstrate the relationship between collector current

More information

BASIC-Tiger Application Note No. 059 Rev Motor control with H bridges. Gunther Zielosko. 1. Introduction

BASIC-Tiger Application Note No. 059 Rev Motor control with H bridges. Gunther Zielosko. 1. Introduction Motor control with H bridges Gunther Zielosko 1. Introduction Controlling rather small DC motors using micro controllers as e.g. BASIC-Tiger are one of the more common applications of those useful helpers.

More information

Introduction to Arduino HW Labs

Introduction to Arduino HW Labs Introduction to Arduino HW Labs In the next six lab sessions, you ll attach sensors and actuators to your Arduino processor This session provides an overview for the devices LED indicators Text/Sound Output

More information

Control System for Lamp Luminosity. Ian Johnson, Tyler McCracken, Scott Freund EE 554 November 29, 2010

Control System for Lamp Luminosity. Ian Johnson, Tyler McCracken, Scott Freund EE 554 November 29, 2010 Control System for Lamp Luminosity Ian Johnson, Tyler McCracken, Scott Freund EE 554 November 29, 2010 Table of Contents Abstract...ii Introduction...1 Procedure...1 Results/Discussion...3 Conclusion...4

More information

Chapter 6: Transistors and Gain

Chapter 6: Transistors and Gain I. Introduction Chapter 6: Transistors and Gain This week we introduce the transistor. Transistors are three-terminal devices that can amplify a signal and increase the signal s power. The price is that

More information

Project 3 Build a 555-Timer

Project 3 Build a 555-Timer Project 3 Build a 555-Timer For this project, each group will simulate and build an astable multivibrator. However, instead of using the 555 timer chip, you will have to use the devices you learned about

More information

Drives 101 Lesson 3. Parts of a Variable Frequency Drive (VFD)

Drives 101 Lesson 3. Parts of a Variable Frequency Drive (VFD) Drives 101 Lesson 3 Parts of a Variable Frequency Drive (VFD) This lesson covers the parts that make up the Variable Frequency Drive (VFD) and describes the basic operation of each part. Here is the basics

More information

ECE 5670/6670 Project. Brushless DC Motor Control with 6-Step Commutation. Objectives

ECE 5670/6670 Project. Brushless DC Motor Control with 6-Step Commutation. Objectives ECE 5670/6670 Project Brushless DC Motor Control with 6-Step Commutation Objectives The objective of the project is to build a circuit for 6-step commutation of a brushless DC motor and to implement control

More information

The NMIH-0050 H-Bridge

The NMIH-0050 H-Bridge The NMIH-0050 H-Bridge Features: 5 A continuous, 6 A peak current Supply voltages from 5.3V up to 40V Terminal block for power / motor Onboard LEDs for motor operation/direction Onboard LED for motor supply

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

Directions for Wiring and Using The GEARS II (2) Channel Combination Controllers

Directions for Wiring and Using The GEARS II (2) Channel Combination Controllers Directions for Wiring and Using The GEARS II (2) Channel Combination Controllers PWM Input Signal Cable for the Valve Controller Plugs into the RC Receiver or Microprocessor Signal line. White = PWM Input

More information

' Turn off A/D converters (thereby allowing use of pins for I/O) ANSEL = 0

' Turn off A/D converters (thereby allowing use of pins for I/O) ANSEL = 0 dc_motor.bas (PIC16F88 microcontroller) Design Example Position and Speed Control of a dc Servo Motor. The user interface includes a keypad for data entry and an LCD for text messages. The main menu offers

More information

LM317T Variable Voltage Regulator

LM317T Variable Voltage Regulator LM317T Variable Voltage Regulator The LM317T is a adjustable 3 terminal positive voltage regulator capable of supplying in excess of 1.5 amps over an output range of 1.25 to 37 volts. The device also has

More information

DESIGN OF A TWO DIMENSIONAL MICROPROCESSOR BASED PARABOLIC ANTENNA CONTROLLER

DESIGN OF A TWO DIMENSIONAL MICROPROCESSOR BASED PARABOLIC ANTENNA CONTROLLER DESIGN OF A TWO DIMENSIONAL MICROPROCESSOR BASED PARABOLIC ANTENNA CONTROLLER Veysel Silindir, Haluk Gözde, Gazi University, Electrical And Electronics Engineering Department, Ankara, Turkey 4 th Main

More information

CHAPTER SEMI-CONDUCTING DEVICES QUESTION & PROBLEM SOLUTIONS

CHAPTER SEMI-CONDUCTING DEVICES QUESTION & PROBLEM SOLUTIONS Solutions--Ch. 15 (Semi-conducting Devices) CHAPTER 15 -- SEMI-CONDUCTING DEVICES QUESTION & PROBLEM SOLUTIONS 15.1) What is the difference between a conductor and a semi-conductor? Solution: A conductor

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

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

INTEGRATED CIRCUITS. AN1221 Switched-mode drives for DC motors. Author: Lester J. Hadley, Jr.

INTEGRATED CIRCUITS. AN1221 Switched-mode drives for DC motors. Author: Lester J. Hadley, Jr. INTEGRATED CIRCUITS Author: Lester J. Hadley, Jr. 1988 Dec Author: Lester J. Hadley, Jr. ABSTRACT The purpose of this paper is to demonstrate the use of integrated switched-mode controllers, generally

More information

EE 314 Spring 2003 Microprocessor Systems

EE 314 Spring 2003 Microprocessor Systems EE 314 Spring 2003 Microprocessor Systems Laboratory Project #9 Closed Loop Control Overview and Introduction This project will bring together several pieces of software and draw on knowledge gained in

More information

LAB 1 AN EXAMPLE MECHATRONIC SYSTEM: THE FURBY

LAB 1 AN EXAMPLE MECHATRONIC SYSTEM: THE FURBY LAB 1 AN EXAMPLE MECHATRONIC SYSTEM: THE FURBY Objectives Preparation Tools To see the inner workings of a commercial mechatronic system and to construct a simple manual motor speed controller and current

More information

Programming 2 Servos. Learn to connect and write code to control two servos.

Programming 2 Servos. Learn to connect and write code to control two servos. Programming 2 Servos Learn to connect and write code to control two servos. Many students who visit the lab and learn how to use a Servo want to use 2 Servos in their project rather than just 1. This lesson

More information

EXPERIMENT 12: SIMULATION STUDY OF DIFFERENT BIASING CIRCUITS USING NPN BJT

EXPERIMENT 12: SIMULATION STUDY OF DIFFERENT BIASING CIRCUITS USING NPN BJT EXPERIMENT 12: SIMULATION STUDY OF DIFFERENT BIASING CIRCUITS USING NPN BJT AIM: 1) To study different BJT DC biasing circuits 2) To design voltage divider bias circuit using NPN BJT SOFTWARE TOOL: PC

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

Experiment #3: Micro-controlled Movement

Experiment #3: Micro-controlled Movement Experiment #3: Micro-controlled Movement So we re already on Experiment #3 and all we ve done is blinked a few LED s on and off. Hang in there, something is about to move! As you know, an LED is an output

More information

Experiment No. 6 Output Characteristic of Transistor

Experiment No. 6 Output Characteristic of Transistor Experiment No. 6 Output Characteristic of Transistor Object: To examine the output characteristic of transistor. Apparatus: 1. Two DC power supply. 2. Three AVOmeters. 3. Transistor 2N2222, Resistor 1

More information

As you can see, by varying the turn-on point, the amount of power getting to the bulb is adjustable, and hence the light output can be controlled.

As you can see, by varying the turn-on point, the amount of power getting to the bulb is adjustable, and hence the light output can be controlled. Digital Light Dimming Circuit Some light dimmer history Light dimming is based on adjusting the voltage which gets to the lamp. Light dimming has been possible for many decades by using adjustable power

More information

ECE 440 Lecture 29 : Introduction to the BJT-I Class Outline:

ECE 440 Lecture 29 : Introduction to the BJT-I Class Outline: ECE 440 Lecture 29 : Introduction to the BJT-I Class Outline: Narrow-Base Diode BJT Fundamentals BJT Amplification Things you should know when you leave Key Questions How does the narrow-base diode multiply

More information

INTEGRATED CIRCUITS. AN120 An overview of switched-mode power supplies Dec

INTEGRATED CIRCUITS. AN120 An overview of switched-mode power supplies Dec INTEGRATED CIRCUITS An overview of switched-mode power supplies 1988 Dec Conceptually, three basic approaches exist for obtaining regulated DC voltage from an AC power source. These are: Shunt regulation

More information

Wednesday 7 June 2017 Afternoon Time allowed: 1 hour 30 minutes

Wednesday 7 June 2017 Afternoon Time allowed: 1 hour 30 minutes Please write clearly in block capitals. Centre number Candidate number Surname Forename(s) Candidate signature A-level ELECTRONICS Unit 4 Programmable Control Systems Wednesday 7 June 2017 Afternoon Time

More information

For this exercise, you will need a partner, an Arduino kit (in the plastic tub), and a laptop with the Arduino programming environment.

For this exercise, you will need a partner, an Arduino kit (in the plastic tub), and a laptop with the Arduino programming environment. Physics 222 Name: Exercise 6: Mr. Blinky This exercise is designed to help you wire a simple circuit based on the Arduino microprocessor, which is a particular brand of microprocessor that also includes

More information

The Motor sketch. One Direction ON-OFF DC Motor

The Motor sketch. One Direction ON-OFF DC Motor One Direction ON-OFF DC Motor The DC motor in your Arduino kit is the most basic of electric motors and is used in all types of hobby electronics. When current is passed through, it spins continuously

More information

Autonomous Robot Control Circuit

Autonomous Robot Control Circuit Autonomous Robot Control Circuit - Theory of Operation - Written by: Colin Mantay Revision 1.07-06-04 Copyright 2004 by Colin Mantay No part of this document may be copied, reproduced, stored electronically,

More information

The first transistor. (Courtesy Bell Telephone Laboratories.)

The first transistor. (Courtesy Bell Telephone Laboratories.) Fig. 3.1 The first transistor. (Courtesy Bell Telephone Laboratories.) Fig. 3.2 Types of transistors: (a) pnp; (b) npn. : (a) pnp; : (b) npn Fig. 3.3 Forward-biased junction of a pnp transistor. Fig. 3.4

More information

ADVANCED SAFETY APPLICATIONS FOR RAILWAY CROSSING

ADVANCED SAFETY APPLICATIONS FOR RAILWAY CROSSING ADVANCED SAFETY APPLICATIONS FOR RAILWAY CROSSING 1 HARSHUL BALANI, 2 CHARU GUPTA, 3 KRATIKA SUKHWAL 1,2,3 B.TECH (ECE), Poornima College Of Engineering, RTU E-mail; 1 harshul.balani@gmail.com, 2 charu95g@gmail.com,

More information

Exercise 5: PWM and Control Theory

Exercise 5: PWM and Control Theory Exercise 5: PWM and Control Theory Overview In the previous sessions, we have seen how to use the input capture functionality of a microcontroller to capture external events. This functionality can also

More information

Phys Lecture 3. Power circuits how to control your motors Noise and Shielding

Phys Lecture 3. Power circuits how to control your motors Noise and Shielding Phys 253 - Lecture 3 Power circuits how to control your motors Noise and Shielding Digital-to-Analog Conversion PWM 2 D/A Conversion and power circuits When would you like to produce an output signal that

More information

PICAXE TUTORIALS. 5. Picaxe Motor speed & direction control. NOTE: All these programs are for battery operated locos.

PICAXE TUTORIALS. 5. Picaxe Motor speed & direction control. NOTE: All these programs are for battery operated locos. PICAXE TUTORIALS 5. Picaxe Motor speed & direction control NOTE: All these programs are for battery operated locos. The Picaxe is ideally suited to drive a FET (or MOSFET) to control motor speed using

More information

Computer Controlled Curve Tracer

Computer Controlled Curve Tracer Computer Controlled Curve Tracer Christopher Curro The Cooper Union New York, NY Email: chris@curro.cc David Katz The Cooper Union New York, NY Email: katz3@cooper.edu Abstract A computer controlled curve

More information

' The PicBasic Pro Compiler Manual is on line at: '

' The PicBasic Pro Compiler Manual is on line at: ' ---------------Title-------------- File...4331_encoder4.pbp Started...1/10/10 Microcontroller Used: Microchip Technology 18F4331 Available at: http://www.microchipdirect.com/productdetails.aspx?category=pic18f4331

More information

WEEK 5 Remembering Long Lists Using EEPROM

WEEK 5 Remembering Long Lists Using EEPROM WEEK 5 Remembering Long Lists Using EEPROM EEPROM stands for Electrically Erasable Programmable Read Only Memory. It is a small black chip on the BASIC Stamp II module labeled 24LC16B. It is used to store

More information

b b Fig. 1 Transistor symbols

b b Fig. 1 Transistor symbols TRANSISTORS Transistors have three terminals which are referred to as emitter (e), base (b) and collector (c). Fig 1 shows the symbols used for the two types of transistors in common use. c c b b e e npn

More information

EE-110 Introduction to Engineering & Laboratory Experience Saeid Rahimi, Ph.D. Labs Introduction to Arduino

EE-110 Introduction to Engineering & Laboratory Experience Saeid Rahimi, Ph.D. Labs Introduction to Arduino EE-110 Introduction to Engineering & Laboratory Experience Saeid Rahimi, Ph.D. Labs 10-11 Introduction to Arduino In this lab we will introduce the idea of using a microcontroller as a tool for controlling

More information

DESIGN AND DEVELOPMENT OF A MICROCONTROLLER BASED WIRELESS SECURITY ACCESS SYSTEM

DESIGN AND DEVELOPMENT OF A MICROCONTROLLER BASED WIRELESS SECURITY ACCESS SYSTEM DESIGN AND DEVELOPMENT OF A MICROCONTROLLER ASED WIRELESS SECURITY ACCESS SYSTEM 1 Adewale A. A., 2 Abdulkareem A., 3 Agbetuyi A. F., 4 Dike Ike Department of Electrical and Information Engineering, Covenant

More information

CHAPTER 2 PID CONTROLLER BASED CLOSED LOOP CONTROL OF DC DRIVE

CHAPTER 2 PID CONTROLLER BASED CLOSED LOOP CONTROL OF DC DRIVE 23 CHAPTER 2 PID CONTROLLER BASED CLOSED LOOP CONTROL OF DC DRIVE 2.1 PID CONTROLLER A proportional Integral Derivative controller (PID controller) find its application in industrial control system. It

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

Transistors and Applications

Transistors and Applications Chapter 17 Transistors and Applications DC Operation of Bipolar Junction Transistors (BJTs) The bipolar junction transistor (BJT) is constructed with three doped semiconductor regions separated by two

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

HEATHKIT HD-1410 ELECTRONICKEYER

HEATHKIT HD-1410 ELECTRONICKEYER HEATHKIT HD-1410 ELECTRONICKEYER INTRODUCTION The HD-1410 is a compact Electronic Keyer with a built in AC power supply, mechanical paddles, sidetone oscillator and speaker in one package. It is designed

More information

Discrete Op-Amp Kit MitchElectronics 2019

Discrete Op-Amp Kit MitchElectronics 2019 Discrete Op-Amp Kit MitchElectronics 2019 www.mitchelectronics.co.uk CONTENTS Introduction 3 Schematic 4 How It Works 5 Materials 9 Construction 10 Important Information 11 Page 2 INTRODUCTION Even if

More information

Bi-Directional DC Motor Speed Controller 5-32Vdc (3166v2)

Bi-Directional DC Motor Speed Controller 5-32Vdc (3166v2) General Guidelines for Electronic Kits and Assembled Modules Thank you for choosing one of our products. Please take some time to carefully read the important information below concerning use of this product.

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

Electronic Components

Electronic Components Electronic Components Arduino Uno Arduino Uno is a microcontroller (a simple computer), it has no way to interact. Building circuits and interface is necessary. Battery Snap Battery Snap is used to connect

More information

12V Dimmer Kit, version 2

12V Dimmer Kit, version 2 12V Dimmer Kit, version 2 User Manual Description The 12V Dimmer Kit V2 is an especially efficient PWM (pulse-width modulation) controller for 12V loads up to 60 watts. It features a single dial control

More information

Converting a Hobby Servomotor to a DC Gearhead Motor

Converting a Hobby Servomotor to a DC Gearhead Motor Converting a Hobby Servomotor to a DC Gearhead Motor Ted Pavlic December 15, 2004 Summary While there are many resources that provide instruction for modifying a hobby servomotor for continuous rotation,

More information

Micro Controller Based Ac Power Controller

Micro Controller Based Ac Power Controller Wireless Sensor Network, 9, 2, 61-121 doi:1.4236/wsn.9.112 Published Online July 9 (http://www.scirp.org/journal/wsn/). Micro Controller Based Ac Power Controller S. A. HARI PRASAD 1, B. S. KARIYAPPA 1,

More information

Laboratory 6 Diodes and Transistors

Laboratory 6 Diodes and Transistors Laboratory 6 page 1 of 6 Laboratory 6 Diodes and Transistors Introduction In this lab, you will build and test circuits using diodes and transistors. You will use a number of different types of diodes,

More information

Example KodeKLIX Circuits

Example KodeKLIX Circuits Example KodeKLIX Circuits Build these circuits to use with the pre-installed* code * The code is available can be re-downloaded to the SnapCPU at any time. The RGB LED will cycle through 6 colours Pressing

More information

Home CSP Inc. Trackers and electronics for home solar energy

Home CSP Inc. Trackers and electronics for home solar energy Home CSP Inc. Trackers and electronics for home solar energy www.homecsp.com csp@homecsp.com TinyTracker version 1.06 reve Thanks for purchasing your TinyTracker from Home CSP Inc. The TinyTracker provides

More information

Transistor Biasing. DC Biasing of BJT. Transistor Biasing. Transistor Biasing 11/23/2018

Transistor Biasing. DC Biasing of BJT. Transistor Biasing. Transistor Biasing 11/23/2018 Transistor Biasing DC Biasing of BJT Satish Chandra Assistant Professor Department of Physics P P N College, Kanpur www.satish0402.weebly.com A transistors steady state of operation depends a great deal

More information

Shown here is a schematic diagram for a real inverter circuit, complete with all necessary components for efficient and reliable operation:

Shown here is a schematic diagram for a real inverter circuit, complete with all necessary components for efficient and reliable operation: The NOT gate The single-transistor inverter circuit illustrated earlier is actually too crude to be of practical use as a gate. Real inverter circuits contain more than one transistor to maximize voltage

More information

Built-in soft-start feature. Up-Slope and Down-Slope. Power-Up safe start feature. Motor will only start if pulse of 1.5ms is detected.

Built-in soft-start feature. Up-Slope and Down-Slope. Power-Up safe start feature. Motor will only start if pulse of 1.5ms is detected. Thank You for purchasing our TRI-Mode programmable DC Motor Controller. Our DC Motor Controller is the most flexible controller you will find. It is user-programmable and covers most applications. This

More information

DISCUSSION The best way to test a transistor is to connect it in a circuit that uses the transistor.

DISCUSSION The best way to test a transistor is to connect it in a circuit that uses the transistor. Exercise 1: EXERCISE OBJECTIVE When you have completed this exercise, you will be able to test a transistor by forward biasing and reverse biasing the junctions. You will verify your results with an ohmmeter.

More information

HB-25 Motor Controller (#29144)

HB-25 Motor Controller (#29144) Web Site: www.parallax.com Forums: forums.parallax.com Sales: sales@parallax.com Technical: support@parallax.com Office: (916) 624-8333 Fax: (916) 624-8003 Sales: (888) 512-1024 Tech Support: (888) 997-8267

More information

Need Analog Output from the Stamp? Dial it in with a Digital Potentiometer Using the DS1267 potentiometer as a versatile digital-to-analog converter

Need Analog Output from the Stamp? Dial it in with a Digital Potentiometer Using the DS1267 potentiometer as a versatile digital-to-analog converter Column #18, August 1996 by Scott Edwards: Need Analog Output from the Stamp? Dial it in with a Digital Potentiometer Using the DS1267 potentiometer as a versatile digital-to-analog converter GETTING AN

More information

ZX-SERVO16. Features : Packing List. Before You Begin

ZX-SERVO16. Features : Packing List. Before You Begin Features : ZX-SERVO16 Runtime Selectable Baud rate. 2400 to 38k4 Baud. 16 Servos. All servos driven simultaneously all of the time. 180 degrees of rotation. Servo Ramping. 63 ramp rates (0.75-60 seconds)

More information

1. The decimal number 62 is represented in hexadecimal (base 16) and binary (base 2) respectively as

1. The decimal number 62 is represented in hexadecimal (base 16) and binary (base 2) respectively as BioE 1310 - Review 5 - Digital 1/16/2017 Instructions: On the Answer Sheet, enter your 2-digit ID number (with a leading 0 if needed) in the boxes of the ID section. Fill in the corresponding numbered

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

Figure 1. Block diagram of system incorporating power amplification.

Figure 1. Block diagram of system incorporating power amplification. It is often necessary use a circuit which has very low power capabilities to drive a system which has relatively high power requirements. This is typically accomplished by using an amplifier as an intermediate

More information

LAB #10: Analog Interfacing

LAB #10: Analog Interfacing CS/EE 3720 Handout #10 Spring 2004 Myers LAB #10: Analog Interfacing You must checkoff this lab during your lab section of the week of April 19th. Lab writeup is due in class on April 27th. NO LATE CHECKOFFS

More information

CHAPTER 3: BIPOLAR JUNCION TRANSISTOR DR. PHẠM NGUYỄN THANH LOAN

CHAPTER 3: BIPOLAR JUNCION TRANSISTOR DR. PHẠM NGUYỄN THANH LOAN CHAPTER 3: BIPOLAR JUNCION TRANSISTOR DR. PHẠM NGUYỄN THANH LOAN Hanoi, 9/24/2012 Contents 2 Structure and operation of BJT Different configurations of BJT Characteristic curves DC biasing method and analysis

More information

Single-phase or three phase AC220V (-15% ~ +10%) 50 ~ 60Hz

Single-phase or three phase AC220V (-15% ~ +10%) 50 ~ 60Hz KT270-H Servo Drive Features: The use of DSP ( digital signal processor ) chip, greatly accelerating the speed of data acquisition and processing, the motor running with good performance. Application of

More information

AN1508 APPLICATION NOTE STLC1: A COMPLETE SOLUTION FOR LED LAMP DRIVING IN MOTORCYCLE APPLICATIONS

AN1508 APPLICATION NOTE STLC1: A COMPLETE SOLUTION FOR LED LAMP DRIVING IN MOTORCYCLE APPLICATIONS AN1508 APPLICATION NOTE STLC1: A COMPLETE SOLUTION FOR LED LAMP DRIVING IN MOTORCYCLE APPLICATIONS F. Macina (DSG VREGS Application Engineer) 1. ABSTRACT The use of high efficiency Light Emitting Diodes

More information

Jaguar Motor Controller (Stellaris Brushed DC Motor Control Module with CAN)

Jaguar Motor Controller (Stellaris Brushed DC Motor Control Module with CAN) Jaguar Motor Controller (Stellaris Brushed DC Motor Control Module with CAN) 217-3367 Ordering Information Product Number Description 217-3367 Stellaris Brushed DC Motor Control Module with CAN (217-3367)

More information

COLLECTOR DRAIN BASE GATE EMITTER. Applying a voltage to the Gate connection allows current to flow between the Drain and Source connections.

COLLECTOR DRAIN BASE GATE EMITTER. Applying a voltage to the Gate connection allows current to flow between the Drain and Source connections. MOSFETS Although the base current in a transistor is usually small (< 0.1 ma), some input devices (e.g. a crystal microphone) may be limited in their output. In order to overcome this, a Field Effect Transistor

More information

PSoC Academy: How to Create a PSoC BLE Android App Lesson 9: BLE Robot Schematic 1

PSoC Academy: How to Create a PSoC BLE Android App Lesson 9: BLE Robot Schematic 1 1 All right, now we re ready to walk through the schematic. I ll show you the quadrature encoders that drive the H-Bridge, the PWMs, et cetera all the parts on the schematic. Then I ll show you the configuration

More information

Installation tutorial for Console Customs Xbox 360 Dual Rapid fire Microchip for wired and wireless controllers (all versions)

Installation tutorial for Console Customs Xbox 360 Dual Rapid fire Microchip for wired and wireless controllers (all versions) Installation tutorial for Console Customs Xbox 360 Dual Rapid fire Microchip for wired and wireless controllers (all versions) This tutorial is designed to aid you in installation of a console customs

More information

UNIT-III STATOR SIDE CONTROLLED INDUCTION MOTOR DRIVE

UNIT-III STATOR SIDE CONTROLLED INDUCTION MOTOR DRIVE UNIT-III STATOR SIDE CONTROLLED INDUCTION MOTOR DRIVE 3.1 STATOR VOLTAGE CONTROL The induction motor 'speed can be controlled by varying the stator voltage. This method of speed control is known as stator

More information

Programming PIC Microchips

Programming PIC Microchips Programming PIC Microchips Fís Foghlaim Forbairt Programming the PIC microcontroller using Genie Programming Editor Workshop provided & facilitated by the PDST www.t4.ie Page 1 DC motor control: DC motors

More information

The Transistor Tester user manual

The Transistor Tester user manual The Transistor Tester user manual Power: The Transistor Tester can be powered from 6.8V-12V DC. This can be achieved by a 9V layerbuilt battery or two 3.7V Lithium-ion battery in series, or with a 9V DC

More information

Audio Restoration Repair Bose Wave Music System AWRCC1 AWRCC2 AWRCC7

Audio Restoration Repair Bose Wave Music System AWRCC1 AWRCC2 AWRCC7 Audio Restoration Repair Bose Wave Music System AWRCC1 AWRCC2 AWRCC7 This applies to the Wave Music System, Wave Music System II, Wave Music System III, in all AC voltage variations. These particular versions,

More information

I. INTRODUCTION MAIN BLOCKS OF ROBOT

I. INTRODUCTION MAIN BLOCKS OF ROBOT Stair-Climbing Robot for Rescue Applications Prof. Pragati.D.Pawar 1, Prof. Ragini.D.Patmase 2, Mr. Swapnil.A.Kondekar 3, Mr. Nikhil.D.Andhare 4 1,2 Department of EXTC, 3,4 Final year EXTC, J.D.I.E.T Yavatmal,Maharashtra,

More information

INVESTIGATION OF GATE DRIVERS FOR SNUBBERLESS OVERVOLTAGE SUPPRESSION OF POWER IGBTS

INVESTIGATION OF GATE DRIVERS FOR SNUBBERLESS OVERVOLTAGE SUPPRESSION OF POWER IGBTS INVESTIGATION OF GATE DRIVERS FOR SNUBBERLESS OVERVOLTAGE SUPPRESSION OF POWER IGBTS Alvis Sokolovs, Iļja Galkins Riga Technical University, Department of Power and Electrical Engineering Kronvalda blvd.

More information

MOBILE ROBOT CRUISE CONTROLLER

MOBILE ROBOT CRUISE CONTROLLER University of Moratuwa B.Sc. Engineering Robotic Mini project 2006 MOBILE ROBOT CRUISE CONTROLLER By Cader M.F.M.A. (020046) Iynkaran N. (020153) Uthayasanker T. (020400) Department of electronic and telecommunication

More information

RGB LED Strips. Created by lady ada. Last updated on :21:20 PM UTC

RGB LED Strips. Created by lady ada. Last updated on :21:20 PM UTC RGB LED Strips Created by lady ada Last updated on 2017-11-26 10:21:20 PM UTC Guide Contents Guide Contents Overview Schematic Current Draw Wiring Usage Arduino Code CircuitPython Code 2 3 5 6 7 10 12

More information

ECE 511: FINAL PROJECT REPORT GROUP 7 MSP430 TANK

ECE 511: FINAL PROJECT REPORT GROUP 7 MSP430 TANK ECE 511: FINAL PROJECT REPORT GROUP 7 MSP430 TANK Team Members: Andrew Blanford Matthew Drummond Krishnaveni Das Dheeraj Reddy 1 Abstract: The goal of the project was to build an interactive and mobile

More information

Home Map Projects Construction Soldering Study Components 555 Symbols FAQ Links

Home Map Projects Construction Soldering Study Components 555 Symbols FAQ Links 1 of 7 7/3/2010 10:15 μμ Home Map Projects Construction Soldering Study Components 555 Symbols FAQ Links This page explains the operation of transistors in circuits. Practical matters such as testing,

More information

Electronics I Circuit Drawings. Robert R. Krchnavek Rowan University Spring, 2018

Electronics I Circuit Drawings. Robert R. Krchnavek Rowan University Spring, 2018 Electronics I Circuit Drawings Robert R. Krchnavek Rowan University Spring, 2018 Ideal Diode Piecewise Linear Models of a Diode Piecewise Linear Models of a Diode 1 r d Piecewise Linear Models of a Diode

More information

Automatic USB Controlled Power Switch

Automatic USB Controlled Power Switch Automatic USB Controlled Power Switch Manish P 1, Praveen K Ravindran 1, Sandesh Varma E 1, Kiran K Kannan 1, Sanjay Lakshman 1,Vimi K Wilson 2 U.G. Students, Department of Electrical and Electronics Engineering,

More information

BLOCK DIAGRAM OF THE UC3625

BLOCK DIAGRAM OF THE UC3625 U-115 APPLICATION NOTE New Integrated Circuit Produces Robust, Noise Immune System For Brushless DC Motors Bob Neidorff, Unitrode Integrated Circuits Corp., Merrimack, NH Abstract A new integrated circuit

More information

νµθωερτψυιοπασδφγηϕκλζξχϖβνµθωερτ ψυιοπασδφγηϕκλζξχϖβνµθωερτψυιοπα σδφγηϕκλζξχϖβνµθωερτψυιοπασδφγηϕκ χϖβνµθωερτψυιοπασδφγηϕκλζξχϖβνµθ

νµθωερτψυιοπασδφγηϕκλζξχϖβνµθωερτ ψυιοπασδφγηϕκλζξχϖβνµθωερτψυιοπα σδφγηϕκλζξχϖβνµθωερτψυιοπασδφγηϕκ χϖβνµθωερτψυιοπασδφγηϕκλζξχϖβνµθ θωερτψυιοπασδφγηϕκλζξχϖβνµθωερτψ υιοπασδφγηϕκλζξχϖβνµθωερτψυιοπασδ φγηϕκλζξχϖβνµθωερτψυιοπασδφγηϕκλζ ξχϖβνµθωερτψυιοπασδφγηϕκλζξχϖβνµ EE 331 Design Project Final Report θωερτψυιοπασδφγηϕκλζξχϖβνµθωερτψ

More information

ECE 310 Microelectronics Circuits

ECE 310 Microelectronics Circuits ECE 310 Microelectronics Circuits Bipolar Transistors Dr. Vishal Saxena (vishalsaxena@boisetstate.edu) Jan 20, 2014 Vishal Saxena 1 Bipolar Transistor n the chapter, we will study the physics of bipolar

More information

THE GENERATOR OF CLEMENTE FIGUERA

THE GENERATOR OF CLEMENTE FIGUERA THE GENERATOR OF CLEMENTE FIGUERA CLEMENTE FUGUERA WAS A HIGHLY RESPECTED MAN, AN ENGINEER AND A UNIVERSITY PROFESSOR. HE DIED IN 1908 JUST AFTER HIS PATENT WAS GRANTED. HIS PATENT FOR A FREE- ENERGY GENERATOR

More information