MICROPROCESSORS AND MICROCONTROLLER 1

Size: px
Start display at page:

Download "MICROPROCESSORS AND MICROCONTROLLER 1"

Transcription

1 MICROPROCESSORS AND MICROCONTROLLER 1 Microprocessor Applications Data Acquisition System Data acquisition is the process of sampling signals that measure real world physical conditions ( such as temperature, voltage, pressure, sound, etc..) and converting the resulting samples into digital numeric values that can be manipulated by a microprocessor/microcontroller/computer. Data acquisition systems (DAS or DAQ) typically convert analog information to digital values for processing. The components of data acquisition systems include: Sensors - to convert physical parameters to electrical signals. Signal conditioning circuitry - to convert sensor signals into a form that can be converted to digital values. Sample and Hold circuits to hold analog input value over a certain length of time for subsequent processing. Analog-to-digital converters - to convert conditioned sensor signals to digital values. Analog Multiplexors To measure or quantize more than one signal A basic DAQ system consists of sensors, DAQ measurement hardware, and a microprocessor / microcontroller/computer with programmable software. Keyboard Process Transducers Analog Mux Sample / Hold Amp A/ D µp/µc Block Diagram of DAS Display K.ELAMPARI, ASSOCIATE PROFESSOR OF PHYSICS, S.T.HINDU COLLEGE, NAGERCOIL. Page 1

2 MICROPROCESSORS AND MICROCONTROLLER 2 Sample and Hold Circuit (S/H) If an attempt is made to digitize a rapidly changing input signal, the input signal would have changed before the conversion is complete. The output of the converter will represent the input at the end of the conversion cycle rather than at the start. Therefore an error ΔV is introduced in the output voltage. This error voltage is a function of the rate of change of the input signal. This error is eliminated by using a sample and hold with a buffer amplifier on the input of the A/D converter. The function of the S/H circuit is to sample an analog input signal and hold this value over a certain length of time for subsequent processing. (i.e.) S/H circuit is used to maintain a stable input to the ADC during conversion. A S/H amplifier has two modes of operation controlled by a digital signal. In the SAMPLE mode the output follows the input, normally with unity gain. In the HOLD mode, the output of the S/H amplifier retains the last value it had until it switches to sample mode. LF 398A S/H. The LF398A is a 8 pin DIP ( National semiconductor). The only component to be externally connected is the hold capacitor. A low value of capacitance is preferred for quick charging by the input amplifier and a high capacitance is preferred to retain the charge for a longer duration. In a particular application, proper capacitance value should be selected for optimum performance. Parameters of S/H Acquisition time: This is the time required by the output of the device to reach its final value within a specified error percentage in the Sample Mode. Aperture time: It is the time required to switch from sample state to hold state. Typical value of aperture time is 10 ms. K.ELAMPARI, ASSOCIATE PROFESSOR OF PHYSICS, S.T.HINDU COLLEGE, NAGERCOIL. Page 2

3 MICROPROCESSORS AND MICROCONTROLLER 3 Droop: It is the change of output voltage per unit time during hold, as a result of leakage or bias currents flowing through the capacitor. For LF398A the droop value is 5mV/min. Fig. Multiplexers Multiplexers are basically switches to transfer the signals from one of the input sources to the output on the control command. The control command should clearly identify the input source from which the information signals is to be transferred. The various input sources are called multiplexer channels. The information required to select the channel is known as address of the channel. The analog switches used in the multiplexer may be any one of several types of electromechanical or solid state switches. Interfacing 7 segment displays Decimal digits and some letters of the alphabet can be displayed using a seven segment display devices. In seven segment displays an LED is used for each segment. There are two types of seven-segment display devices: Common Anode and Common Cathode types. K.ELAMPARI, ASSOCIATE PROFESSOR OF PHYSICS, S.T.HINDU COLLEGE, NAGERCOIL. Page 3

4 MICROPROCESSORS AND MICROCONTROLLER 4 In common anode type all of the anodes of the LEDs are connected in common; in the common cathode type all of the cathodes of the LEDs are connected in common. These variations require different drive arrangements. BCD to seven segment (7447 / 7448) decoder drivers are available for driving seven segment displays.7447 is used to drive common anode type and 7448 is used to drive common cathode type. The following figure shows the connection diagrams. K.ELAMPARI, ASSOCIATE PROFESSOR OF PHYSICS, S.T.HINDU COLLEGE, NAGERCOIL. Page 4

5 MICROPROCESSORS AND MICROCONTROLLER 5 In common anode type, logic 0 at decoder driver output turns a segment ON where as in common cathodes type a logic 1 at decoder driver output turns a segment ON. Interfacing 7 segment displays with 8085 D0-D PPI PA0-PA RD 8085 WR A0-A7 ADDRESS DECODER CS PA4-PA IO/M Here the output device 7-segment displays are interfaced with 8085 in I/O mapped IO scheme. Using a suitable decoder circuit the address of the ports of 8255 can be fixed. Here Port A is configured as an output port. Pins PA0-PA3 is used to send the BCD value of the LSD and PA4-PA7 is used to send the BCD value of MSD. Using this scheme it is possible to displays numerical values from 00 to 99. The following program demonstrates the working of the above circuit. Aim: To display the content of the memory location 4500H in the seven segment display device. Control word formation: Port A, Port B, Port C : output Mode: Simple I/O Control Word: 80H K.ELAMPARI, ASSOCIATE PROFESSOR OF PHYSICS, S.T.HINDU COLLEGE, NAGERCOIL. Page 5

6 MICROPROCESSORS AND MICROCONTROLLER 6 Program: To display two digits on a 7 segment displays START: MVI A, 80 ; Control word 80H is stored in Acc OUT CWR ; Control word is send to Control Word Reg. of 8255 LDA 4500 ; The data to be displayed is loaded in to Acc DAA ; Decimal Adjust Accumulator to get the BCD values OUT PORTA ; PA0-PA3 receives the BCD value of LSD and HLT ; PA4-PA7 receives the BCD value of MSD. ;The corresponding digits are displayed in the 7-seg.disp. DIGITAL CLOCK A digital clock is a type of clock that displays the time digitally i.e. in numerals as opposed to an analog clock. Also many microprocessor applications would require, doing certain tasks at specific time of the day or would involve the time of day in some other form. For example switching ON and OFF street lights at specific time in the evening and following morning or punching entry time of every worker for a shift, at a factory gate etc. A basic requirement of these types of applications is a real time digital clock with a display of current time. A digital clock can be implemented by using a dedicated hardware like MM5314 or by software. The following program is used to implement a digital clock on an 8085 system. The basic requirement of a digital clock is the seven segment displays to show Hours, Minutes & Seconds. The seven segment displays are interfaced with the 8085 processor through the ports of 8255 PPI available in the microprocessor trainer Kit. The displays are driven by suitable seven segment decoder driver (7447/7448). The main part of the digital clock program is the accurate generation of 1 Hz frequency or 1 second time delay for reference. K.ELAMPARI, ASSOCIATE PROFESSOR OF PHYSICS, S.T.HINDU COLLEGE, NAGERCOIL. Page 6

7 MICROPROCESSORS AND MICROCONTROLLER 7 The 1Hz frequency or 1 second time delay can be produced exactly by using a timer 8253 or by using a well designed delay subroutine. Program Logic Three CPU registers are used to count Hours, Minutes and Seconds. The Seconds counter is incremented for every second, and its content checked for 60. When it reaches 60, it is reset to 0 and the Minutes counter is incremented by one. When the Minutes counter reaches 60, it is reset to zero and the Hour counter is incremented by one. Similarly, when the Hours counter reaches 13 it is reset to 1. The counter incrementing is done in decimal format. For every second the display is updated by the Hours, Minutes and Seconds registers. The program works in a continuous loop and displays time round the clock. The block diagram of the digital clock, the flow chart and the program are shown below. Digital Clock Basic Block Diagram D0-D7 PA4-A7 PA0-A3 RD WR PB4-B Hr Min A0-A7 ADDRESS DECODER PB0-B3 CS PC4-C7 PC0-C Sec K.ELAMPARI, ASSOCIATE PROFESSOR OF PHYSICS, S.T.HINDU COLLEGE, NAGERCOIL. Page 7

8 MICROPROCESSORS AND MICROCONTROLLER 8 FLOW CHART START INITIALIZE HR,MIN,SEC COUNTERS CALL DELAY SUBROUTINE FOR 1 SEC SEC SEC +1 N SEC >59? Y MIN MIN +1 SEC 0 N MIN >59? Y HR HR +1 MIN 0 N HR >12? HR 1 Y K.ELAMPARI, ASSOCIATE PROFESSOR OF PHYSICS, S.T.HINDU COLLEGE, NAGERCOIL. Page 8

9 MICROPROCESSORS AND MICROCONTROLLER Port Configuration: Control word formation: All the ports of 8255 are configured as output ports in Mode 0. (i.e) Port A, Port B, Port C : output, Mode: Simple I/O Therefore, the Control Word is: 80H Port C : to send Seconds value to 7 segment displays Port B: to send Minutes value to 7 segment displays Port A: to send Hour value to 7 segment display Program Label Mnemonics Comment Start: LXI D,HH00 ;(D) Hr LXI B,MMSS ; (B) Min, (C) Sec MVI A,80H ; (A) Control word for Port Conf. OUT CWR ; Move the Control word to Control Register of 8255 to configure the ports/ DISP: CALL DISPLAY ;Call display Subroutine to Display Hr,Min,Sec values on the 7 segment display DEL: CALL DELAY ; Call 1 sec Delay Subroutine INR C ; Sec Sec +1 MOV A,C ;Mov Sec to Acc CPI A,3C ; Is Sec >59 (ie) Sec =60? JNZ DEL ; If No (ZF!=1), Goto Label DISP MVI C,00 ; if Yes, set Sec 00 INR B ; Min Min +1 MOV A,B ; Move Min value to Acc K.ELAMPARI, ASSOCIATE PROFESSOR OF PHYSICS, S.T.HINDU COLLEGE, NAGERCOIL. Page 9

10 MICROPROCESSORS AND MICROCONTROLLER 10 CPI 3C ; Is Min >59 (ie) Min = 60? JNZ DEL ; If No (ZF!=1), Goto Label DISP MVI B,00 ; If Yes, set Min 00 INR D ;Hour Hour +1 MOV A,D ;Move Hour value to A CPI 0D ; if Hour >13? JNZ DEL ;If No (ZF!=1), Goto Label DISP MVI D,01 ; If Yes, set Hour 1 JMP DISP ; Jump to DISP HLT ;HALT Subroutine to Display Hour, Min, and Sec values DISP: MOV A, D ; (A) Hour Value DAA ; Get the BCD values OUT PORT A ; Display Hour value MOV A,B ; (A) Minute Value DAA ; Get the BCD value OUT PORTB ;Display Minute Value MOV A, C ; (A) Seconds DAA ;Get the BCD value OUT PORTC ; Display Seconds value RET ; Return K.ELAMPARI, ASSOCIATE PROFESSOR OF PHYSICS, S.T.HINDU COLLEGE, NAGERCOIL. Page 10

11 MICROPROCESSORS AND MICROCONTROLLER 11 1 Sec Delay Subroutine: DELAY: PUSH A PUSH B PUSH D LXI B,COUNT2 LOOP2: LXI D,COUNT1 LOOP1: DCX D MOV A,D ORA E JNZ LOOP1 DCX B MOV A,B ORA C JNZ LOOP2 RET ; Save the contents of registers ; used in the main program ; (BC) COUNT2 based on COUNT1 ; (DE) COUNT1 based on CLK freq. ;RETURN K.ELAMPARI, ASSOCIATE PROFESSOR OF PHYSICS, S.T.HINDU COLLEGE, NAGERCOIL. Page 11

12 MICROPROCESSORS AND MICROCONTROLLER 12 ZERO CROSS DETECTION A zero-crossing is a point where the sign of a mathematical function changes (e.g. from positive to negative), represented by a crossing of the axis (zero value) in the graph of the function. It is a commonly used term in electronics, mathematics, sound, and image processing. FREQUENCY MEASUREMENT Frequency measurement is a very important application of both counting and timing. Fundamentally, frequency measurement is a measure of how many times something happens within a certain known period. The use can be as diverse as how many counts are received per minute in Geiger Counter, how many cycles per second (hertz) there are in an electronic or acoustic measurement or how many wheel revolutions there are per unit of time in a speed of measurement. Both a counter and a timer are needed, the timer to measure the reference time and the counter to count the number of events within that time. To measure the frequency of a signal, the time period for half cycle is measured which is inversely proportional to the frequency. A sinusoidal signal is K.ELAMPARI, ASSOCIATE PROFESSOR OF PHYSICS, S.T.HINDU COLLEGE, NAGERCOIL. Page 12

13 MICROPROCESSORS AND MICROCONTROLLER 13 converted to square wave using a voltage comparator LM311 or OpAmp Lm747. A diode is used to rectify the output signal. A potential divider is used to reduce the magnitude to 5 volts. By the method of zero cross detection, the pulse width can be determined. A program can be used to sense the zero instant of the rectified square wave. The microprocessor measures the magnitude of the square wave at two consecutive points as shown in fig. The two magnitudes are compared and decision (i.e., whether the point is at zero instant) is taken on the basis of carry and zero flags. Various points of on the square wave are shown in fig. Very near to P3 at its left side the magnitude of square wave is zero and at P4, logic 1. The microprocessor subtracts the 1 st value from the 2 nd, so the result is non-zero and there is no carry. This is the basis of selection of zero instant point. Suppose the microprocessor takes reading at P1 and P2 where both magnitudes are zero. Difference of the two is zero. So this is not the zero instant of the wave. At points P5 and P6, the difference of the two values is zero, so it is also not a zero instant point. At P7, and P8, the difference is non-zero, but there is carry. So it is the end point of the half-square wave. As soon as the zero instant point is detected the microprocessor initiates a register pair to count the number how many times the loop is executed. [or start the timer to find the elapsed time between two zero instant points]. It crosses the loop when the magnitude of the square wave becomes zero. Thus the time for half cycle is measured. The count can be compared with stored numbers in a look-up table and the frequency can be displayed. K.ELAMPARI, ASSOCIATE PROFESSOR OF PHYSICS, S.T.HINDU COLLEGE, NAGERCOIL. Page 13

14 MICROPROCESSORS AND MICROCONTROLLER 14 FLOW CHART K.ELAMPARI, ASSOCIATE PROFESSOR OF PHYSICS, S.T.HINDU COLLEGE, NAGERCOIL. Page 14

15 MICROPROCESSORS AND MICROCONTROLLER 15 Port A of 8255 is configured as Input port and the signal whose frequency to be determined is connected to the Port line PA0. Program: START: MVI A,98 ;Get the control word OUT cwr ; Initialize the ports READ: IN PORTA ; Read voltage pulse at Port- A MOV B,A ; IN PORTA ; Read voltage pulse again CMP B ;Compare two readings JZ READ ; JC READ ; LXI B,0000; Initialize BC pair for counting LOOP: INX B IN PORTA ;Read voltage pulse RAR JC LOOP ;Check whether v has becomes zero. No goto Loop CALL LTAB; Call Lookup table Subroutine CALL DISP ; Call Display Subroutine HLT ;Stop LOOK UP TABLE COUNT FREQUENCY K.ELAMPARI, ASSOCIATE PROFESSOR OF PHYSICS, S.T.HINDU COLLEGE, NAGERCOIL. Page 15

16 MICROPROCESSORS AND MICROCONTROLLER Based Traffic Light Control System A simple traffic light system which has only two basic sequences of traffic is used in the model. First the traffic is allowed from North to South and from South to North direction. During this period, no traffic is allowed either way from East to West or from West to East. In the second sequence the condition is just reversed. (i.e) Vehicles movement from East to West and West to East is allowed, but North to South and South to North is not allowed. In both the sequences, free left is allowed. A typical road junction with the arrangement of Lamps is shown in the following fig. R RED Lamps to stop the traffic G Green Lamps to allow the traffic flow. Y Yellow Lamp to caution that traffic is about to start or about to stop. K.ELAMPARI, ASSOCIATE PROFESSOR OF PHYSICS, S.T.HINDU COLLEGE, NAGERCOIL. Page 16

17 MICROPROCESSORS AND MICROCONTROLLER 17 There are toally 12 LEDs/Lamps. In order to control the lamps the PPI 8255 is used in the system. The Port A and Port CLower of 8255 is used to connect the traffic lights as shown below. Lamp R1 G1 Y1 R2 G2 Y2 R3 G3 Y3 R4 G4 Y4 Port PC3 PC2 PC1 PC0 PA7 PA6 PA5 PA4 PA3 PA2 PA1 PA0 SeqA H 14H SeqB 1 0` H A2H SeqW 0 0` H 49H The above table also shows the respective control words to activate Sequence A, Sequence B and Sequence W (Warning indicator- Yellow) Program Logic. Step 1: Program the Ports A and Port C (lower) of 8255 as output ports in simple i/o mode. Step 2: Activate Sequence A Step 3: Wait for T1 seconds. Step 4: Activate the Sequence W Step 5: Wait for T2 seconds. Step 6: Actiave Sequence B Step 7: Wait for T1 seconds. Step 8: Activate the Sequence W Step 9: Wait for T2 seconds. Step 6: Go to Step 2 K.ELAMPARI, ASSOCIATE PROFESSOR OF PHYSICS, S.T.HINDU COLLEGE, NAGERCOIL. Page 17

18 MICROPROCESSORS AND MICROCONTROLLER 18 Connection Diagram Program: As discussed in the class room. The The LEDs in the circuit can be replaced by high voltage lamps by using relay and a switching transistor as shown in the above figure. K.ELAMPARI, ASSOCIATE PROFESSOR OF PHYSICS, S.T.HINDU COLLEGE, NAGERCOIL. Page 18

19 MICROPROCESSORS AND MICROCONTROLLER 19 K.ELAMPARI, ASSOCIATE PROFESSOR OF PHYSICS, S.T.HINDU COLLEGE, NAGERCOIL. Page 19

20 MICROPROCESSORS AND MICROCONTROLLER 20 K.ELAMPARI, ASSOCIATE PROFESSOR OF PHYSICS, S.T.HINDU COLLEGE, NAGERCOIL. Page 20

21 MICROPROCESSORS AND MICROCONTROLLER 21 K.ELAMPARI, ASSOCIATE PROFESSOR OF PHYSICS, S.T.HINDU COLLEGE, NAGERCOIL. Page 21

22 MICROPROCESSORS AND MICROCONTROLLER 22 K.ELAMPARI, ASSOCIATE PROFESSOR OF PHYSICS, S.T.HINDU COLLEGE, NAGERCOIL. Page 22

23 MICROPROCESSORS AND MICROCONTROLLER 23 K.ELAMPARI, ASSOCIATE PROFESSOR OF PHYSICS, S.T.HINDU COLLEGE, NAGERCOIL. Page 23

24 MICROPROCESSORS AND MICROCONTROLLER 24 K.ELAMPARI, ASSOCIATE PROFESSOR OF PHYSICS, S.T.HINDU COLLEGE, NAGERCOIL. Page 24

25 MICROPROCESSORS AND MICROCONTROLLER 25 K.ELAMPARI, ASSOCIATE PROFESSOR OF PHYSICS, S.T.HINDU COLLEGE, NAGERCOIL. Page 25

26 MICROPROCESSORS AND MICROCONTROLLER 26 K.ELAMPARI, ASSOCIATE PROFESSOR OF PHYSICS, S.T.HINDU COLLEGE, NAGERCOIL. Page 26

27 MICROPROCESSORS AND MICROCONTROLLER 27 K.ELAMPARI, ASSOCIATE PROFESSOR OF PHYSICS, S.T.HINDU COLLEGE, NAGERCOIL. Page 27

28 MICROPROCESSORS AND MICROCONTROLLER 28 K.ELAMPARI, ASSOCIATE PROFESSOR OF PHYSICS, S.T.HINDU COLLEGE, NAGERCOIL. Page 28

29 MICROPROCESSORS AND MICROCONTROLLER 29 K.ELAMPARI, ASSOCIATE PROFESSOR OF PHYSICS, S.T.HINDU COLLEGE, NAGERCOIL. Page 29

30 MICROPROCESSORS AND MICROCONTROLLER 30 K.ELAMPARI, ASSOCIATE PROFESSOR OF PHYSICS, S.T.HINDU COLLEGE, NAGERCOIL. Page 30

31 MICROPROCESSORS AND MICROCONTROLLER 31 K.ELAMPARI, ASSOCIATE PROFESSOR OF PHYSICS, S.T.HINDU COLLEGE, NAGERCOIL. Page 31

32 MICROPROCESSORS AND MICROCONTROLLER 32 K.ELAMPARI, ASSOCIATE PROFESSOR OF PHYSICS, S.T.HINDU COLLEGE, NAGERCOIL. Page 32

33 MICROPROCESSORS AND MICROCONTROLLER 33 - Motor speed from nagoor kani - K.ELAMPARI, ASSOCIATE PROFESSOR OF PHYSICS, S.T.HINDU COLLEGE, NAGERCOIL. Page 33

34 MICROPROCESSORS AND MICROCONTROLLER 34 - K.ELAMPARI, ASSOCIATE PROFESSOR OF PHYSICS, S.T.HINDU COLLEGE, NAGERCOIL. Page 34

35 MICROPROCESSORS AND MICROCONTROLLER 35 K.ELAMPARI, ASSOCIATE PROFESSOR OF PHYSICS, S.T.HINDU COLLEGE, NAGERCOIL. Page 35

36 MICROPROCESSORS AND MICROCONTROLLER 36 K.ELAMPARI, ASSOCIATE PROFESSOR OF PHYSICS, S.T.HINDU COLLEGE, NAGERCOIL. Page 36

37 MICROPROCESSORS AND MICROCONTROLLER 37 K.ELAMPARI, ASSOCIATE PROFESSOR OF PHYSICS, S.T.HINDU COLLEGE, NAGERCOIL. Page 37

38 MICROPROCESSORS AND MICROCONTROLLER 38 K.ELAMPARI, ASSOCIATE PROFESSOR OF PHYSICS, S.T.HINDU COLLEGE, NAGERCOIL. Page 38

39 MICROPROCESSORS AND MICROCONTROLLER 39 K.ELAMPARI, ASSOCIATE PROFESSOR OF PHYSICS, S.T.HINDU COLLEGE, NAGERCOIL. Page 39

40 MICROPROCESSORS AND MICROCONTROLLER 40 Frequency Measurement The sinusoidal voltage signal is stepped down to the desired level using voltage transformer and then is converted to square wave by using a zero crossing detector (ZCD). K.ELAMPARI, ASSOCIATE PROFESSOR OF PHYSICS, S.T.HINDU COLLEGE, NAGERCOIL. Page 40

41 MICROPROCESSORS AND MICROCONTROLLER 41 K.ELAMPARI, ASSOCIATE PROFESSOR OF PHYSICS, S.T.HINDU COLLEGE, NAGERCOIL. Page 41

42 MICROPROCESSORS AND MICROCONTROLLER 42 Ref: CTION+USING++microprocessor&hl=en&sa=X&ei=82YeVdX4BIaGuATJ- 4GwDg&ved=0CF0Q6A K.ELAMPARI, ASSOCIATE PROFESSOR OF PHYSICS, S.T.HINDU COLLEGE, NAGERCOIL. Page 42

PERIPHERAL INTERFACING Rev. 1.0

PERIPHERAL INTERFACING Rev. 1.0 This work is licensed under the Creative Commons Attribution-NonCommercial-Share Alike 2.5 India License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/2.5/in/deed.en

More information

INTERFACING ADC/DAC. DAC INTERFACE SECTION: DAC 0800 is a monolithic, high speed, current output D/A Converter. Its unique features are:

INTERFACING ADC/DAC. DAC INTERFACE SECTION: DAC 0800 is a monolithic, high speed, current output D/A Converter. Its unique features are: INTERFACING ADC/DAC AIM: a) To interface the DAC unit to microprocessor and to write an ALP to convert the given digital word to analog voltage and also to generate sawtooth, triangular and sinewaves.

More information

arxiv:physics/ v1 [physics.ed-ph] 19 Oct 2004

arxiv:physics/ v1 [physics.ed-ph] 19 Oct 2004 I. SIMPLE 8085 µp COMPATIBLE I/O CARD with Arti Dwivedi Abstract A simple interfacing project with the 8085-microprocessor kits available in under graduate college labs has been discussed. The interface

More information

FRIDAY, 18 MAY 1.00 PM 4.00 PM. Where appropriate, you may use sketches to illustrate your answer.

FRIDAY, 18 MAY 1.00 PM 4.00 PM. Where appropriate, you may use sketches to illustrate your answer. X036/13/01 NATIONAL QUALIFICATIONS 2012 FRIDAY, 18 MAY 1.00 PM 4.00 PM TECHNOLOGICAL STUDIES ADVANCED HIGHER 200 marks are allocated to this paper. Answer all questions in Section A (120 marks). Answer

More information

Thursday 6 June 2013 Afternoon

Thursday 6 June 2013 Afternoon Thursday 6 June 2013 Afternoon A2 GCE ELECTRONICS F614/01 Electronics Control Systems *F628070613* Candidates answer on the Question Paper. OCR supplied materials: None Other materials required: Scientific

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

Unit-6 PROGRAMMABLE INTERRUPT CONTROLLERS 8259A-PROGRAMMABLE INTERRUPT CONTROLLER (PIC) INTRODUCTION

Unit-6 PROGRAMMABLE INTERRUPT CONTROLLERS 8259A-PROGRAMMABLE INTERRUPT CONTROLLER (PIC) INTRODUCTION M i c r o p r o c e s s o r s a n d M i c r o c o n t r o l l e r s P a g e 1 PROGRAMMABLE INTERRUPT CONTROLLERS 8259A-PROGRAMMABLE INTERRUPT CONTROLLER (PIC) INTRODUCTION Microcomputer system design requires

More information

ELG3336 Design of Mechatronics System

ELG3336 Design of Mechatronics System ELG3336 Design of Mechatronics System Elements of a Data Acquisition System 2 Analog Signal Data Acquisition Hardware Your Signal Data Acquisition DAQ Device System Computer Cable Terminal Block Data Acquisition

More information

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

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

More information

Microprocessor & Interfacing Lecture Programmable Interval Timer

Microprocessor & Interfacing Lecture Programmable Interval Timer Microprocessor & Interfacing Lecture 30 8254 Programmable Interval Timer P A R U L B A N S A L A S S T P R O F E S S O R E C S D E P A R T M E N T D R O N A C H A R Y A C O L L E G E O F E N G I N E E

More information

Process Components. Process component

Process Components. Process component What are PROCESS COMPONENTS? Input Transducer Process component Output Transducer The input transducer circuits are connected to PROCESS COMPONENTS. These components control the action of the OUTPUT components

More information

ADC0808/ADC Bit µp Compatible A/D Converters with 8-Channel Multiplexer

ADC0808/ADC Bit µp Compatible A/D Converters with 8-Channel Multiplexer ADC0808/ADC0809 8-Bit µp Compatible A/D Converters with 8-Channel Multiplexer General Description The ADC0808, ADC0809 data acquisition component is a monolithic CMOS device with an 8-bit analog-to-digital

More information

Analog to Digital Conversion

Analog to Digital Conversion Analog to Digital Conversion 02534567998 6 4 2 3 4 5 6 ANALOG to DIGITAL CONVERSION Analog variation (Continuous, smooth variation) Digitized Variation (Discrete set of points) N2 N1 Digitization applied

More information

NODIA AND COMPANY. Model Test Paper - I GATE Digital Electronics. Copyright By Publishers

NODIA AND COMPANY. Model Test Paper - I GATE Digital Electronics. Copyright By Publishers No part of this publication may be reproduced or distributed in any form or any means, electronic, mechanical, photocopying, or otherwise without the prior permission of the author. Model Test Paper -

More information

Data Converters. Dr.Trushit Upadhyaya EC Department, CSPIT, CHARUSAT

Data Converters. Dr.Trushit Upadhyaya EC Department, CSPIT, CHARUSAT Data Converters Dr.Trushit Upadhyaya EC Department, CSPIT, CHARUSAT Purpose To convert digital values to analog voltages V OUT Digital Value Reference Voltage Digital Value DAC Analog Voltage Analog Quantity:

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

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

Thursday 5 June 2014 Afternoon

Thursday 5 June 2014 Afternoon Thursday 5 June 214 Afternoon A2 GCE ELECTRONICS F614/1 Electronic Control Systems *3119659* Candidates answer on the Question Paper. OCR supplied materials: None Other materials required: Scientific calculator

More information

Data acquisition and instrumentation. Data acquisition

Data acquisition and instrumentation. Data acquisition Data acquisition and instrumentation START Lecture Sam Sadeghi Data acquisition 1 Humanistic Intelligence Body as a transducer,, data acquisition and signal processing machine Analysis of physiological

More information

III/IV B.Tech (Regular) DEGREE EXAMINATION-Schema. Answer ONE question from each unit.

III/IV B.Tech (Regular) DEGREE EXAMINATION-Schema. Answer ONE question from each unit. April, 2018 Sixth Semester Time: Three Hours Answer Question No1 compulsorily Answer ONE question from each unit 1 Answer all questions a Draw the symbol of Zener diode III/IV BTech (Regular) DEGREE EXAMINATION-Schema

More information

Microprocessors & Interfacing

Microprocessors & Interfacing Lecture overview Microprocessors & Interfacing /Output output PMW Digital-to- (D/A) Conversion input -to-digital (A/D) Conversion Lecturer : Dr. Annie Guo S2, 2008 COMP9032 Week9 1 S2, 2008 COMP9032 Week9

More information

CHAPTER 4 CONTROL ALGORITHM FOR PROPOSED H-BRIDGE MULTILEVEL INVERTER

CHAPTER 4 CONTROL ALGORITHM FOR PROPOSED H-BRIDGE MULTILEVEL INVERTER 65 CHAPTER 4 CONTROL ALGORITHM FOR PROPOSED H-BRIDGE MULTILEVEL INVERTER 4.1 INTRODUCTION Many control strategies are available for the control of IMs. The Direct Torque Control (DTC) is one of the most

More information

8253 functions ( General overview )

8253 functions ( General overview ) What are these? The Intel 8253 and 8254 are Programmable Interval Timers (PITs), which perform timing and counting functions. They are found in all IBM PC compatibles. 82C54 which is a superset of the

More information

Draw the symbol and state the applications of : 1) Push button switch 2) 3) Solenoid valve 4) Limit switch ( 1m each) Ans: 1) Push Button

Draw the symbol and state the applications of : 1) Push button switch 2) 3) Solenoid valve 4) Limit switch ( 1m each) Ans: 1) Push Button Subject Code: 17641Model AnswerPage 1 of 16 Important suggestions to examiners: 1) The answers should be examined by key words and not as word-to-word as given in the model answer scheme. 2) The model

More information

Water Jet with Electronically Controlled Flow and Temperature Settings

Water Jet with Electronically Controlled Flow and Temperature Settings EE389 Electronics Design Lab-II (EDL II) Project Report, EE Dept, IIT Bombay, November 2006 Water Jet with Electronically Controlled Flow and Temperature Settings Group No. D10 Praveen Paneri (03d07010)

More information

Monitoring of Intravenous Drip Rate

Monitoring of Intravenous Drip Rate Monitoring of Intravenous Drip Rate Vidyadhar V. Kamble, Prem C. Pandey, Chandrashekar P. Gadgil, and Dinesh S. Choudhary Abstract A drip rate meter, for monitoring intravenous infusion, is developed using

More information

Technical Brief FAQ (FREQUENCLY ASKED QUESTIONS) For further information, please contact Crystal Semiconductor at (512) or 1 (800)

Technical Brief FAQ (FREQUENCLY ASKED QUESTIONS) For further information, please contact Crystal Semiconductor at (512) or 1 (800) Technical Brief FAQ (FREQUENCLY ASKED QUESTIONS) 1) Do you have a four channel part? Not at this time, but we have plans to do a multichannel product Q4 97. We also have 4 digital output lines which can

More information

CHAPTER 7 MAXIMUM POWER POINT TRACKING USING HILL CLIMBING ALGORITHM

CHAPTER 7 MAXIMUM POWER POINT TRACKING USING HILL CLIMBING ALGORITHM 100 CHAPTER 7 MAXIMUM POWER POINT TRACKING USING HILL CLIMBING ALGORITHM 7.1 INTRODUCTION An efficient Photovoltaic system is implemented in any place with minimum modifications. The PV energy conversion

More information

CHAPTER ELEVEN - Interfacing With the Analog World

CHAPTER ELEVEN - Interfacing With the Analog World CHAPTER ELEVEN - Interfacing With the Analog World 11.1 (a) Analog output = (K) x (digital input) (b) Smallest change that can occur in the analog output as a result of a change in the digital input. (c)

More information

R.B.V.R.R. WOMEN S COLLEGE (AUTONOMOUS) Narayanaguda, Hyderabad. ELECTRONIC PRINCIPLES AND APPLICATIONS

R.B.V.R.R. WOMEN S COLLEGE (AUTONOMOUS) Narayanaguda, Hyderabad. ELECTRONIC PRINCIPLES AND APPLICATIONS R.B.V.R.R. WOMEN S COLLEGE (AUTONOMOUS) Narayanaguda, Hyderabad. DEPARTMENT OF PHYSICS QUESTION BANK FOR SEMESTER V PHYSICS PAPER VI (A) ELECTRONIC PRINCIPLES AND APPLICATIONS UNIT I: SEMICONDUCTOR DEVICES

More information

8-Bit, high-speed, µp-compatible A/D converter with track/hold function ADC0820

8-Bit, high-speed, µp-compatible A/D converter with track/hold function ADC0820 8-Bit, high-speed, µp-compatible A/D converter with DESCRIPTION By using a half-flash conversion technique, the 8-bit CMOS A/D offers a 1.5µs conversion time while dissipating a maximum 75mW of power.

More information

LM12L Bit + Sign Data Acquisition System with Self-Calibration

LM12L Bit + Sign Data Acquisition System with Self-Calibration LM12L458 12-Bit + Sign Data Acquisition System with Self-Calibration General Description The LM12L458 is a highly integrated 3.3V Data Acquisition System. It combines a fully-differential self-calibrating

More information

ELECTRONICS AND COMMUNICATION ENGINEERING

ELECTRONICS AND COMMUNICATION ENGINEERING ELECTRONICS AND COMMUNICATION ENGINEERING Q1. A transmission line of characteristic impedance 50 Ω is terminated by a 50 Ω load. When excited by a sinusoidal voltage source at 10 GHz the phase difference

More information

EE 308 Spring S12 SUBSYSTEMS: PULSE WIDTH MODULATION, A/D CONVERTER, AND SYNCHRONOUS SERIAN INTERFACE

EE 308 Spring S12 SUBSYSTEMS: PULSE WIDTH MODULATION, A/D CONVERTER, AND SYNCHRONOUS SERIAN INTERFACE 9S12 SUBSYSTEMS: PULSE WIDTH MODULATION, A/D CONVERTER, AND SYNCHRONOUS SERIAN INTERFACE In this sequence of three labs you will learn to use the 9S12 S hardware sybsystem. WEEK 1 PULSE WIDTH MODULATION

More information

CS/ECE/EEE/INSTR F241 MICROPROCESSOR PROGRAMMING & INTERFACING MODULE 8: I/O INTERFACING QUESTIONS ANUPAMA KR BITS, PILANI KK BIRLA GOA CAMPUS

CS/ECE/EEE/INSTR F241 MICROPROCESSOR PROGRAMMING & INTERFACING MODULE 8: I/O INTERFACING QUESTIONS ANUPAMA KR BITS, PILANI KK BIRLA GOA CAMPUS CS/ECE/EEE/INSTR F241 MICROPROCESSOR PROGRAMMING & INTERFACING MODULE 8: I/O INTERFACING QUESTIONS ANUPAMA KR BITS, PILANI KK BIRLA GOA CAMPUS Q1. Distinguish between vectored and non-vectored interrupts

More information

Analog Input and Output. Lecturer: Sri Parameswaran Notes by: Annie Guo

Analog Input and Output. Lecturer: Sri Parameswaran Notes by: Annie Guo Analog Input and Output Lecturer: Sri Parameswaran Notes by: Annie Guo 1 Analog output Lecture overview PMW Digital-to-Analog (D/A) Conversion Analog input Analog-to-Digital (A/D) Conversion 2 PWM Analog

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

Bend Sensor Technology Electronic Interface Design Guide

Bend Sensor Technology Electronic Interface Design Guide Technology Electronic Interface Design Guide Copyright 2015 Flexpoint Sensor Systems Page 1 of 15 www.flexpoint.com Contents Page Description.... 3 Voltage Divider... 4 Adjustable Buffers.. 5 LED Display

More information

Combinational Logic Circuits. Combinational Logic

Combinational Logic Circuits. Combinational Logic Combinational Logic Circuits The outputs of Combinational Logic Circuits are only determined by the logical function of their current input state, logic 0 or logic 1, at any given instant in time. The

More information

Number of Lessons:155 #14B (P) Electronics Technology with Digital and Microprocessor Laboratory Completion Time: 42 months

Number of Lessons:155 #14B (P) Electronics Technology with Digital and Microprocessor Laboratory Completion Time: 42 months PROGRESS RECORD Study your lessons in the order listed below. Number of Lessons:155 #14B (P) Electronics Technology with Digital and Microprocessor Laboratory Completion Time: 42 months 1 2330A Current

More information

Low Voltage, High Current Time Delay Circuit

Low Voltage, High Current Time Delay Circuit Low Voltage, High Current Time Delay Circuit In this circuit a LM339 quad voltage comparator is used to generate a time delay and control a high current output at low voltage. Approximatey 5 amps of current

More information

Basic Microprocessor Interfacing Trainer Lab Manual

Basic Microprocessor Interfacing Trainer Lab Manual Basic Microprocessor Interfacing Trainer Lab Manual Control Inputs Microprocessor Data Inputs ff Control Unit '0' Datapath MUX Nextstate Logic State Memory Register Output Logic Control Signals ALU ff

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

Control of Electrical Lights and Fans using TV Remote

Control of Electrical Lights and Fans using TV Remote EE 389 Electronic Design Lab -II, Project Report, EE Dept., IIT Bombay, October 2005 Control of Electrical Lights and Fans using TV Remote Group No. D10 Liji Jayaprakash (02d07021)

More information

Chapter 2 Signal Conditioning, Propagation, and Conversion

Chapter 2 Signal Conditioning, Propagation, and Conversion 09/0 PHY 4330 Instrumentation I Chapter Signal Conditioning, Propagation, and Conversion. Amplification (Review of Op-amps) Reference: D. A. Bell, Operational Amplifiers Applications, Troubleshooting,

More information

Chapter 7. Introduction. Analog Signal and Discrete Time Series. Sampling, Digital Devices, and Data Acquisition

Chapter 7. Introduction. Analog Signal and Discrete Time Series. Sampling, Digital Devices, and Data Acquisition Chapter 7 Sampling, Digital Devices, and Data Acquisition Material from Theory and Design for Mechanical Measurements; Figliola, Third Edition Introduction Integrating analog electrical transducers with

More information

AN1730. Digital Amplification Control of an Analog Signal Using the MC68HC705J1A. Introduction

AN1730. Digital Amplification Control of an Analog Signal Using the MC68HC705J1A. Introduction Order this document by /D Digital Amplification Control of an Analog Signal Using the MC68HC705JA By Mark Glenewinkel Consumer Systems Group Austin, Texas Introduction This application note describes the

More information

Long Loopstick Antenna

Long Loopstick Antenna Long Loopstick Antenna Wound on a 3 foot length of PVC pipe, the long loopstick antenna was an experiment to try to improve AM radio reception without using a long wire or ground. It works fairly well

More information

Difference between BJTs and FETs. Junction Field Effect Transistors (JFET)

Difference between BJTs and FETs. Junction Field Effect Transistors (JFET) Difference between BJTs and FETs Transistors can be categorized according to their structure, and two of the more commonly known transistor structures, are the BJT and FET. The comparison between BJTs

More information

ML4818 Phase Modulation/Soft Switching Controller

ML4818 Phase Modulation/Soft Switching Controller Phase Modulation/Soft Switching Controller www.fairchildsemi.com Features Full bridge phase modulation zero voltage switching circuit with programmable ZV transition times Constant frequency operation

More information

MM58174A Microprocessor-Compatible Real-Time Clock

MM58174A Microprocessor-Compatible Real-Time Clock MM58174A Microprocessor-Compatible Real-Time Clock General Description The MM58174A is a low-threshold metal-gate CMOS circuit that functions as a real-time clock and calendar in bus-oriented microprocessor

More information

ADC0844/ADC Bit µp Compatible A/D Converters with Multiplexer Options

ADC0844/ADC Bit µp Compatible A/D Converters with Multiplexer Options ADC0844/ADC0848 8-Bit µp Compatible A/D Converters with Multiplexer Options General Description The ADC0844 and ADC0848 are CMOS 8-bit successive approximation A/D converters with versatile analog input

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

Hardware Platforms and Sensors

Hardware Platforms and Sensors Hardware Platforms and Sensors Tom Spink Including material adapted from Bjoern Franke and Michael O Boyle Hardware Platform A hardware platform describes the physical components that go to make up a particular

More information

Analog I/O. ECE 153B Sensor & Peripheral Interface Design Winter 2016

Analog I/O. ECE 153B Sensor & Peripheral Interface Design Winter 2016 Analog I/O ECE 153B Sensor & Peripheral Interface Design Introduction Anytime we need to monitor or control analog signals with a digital system, we require analogto-digital (ADC) and digital-to-analog

More information

Octal Sample-and-Hold with Multiplexed Input SMP18

Octal Sample-and-Hold with Multiplexed Input SMP18 a FEATURES High Speed Version of SMP Internal Hold Capacitors Low Droop Rate TTL/CMOS Compatible Logic Inputs Single or Dual Supply Operation Break-Before-Make Channel Addressing Compatible With CD Pinout

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

ELG3336: Converters Analog to Digital Converters (ADCs) Digital to Analog Converters (DACs)

ELG3336: Converters Analog to Digital Converters (ADCs) Digital to Analog Converters (DACs) ELG3336: Converters Analog to Digital Converters (ADCs) Digital to Analog Converters (DACs) Digital Output Dout 111 110 101 100 011 010 001 000 ΔV, V LSB V ref 8 V FSR 4 V 8 ref 7 V 8 ref Analog Input

More information

MICROCONTROLLER TUTORIAL II TIMERS

MICROCONTROLLER TUTORIAL II TIMERS MICROCONTROLLER TUTORIAL II TIMERS WHAT IS A TIMER? We use timers every day - the simplest one can be found on your wrist A simple clock will time the seconds, minutes and hours elapsed in a given day

More information

Section 1. Fundamentals of DDS Technology

Section 1. Fundamentals of DDS Technology Section 1. Fundamentals of DDS Technology Overview Direct digital synthesis (DDS) is a technique for using digital data processing blocks as a means to generate a frequency- and phase-tunable output signal

More information

[Ahmed, 3(1): January, 2014] ISSN: Impact Factor: 1.852

[Ahmed, 3(1): January, 2014] ISSN: Impact Factor: 1.852 IJESRT INTERNATIONAL JOURNAL OF ENGINEERING SCIENCES & RESEARCH TECHNOLOGY Microcontroller Based Advanced Triggering Circuit for Converters/Inverters Zameer Ahmad *1, S.N. Singh 2 *1,2 M.Tech Student,

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

SB.5 MODEL 3200 / 3300 DIGITAL INDICATOR INSTRUCTION MANUAL. Instrument Series

SB.5 MODEL 3200 / 3300 DIGITAL INDICATOR INSTRUCTION MANUAL. Instrument Series SB.5 MODEL 3200 / 3300 DIGITAL INDICATOR INSTRUCTION MANUAL 3000 Instrument Series Copyright 1996, Daytronic Corporation. All rights reserved. No part of this document may be reprinted, reproduced, or

More information

Hashemite University Faculty of Engineering Mechatronics Engineering Department. Microprocessors and Microcontrollers Laboratory

Hashemite University Faculty of Engineering Mechatronics Engineering Department. Microprocessors and Microcontrollers Laboratory Hashemite University Faculty of Engineering Mechatronics Engineering Department Microprocessors and Microcontrollers Laboratory The Hashemite University Faculty of Engineering Department of Mechatronics

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

LM12454,LM12458,LM12H458

LM12454,LM12458,LM12H458 LM12454,LM12458,LM12H458 LM12454/LM12458/LM12H458 12-Bit + Sign Data Acquisition System with Self-Calibration Literature Number: SNAS079A 12-Bit + Sign Data Acquisition System with Self-Calibration General

More information

Digital Electronics 8. Multiplexer & Demultiplexer

Digital Electronics 8. Multiplexer & Demultiplexer 1 Module -8 Multiplexers and Demultiplexers 1 Introduction 2 Principles of Multiplexing and Demultiplexing 3 Multiplexer 3.1 Types of multiplexer 3.2 A 2 to 1 multiplexer 3.3 A 4 to 1 multiplexer 3.4 Multiplex

More information

/ ABSTRACT

/  ABSTRACT ABSTRACT The manual method of synchronization demands a skilled operator and the method is suitable for no load operation or normal frequency condition. under emergency condition such as lowering of frequency

More information

CATALOG. ANALOG COMMUNICATION SYSTEMS DIGITAL COMMUNICATION SYSTEMS Microcontroller kits Arm controller kits PLC Trainer KITS Regulated Power supplies

CATALOG. ANALOG COMMUNICATION SYSTEMS DIGITAL COMMUNICATION SYSTEMS Microcontroller kits Arm controller kits PLC Trainer KITS Regulated Power supplies CATALOG ANALOG COMMUNICATION SYSTEMS DIGITAL COMMUNICATION SYSTEMS Microcontroller kits Arm controller kits PLC Trainer KITS Regulated Power supplies UNION INTRUMENTS #17 & 18, 4 th floor, Hanumathra Arcade

More information

DTMF Signal Detection Using Z8 Encore! XP F64xx Series MCUs

DTMF Signal Detection Using Z8 Encore! XP F64xx Series MCUs DTMF Signal Detection Using Z8 Encore! XP F64xx Series MCUs AN033501-1011 Abstract This application note demonstrates Dual-Tone Multi-Frequency (DTMF) signal detection using Zilog s Z8F64xx Series microcontrollers.

More information

PIN CONFIGURATIONS FEATURES APPLICATION ORDERING INFORMATION. FE, N Packages

PIN CONFIGURATIONS FEATURES APPLICATION ORDERING INFORMATION. FE, N Packages DESCRIPTION The are monolithic sample-and-hold circuits which utilize high-voltage ion-implant JFET technology to obtain ultra-high DC accuracy with fast acquisition of signal and low droop rate. Operating

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

Embedded Systems and Software

Embedded Systems and Software Embedded Systems and Software Notes on Lab 2 Embedded Systems in Vehicles Lecture 2-4, Slide 1 Lab 02 In this lab students implement an interval timer using a pushbutton switch, ATtiny45, an LED driver,

More information

A Digital Multimeter Using the ADD3501

A Digital Multimeter Using the ADD3501 A Digital Multimeter Using the ADD3501 INTRODUCTION National Semiconductor s ADD3501 is a monolithic CMOS IC designed for use as a 3 -digit digital voltmeter The IC makes use of a pulse-modulation analog-to-digital

More information

Lesson 7. Digital Signal Processors

Lesson 7. Digital Signal Processors Lesson 7 Digital Signal Processors Instructional Objectives After going through this lesson the student would learn o Architecture of a Real time Signal Processing Platform o Different Errors introduced

More information

Chapter 5: Signal conversion

Chapter 5: Signal conversion Chapter 5: Signal conversion Learning Objectives: At the end of this topic you will be able to: explain the need for signal conversion between analogue and digital form in communications and microprocessors

More information

Dedan Kimathi University of technology. Department of Electrical and Electronic Engineering. EEE2406: Instrumentation. Lab 2

Dedan Kimathi University of technology. Department of Electrical and Electronic Engineering. EEE2406: Instrumentation. Lab 2 Dedan Kimathi University of technology Department of Electrical and Electronic Engineering EEE2406: Instrumentation Lab 2 Title: Analogue to Digital Conversion October 2, 2015 1 Analogue to Digital Conversion

More information

Topics Introduction to Microprocessors

Topics Introduction to Microprocessors Topics 2244 Introduction to Microprocessors Chapter 8253 Programmable Interval Timer/Counter Suree Pumrin,, Ph.D. Interfacing with 886/888 Programming Mode 2244 Introduction to Microprocessors 2 8253/54

More information

PC-OSCILLOSCOPE PCS500. Analog and digital circuit sections. Description of the operation

PC-OSCILLOSCOPE PCS500. Analog and digital circuit sections. Description of the operation PC-OSCILLOSCOPE PCS500 Analog and digital circuit sections Description of the operation Operation of the analog section This description concerns only channel 1 (CH1) input stages. The operation of CH2

More information

ALD500RAU/ALD500RA/ALD500R PRECISION INTEGRATING ANALOG PROCESSOR WITH PRECISION VOLTAGE REFERENCE

ALD500RAU/ALD500RA/ALD500R PRECISION INTEGRATING ANALOG PROCESSOR WITH PRECISION VOLTAGE REFERENCE ADVANCED LINEAR DEVICES, INC. ALD500RAU/ALD500RA/ALD500R PRECISION INTEGRATING ANALOG PROCESSOR WITH PRECISION VOLTAGE REFERENCE APPLICATIONS 4 1/2 digits to 5 1/2 digits plus sign measurements Precision

More information

CHAPTER 6 DIGITAL INSTRUMENTS

CHAPTER 6 DIGITAL INSTRUMENTS CHAPTER 6 DIGITAL INSTRUMENTS 1 LECTURE CONTENTS 6.1 Logic Gates 6.2 Digital Instruments 6.3 Analog to Digital Converter 6.4 Electronic Counter 6.6 Digital Multimeters 2 6.1 Logic Gates 3 AND Gate The

More information

MICROPROCESSORS A (17.383) Fall Lecture Outline

MICROPROCESSORS A (17.383) Fall Lecture Outline MICROPROCESSORS A (17.383) Fall 2010 Lecture Outline Class # 07 October 26, 2010 Dohn Bowden 1 Today s Lecture Syllabus review Microcontroller Hardware and/or Interface Finish Analog to Digital Conversion

More information

Linear Integrated Circuits

Linear Integrated Circuits Linear Integrated Circuits Single Slope ADC Comparator checks input voltage with integrated reference voltage, V REF At the same time the number of clock cycles is being counted. When the integrator output

More information

Basic electronics Prof. T.S. Natarajan Department of Physics Indian Institute of Technology, Madras Lecture- 24

Basic electronics Prof. T.S. Natarajan Department of Physics Indian Institute of Technology, Madras Lecture- 24 Basic electronics Prof. T.S. Natarajan Department of Physics Indian Institute of Technology, Madras Lecture- 24 Mathematical operations (Summing Amplifier, The Averager, D/A Converter..) Hello everybody!

More information

Using the ADC0808 ADC Bit mp Compatible A D Converters with 8-Channel Analog Multiplexer

Using the ADC0808 ADC Bit mp Compatible A D Converters with 8-Channel Analog Multiplexer Using the ADC0808 ADC0809 8-Bit mp Compatible AD Converters with 8-Channel Analog Multiplexer INTRODUCTION The ADC0808ADC0809 Data Acquisition Devices (DAD) implement on a single chip most the elements

More information

Physical electronics, various electronics devices, ICs form the core of Electronics and Telecommunication branch. This part includes

Physical electronics, various electronics devices, ICs form the core of Electronics and Telecommunication branch. This part includes Paper-1 Syllabus for Electronics & Telecommunication Engineering: This part is for both objective and conventional type papers: 1) Materials and Components Materials and Components are the vertebral column

More information

Programmable DC Solid State Power Controller Module

Programmable DC Solid State Power Controller Module Programmable DC Solid State Power Controller Module Description: These Solid State Power Controller (SSPC) modules are designed to operate without any heatsink requirements. They are microcontroller-based

More information

Design and Implementation of AT Mega 328 microcontroller based firing control for a tri-phase thyristor control rectifier

Design and Implementation of AT Mega 328 microcontroller based firing control for a tri-phase thyristor control rectifier Design and Implementation of AT Mega 328 microcontroller based firing control for a tri-phase thyristor control rectifier 1 Mr. Gangul M.R PG Student WIT, Solapur 2 Mr. G.P Jain Assistant Professor WIT,

More information

B.E. SEMESTER III (ELECTRICAL) SUBJECT CODE: X30902 Subject Name: Analog & Digital Electronics

B.E. SEMESTER III (ELECTRICAL) SUBJECT CODE: X30902 Subject Name: Analog & Digital Electronics B.E. SEMESTER III (ELECTRICAL) SUBJECT CODE: X30902 Subject Name: Analog & Digital Electronics Sr. No. Date TITLE To From Marks Sign 1 To verify the application of op-amp as an Inverting Amplifier 2 To

More information

Scalable Regulated Three Phase Power Rectifier

Scalable Regulated Three Phase Power Rectifier Scalable Regulated Three Phase Power Rectifier ECE 481 Senior Design Final Presentation Tyler Budzianowski & Tao Nguyen Dec 7, 2004 Instructor: Dr. Jim Frenzel Technical Advisors: Dr. Herb Hess and Dr.

More information

DIY KIT 141. Multi-Mode Timer

DIY KIT 141. Multi-Mode Timer INTRODUCTION No one can call themselves an electronics hobbyist unless they have built a timer. There are many tens of designs using a variety of new and sometimes old circuits. Witness the longest surviving

More information

Construction. sunil kumar Electromechanical energy meters. Parts List

Construction. sunil kumar Electromechanical energy meters. Parts List Low-cost Energy Meter Using ADE7757 S.C. DWIVEDI sunil kumar Electromechanical energy meters have been the standard for metering the electricity since billing began. But these are now being gradually replaced

More information

Electrical Materials may be referred to a metal, dielectrics,electrical insulators or conductors,paramagnetic materials and many other.

Electrical Materials may be referred to a metal, dielectrics,electrical insulators or conductors,paramagnetic materials and many other. Electrical Engineering Paper-1 Syllabus : This part is for both objective and conventional types papers : 1) EM Theory- The electromagnetic force is said to be one of the fundamental interactions in nature

More information

Computerized Data Acquisition Systems. Chapter 4

Computerized Data Acquisition Systems. Chapter 4 Computerized Data Acquisition Systems Chapter 4 Data Acquisition - Objectives State and discuss in terms a bright high school student would understand the following definitions related to data acquisition

More information

GCE A level 1145/01 ELECTRONICS ET5. P.M. THURSDAY, 31 May hours. Centre Number. Candidate Number. Surname. Other Names

GCE A level 1145/01 ELECTRONICS ET5. P.M. THURSDAY, 31 May hours. Centre Number. Candidate Number. Surname. Other Names Surname Other Names Centre Number 0 Candidate Number GCE A level 1145/01 ELECTRONICS ET5 P.M. THURSDAY, 31 May 2012 1 1 2 hours For s use Question Maximum Mark Mark Awarded 1. 6 2. 9 3. 8 4. 6 1145 010001

More information

6. HARDWARE PROTOTYPE AND EXPERIMENTAL RESULTS

6. HARDWARE PROTOTYPE AND EXPERIMENTAL RESULTS 6. HARDWARE PROTOTYPE AND EXPERIMENTAL RESULTS Laboratory based hardware prototype is developed for the z-source inverter based conversion set up in line with control system designed, simulated and discussed

More information

DS1802 Dual Audio Taper Potentiometer With Pushbutton Control

DS1802 Dual Audio Taper Potentiometer With Pushbutton Control www.dalsemi.com FEATURES Ultra-low power consumption Operates from 3V or 5V supplies Two digitally controlled, 65-position potentiometers including mute Logarithmic resistive characteristics (1 db per

More information

GCSE (9-1) WJEC Eduqas GCSE (9-1) in ELECTRONICS ACCREDITED BY OFQUAL DESIGNATED BY QUALIFICATIONS WALES SAMPLE ASSESSMENT MATERIALS

GCSE (9-1) WJEC Eduqas GCSE (9-1) in ELECTRONICS ACCREDITED BY OFQUAL DESIGNATED BY QUALIFICATIONS WALES SAMPLE ASSESSMENT MATERIALS GCSE (9-1) WJEC Eduqas GCSE (9-1) in ELECTRONICS ACCREDITED BY OFQUAL DESIGNATED BY QUALIFICATIONS WALES SAMPLE ASSESSMENT MATERIALS Teaching from 2017 For award from 2019 GCSE ELECTRONICS Sample Assessment

More information

Computer Architecture and Organization:

Computer Architecture and Organization: Computer Architecture and Organization: L03: Register transfer and System Bus By: A. H. Abdul Hafez Abdul.hafez@hku.edu.tr, ah.abdulhafez@gmail.com 1 CAO, by Dr. A.H. Abdul Hafez, CE Dept. HKU Outlines

More information

Module 5 Control for a Purpose

Module 5 Control for a Purpose Module 5 Control for a Purpose Learning Objectives Student is able to: Pass/ Merit 1 Design a control system P 2 Build a sequence of events to activate multiple devices concurrently P 3 Correct and improve

More information