4. Optical position sensor, photo-current measurement

Size: px
Start display at page:

Download "4. Optical position sensor, photo-current measurement"

Transcription

1 4. Optical position sensor, photo-current measurement Task 1. Measure the output signal of photo-electric sensors Measure the relative dependency of output signal versus light intensity. The dependence of produced light intensity versus excitation current is supposed to be linear (for the LED used to excite the photo-electric detectors). Prepare charts showing the output current dependency on light intensity, each containing at least six different current values: a) photodiode BPW34 (Vishay) in short-circuiting connection, b) photo-transistor PT204-6C (Everlight) 2. Dynamic behavior of a photo-transistor based sensor Determine the output response of a PT204-6C photo-transistor on optical impulse. Estimate maximum frequency of a rectangular optical signal that could be observed with that phototransistor. The light source is excited by impulses 0.5 ms long with a frequency f=300 Hz (impulse generator G5-6). Observe the excitation as well as the output signal with a digital oscilloscope. Make a chart of those signals. What is the rise and fall time of the input and output waveform? 3. Reflexive sensor with a diffuse reflection Observe the properties of a simple reflexive sensor. The sensor consists of two elements. Red LED illuminates the target and the photo-transistor PT204-6C senses the reflected light. The target is a piece of a white office paper (100 x 80 mm). What is the main problem of this simple sensor, how the ambient light influences the measurement? Measure the photo-transistor response if the LED is permanently switched off (on). Make a chart: photo-transistor output versus the distance of the target (distances 5, 10, 15 and 20 cm). The LED is switched on if the MOD input is left unconnected and switched off if the MOD input is tied to ground. Up to which distance is there a change in output between the two states (LED on - off)? 4. Suppression of the ambient light influence by modulation Use modulation of the LED excitation current in order to eliminate the influence of ambient light on the sensor output. Use the pulse generator set to approximately 300Hz for the LED excitation. Check the output signal with the oscilloscope. Insert a high-pass filter between the sensor output and the oscilloscope. The filter should remove the DC part of the signal and greatly reduce the low frequency disturbances caused by fluorescent lamps. Observe the amplitude of the impulses at the high-pass filter output with respect to the distance of the reflective target. 5. Demonstration of the functionality of the LEGO NXT optical sensor Check out the functionality of the LEGO optical sensor as a target proximity detector. Use the same target as in previous tasks (100x80mm white paper card). There are three modes programmed to the NXT control unit: LED on, LED off, LED blinking. Observe the ambient light influence on the ability to detect the target in different modes. How to run the NXT application: connect the NXT brick to the power supply (12VDC), switch on by pressing the orange button, select and run program called SME by repeated pressing of the orange button. Program & sensor functionality: 1/8

2 1. Measures the ambient light (LED switched off) 2. Measures the ambient light + the reflected light (LED switched on) 3. LED is blinking at moderate frequency (the frequency is limited by the software...) Three values are presented on the brick s LCD: OFF (ambient light), ON (ambient light + reflected light), DIFF (difference between ON and OFF) The external sensor-switch located on the right side of the brick is used to change the modes. Notes and explanations -> 1) Measurement of the photo-electric detectors output signals There are two LEDs connected in series which illuminate the pair of sensors: photo-diode FD BPW34 and photo-transistor FT type PT204-6C. Overall simplified circuit diagram is presented on Fig.1. Symmetrical power supply is needed to power up the circuit: +12 V a -12 V, e.g. (or possibly +15 V a -15 V e.g. BK125). 0 () 100 k U K + ma In i A 820 regul. power supply + Gnd FD voltmetr Hi Com 1234 K FT Fig.1 Overall circuit diagram for measurements with the photo-diode and photo-transistor The photo-diode FD is connected to the terminal marked. The measurement is done in a short-circuited mode (terminals and In are interconnected). There is a current to voltage converter with op-amp OP482. The photo-transistor is connected like an emitter follower. The parasitic capacitance of the drain-gate junction then less influences the dynamic properties. The resistor connected to emitter (10 kω) serves as a current to voltage converter ( ). The maximal current going through the LEDs (measured by ammeter) should not be higher than ma. The current sufficient for the measurement is about 1 to 5 ma. Current calculation: LED forward voltage is approximately 2V, there are two LEDs connected in series. 2/8

3 -> 2) Measurement of dynamic properties of the photo-transistor Use an impulse generator to generate current pulses for the LED excitation. terminal of the generator is connected to K input; output of the generator is connected to A input. There are two LEDs in series, it is needed to provide at least 4V (high level of the output pulse) to light up the LEDs (check the level with an oscilloscope). 0 () 100 k U K In i A 820 oscil. impuls gen. Out Gnd FD CH1 CH2 K FT Fig.2. Circuit for measurement of dynamic properties of the photo elements -> 3) Reflective sensor with diffuse light reflection The circuit is powered through linear voltage regulator so it accepts input voltage between V. The LED is controlled via modulation input MOD. The LED is switched on if the input is not connected; switched off if the MOD input is grounded Ucc = +5 V 1n5 330k 2k7 240 voltmetr Hi Lo 1234 MOD 27 k Fig.3 Overall circuit diagram of the reflective sensor (static measurement) 3/8

4 -> 4) Suppression of the ambient light influence by modulation The MOD input is excited by the square wave from the pulse generator (low level = 0V, high level = 3...5V). Set the pulse length to 0.5ms and frequency to 333Hz. Use the same signal for the synchronization of the oscilloscope (trigger on this channel). Compare the signal before and after the high-pass filter ( and terminals) Ucc = +5 V 1n5 330k oscil. 2k7 240 CH1 CH2 impuls gen. Out Gnd MOD 27 k Fig.4 Overall circuit diagram of the reflective sensor (dynamic measurement) -> 5) Sensor LEGO NXT a) There is a raw ADC value shown on the LCD (0-1023), it corresponds to 10-bit AD converter output of the ATMEGA48 microcontroller. It is given by the electric circuit that lower value means higher illumination of the sensor (photo-transistor). b) In order to make the output values more stable the ADC readings are averaged (256x in static mode, 8x while blinking). It suppresses the disturbance caused by fluorescent lighting (100Hz) and eliminates the electric noise effects (CPU clock, switched power supply...). Fig. 5 Circuit diagram of the LEGO MINDSTORMS NXT light sensor 4/8

5 LEGO NXT brick source code (Bricx), uses light sensor and one button sensor to change the operational mode: // Senzory a mereni - light sensor demo // unsigned char state = 0; unsigned char ready_count = 0; bool ready_flag = false; bool blink_flag = false; long avg; long avg_0; long avg_1; int i; string msg; #define TOUCH_WAIT 40 task main(){ TextOut(0, LCD_LINE3, "LED OFF"); TextOut(0, LCD_LINE5, "out:"); SetSensorLight(IN_1,false); SetSensorTouch(IN_2); while(1){ //init if(sensor_2 && ready_flag){ state++; if(state > 2){state = 0;}; ready_flag = 0; ready_count = 0; switch(state){ case 0: blink_flag = false; Wait(10); TextOut(0, LCD_LINE3, "LED OFF"); TextOut(0, LCD_LINE5, "out:"); SetSensorLight(IN_1,false); break; case 1: blink_flag = false; Wait(10); TextOut(0, LCD_LINE3, "LED ON"); TextOut(0, LCD_LINE5, "out:"); SetSensorLight(IN_1,true); break; case 2: Wait(10); 5/8

6 TextOut(0, LCD_LINE3, "LED BLINKING"); TextOut(0, LCD_LINE5, "out OFF:"); TextOut(0, LCD_LINE6, "out ON:"); TextOut(0, LCD_LINE7, "out DIFF:"); blink_flag = true; break; } }//if(sensor_2 && ready_flag){ ready_count++; if (ready_count > TOUCH_WAIT){ ready_flag = true; ready_count = 0; }; //(ready_count > TOUCH_WAIT) if (blink_flag){ avg_0=0; avg_1=1; for(i=0;i<8;i++){ //filtering ready_count +=3; SetSensorLight(IN_1,true); Wait(4); avg_1 += SensorRaw(S1); Wait(1); SetSensorLight(IN_1,false); Wait(4); avg_0 += SensorRaw(S1); Wait(1); }//for(i=0;i<8;i++) avg_0 /=8; avg_1 /=8; sprintf(msg, "%+04d", (avg_0)); TextOut(60, LCD_LINE5, msg); //LED OFF sprintf(msg, "%+04d", (avg_1)); TextOut(60, LCD_LINE6, msg); //LED ON sprintf(msg, "%+04d", (avg_0 - avg_1)); TextOut(60, LCD_LINE7, msg); //DIFFERENCE }else{ //!(blink_flag) avg=0; for(i=0;i<256;i++){ //filtering avg += SensorRaw(S1); }//for(i=0;i<256;i++) avg /=256; sprintf(msg, "%+04d", (avg)); TextOut(30, LCD_LINE5, msg); }; //(blink_flag) }//while(1) }//main() 6/8

1. Learn about the 555 timer integrated circuit and applications 2. Apply the 555 timer to build an infrared (IR) transmitter and receiver

1. Learn about the 555 timer integrated circuit and applications 2. Apply the 555 timer to build an infrared (IR) transmitter and receiver Electronics Exercise 2: The 555 Timer and its Applications Mechatronics Instructional Laboratory Woodruff School of Mechanical Engineering Georgia Institute of Technology Lab Director: I. Charles Ume,

More information

Using Arduino Microcontrollers to Sense DC Motor Speed and Position

Using Arduino Microcontrollers to Sense DC Motor Speed and Position ECE480 Design Team 3 Using Arduino Microcontrollers to Sense DC Motor Speed and Position Tom Manner April 4, 2011 page 1 of 7 Table of Contents 1. Introduction ----------------------------------------------------------

More information

Pulse Width Modulation (PWM) LED Dimmer Circuit. Using a 555 Timer Chip

Pulse Width Modulation (PWM) LED Dimmer Circuit. Using a 555 Timer Chip Pulse Width Modulation (PWM) LED Dimmer Circuit Using a 555 Timer Chip Goals of Experiment Demonstrate the operation of a simple PWM circuit that can be used to adjust the intensity of a green LED by varying

More information

Allen-Bradley/Rockwell

Allen-Bradley/Rockwell MANUFACTURER DATA SHEET High Speed Counter Manufacturer: Allen-radley/Rockwell Model Number: 1746-HSCE See www.geomartin.com for additional PDF datasheets Martin Part Number: E-014901-03 VendorPartNumber:

More information

Photodiode/Phototransistor Application Circuit < E V3 I P I V OUT E V2. Figure 1. Fundamental Circuit of Photodiode (Without Bias)

Photodiode/Phototransistor Application Circuit < E V3 I P I V OUT E V2. Figure 1. Fundamental Circuit of Photodiode (Without Bias) Application Note Photodiode/Phototransistor Application Circuit FUNDAMENTAL PHOTODIODE CIRCUITS Figures 1 and 2 show the fundamental photodiode circuits. The circuit shown in Figure 1 transforms a photocurrent

More information

If an occupancy of room is zero, i.e. room is empty then light source will be switched off automatically

If an occupancy of room is zero, i.e. room is empty then light source will be switched off automatically EE389 Electronic Design Lab Project Report, EE Dept, IIT Bombay, Nov 2009 Fully-automated control of lighting and security system of a Room Group No: D2 Bharat Bhushan (06d04026) Sravan

More information

IR Receiver Module for Light Barrier Systems

IR Receiver Module for Light Barrier Systems Not for New Design - Alternative Available: New TSSP4038 (#82458) www.vishay.com IR Receiver Module for Light Barrier Systems TSOP4038 2 3 MECHANICAL DATA Pinning: = OUT, 2 = GND., 3 = V S 6672 FEATURES

More information

ABB Drives. User s Manual HTL Encoder Interface FEN-31

ABB Drives. User s Manual HTL Encoder Interface FEN-31 ABB Drives User s Manual HTL Encoder Interface FEN-31 HTL Encoder Interface FEN-31 User s Manual 3AUA0000031044 Rev B EN EFFECTIVE: 2010-04-06 2010 ABB Oy. All Rights Reserved. 5 Safety instructions

More information

CHAPTER 11: Flip Flops

CHAPTER 11: Flip Flops CHAPTER 11: Flip Flops In this chapter, you will be building the part of the circuit that controls the command sequencing. The required circuit must operate the counter and the memory chip. When the teach

More information

Bipolar Transistor Amplifiers

Bipolar Transistor Amplifiers Physics 3330 Experiment #7 Fall 2005 Bipolar Transistor Amplifiers Purpose The aim of this experiment is to construct a bipolar transistor amplifier with a voltage gain of minus 25. The amplifier must

More information

Programmable Single-/Dual-/Triple- Tone Gong SAE 800

Programmable Single-/Dual-/Triple- Tone Gong SAE 800 Programmable Single-/Dual-/Triple- Tone Gong Preliminary Data SAE 800 Bipolar IC Features Supply voltage range 2.8 V to 18 V Few external components (no electrolytic capacitor) 1 tone, 2 tones, 3 tones

More information

Electronic Brick of Current Sensor

Electronic Brick of Current Sensor Electronic Brick of Current Sensor Overview What is an electronic brick? An electronic brick is an electronic module which can be assembled like Lego bricks simply by plugging in and pulling out. Compared

More information

AP331A XX G - 7. Lead Free G : Green. Packaging (Note 2)

AP331A XX G - 7. Lead Free G : Green. Packaging (Note 2) Features General Description Wide supply Voltage range: 2.0V to 36V Single or dual supplies: ±1.0V to ±18V Very low supply current drain (0.4mA) independent of supply voltage Low input biasing current:

More information

Transistor Amplifiers

Transistor Amplifiers Physics 3330 Experiment #7 Fall 1999 Transistor Amplifiers Purpose The aim of this experiment is to develop a bipolar transistor amplifier with a voltage gain of minus 25. The amplifier must accept input

More information

Adjustment functions for both span and shift have been incorporated

Adjustment functions for both span and shift have been incorporated SENSORS FOR SERIES LED Type Wafer Alignment Sensor FX-0-F FT-F9 FD-F7 EX-F70/F60 M SH-7 FD-L4 M-DW The use of a safe LED light beam now allows for high precision detection with a resolution of 0!m (.8

More information

Conversion Between Analog and Digital Signals

Conversion Between Analog and Digital Signals ELET 3156 DL - Laboratory #6 Conversion Between Analog and Digital Signals There is no pre-lab work required for this experiment. However, be sure to read through the assignment completely prior to starting

More information

IR Communication a learn.sparkfun.com tutorial

IR Communication a learn.sparkfun.com tutorial IR Communication a learn.sparkfun.com tutorial Available online at: http://sfe.io/t33 Contents Getting Started IR Communication Basics Hardware Setup Receiving IR Example Transmitting IR Example Resources

More information

LM 358 Op Amp. If you have small signals and need a more useful reading we could amplify it using the op amp, this is commonly used in sensors.

LM 358 Op Amp. If you have small signals and need a more useful reading we could amplify it using the op amp, this is commonly used in sensors. LM 358 Op Amp S k i l l L e v e l : I n t e r m e d i a t e OVERVIEW The LM 358 is a duel single supply operational amplifier. As it is a single supply it eliminates the need for a duel power supply, thus

More information

Adding Heart to Your Technology

Adding Heart to Your Technology RMCM-01 Heart Rate Receiver Component Product code #: 39025074 KEY FEATURES High Filtering Unit Designed to work well on constant noise fields SMD component: To be installed as a standard component to

More information

Preamplifier Circuit for IR Remote Control

Preamplifier Circuit for IR Remote Control Preamplifier Circuit for IR Remote Control 22906 FEATURES Carrier-out-function: carrier frequency and burst length accurately correspond to the input signal AC coupled response from 20 khz to 60 khz; all

More information

Speed Control Relays SX2

Speed Control Relays SX2 SX2 File 850 CONENS Description.....................................................Page General Information................................................ 2-3 SX2DV General Information...........................................

More information

ABB Drives. User s Manual. Pulse Encoder Interface Module RTAC-01

ABB Drives. User s Manual. Pulse Encoder Interface Module RTAC-01 ABB Drives User s Manual Pulse Encoder Interface Module RTAC-0 Pulse Encoder Interface Module RTAC-0 User s Manual 3AFE 64486853 REV A EN EFFECTIVE:.5.00 00 ABB Oy. All Rights Reserved. Safety instructions

More information

Frequency Response of Filters

Frequency Response of Filters School of Engineering Department of Electrical and Computer Engineering 332:224 Principles of Electrical Engineering II Laboratory Experiment 2 Frequency Response of Filters 1 Introduction Objectives To

More information

Current Loop Application Note 1495

Current Loop Application Note 1495 Current Loop Application Note Document No. CLAN1495 International Headquarter B&B Electronics Mfg. Co. Inc. 707 Dayton Road -- P.O. Box 1040 -- Ottawa, IL 61350 USA Phone (815) 433-5100 -- General Fax

More information

IR Receiver Modules for Remote Control Systems

IR Receiver Modules for Remote Control Systems IR Receiver Modules for Remote Control Systems FEATURES Very low supply current Photo detector and preamplifier in one package Internal filter for PCM frequency Supply voltage: 2.5 V to 5.5 V Improved

More information

A Digital Timer Implementation using 7 Segment Displays

A Digital Timer Implementation using 7 Segment Displays A Digital Timer Implementation using 7 Segment Displays Group Members: Tiffany Sham u2548168 Michael Couchman u4111670 Simon Oseineks u2566139 Caitlyn Young u4233209 Subject: ENGN3227 - Analogue Electronics

More information

Laboratory 4: Feedback and Compensation

Laboratory 4: Feedback and Compensation Laboratory 4: Feedback and Compensation To be performed during Week 9 (Oct. 20-24) and Week 10 (Oct. 27-31) Due Week 11 (Nov. 3-7) 1 Pre-Lab This Pre-Lab should be completed before attending your regular

More information

ARRL Morse Code Oscillator, How It Works By: Mark Spencer, WA8SME

ARRL Morse Code Oscillator, How It Works By: Mark Spencer, WA8SME The national association for AMATEUR RADIO ARRL Morse Code Oscillator, How It Works By: Mark Spencer, WA8SME This supplement is intended for use with the ARRL Morse Code Oscillator kit, sold separately.

More information

sensors Miniature Sensors - S100 The universal miniature photoelectric sensor

sensors Miniature Sensors - S100 The universal miniature photoelectric sensor Miniature Sensors - S1 The universal miniature photoelectric sensor Two threaded front mounting holes Two slotted rear mounting holes Anti-tampering sensor (no adjustment) Standard optic functions and

More information

Inductors in AC Circuits

Inductors in AC Circuits Inductors in AC Circuits Name Section Resistors, inductors, and capacitors all have the effect of modifying the size of the current in an AC circuit and the time at which the current reaches its maximum

More information

Photo Modules for PCM Remote Control Systems

Photo Modules for PCM Remote Control Systems Photo Modules for PCM Remote Control Systems Available types for different carrier frequencies Type fo Type fo TSOP183 3 khz TSOP1833 33 khz TSOP1836 36 khz TSOP1837 36.7 khz TSOP1838 38 khz TSOP184 4

More information

Compact Sensors - S8 Series. Compact size and high performance for the most challenging detection applications

Compact Sensors - S8 Series. Compact size and high performance for the most challenging detection applications Compact size and high performance for the most challenging detection applications Compact dimensions (14x42x25 mm) Background suppression for transparent and shiny objects High speed contrast sensor up

More information

AMPLIFIED HIGH SPEED FIBER PHOTODETECTOR USER S GUIDE

AMPLIFIED HIGH SPEED FIBER PHOTODETECTOR USER S GUIDE AMPLIFIED HIGH SPEED FIBER PHOTODETECTOR USER S GUIDE Thank you for purchasing your Amplified High Speed Fiber Photodetector. This user s guide will help answer any questions you may have regarding the

More information

Instruction Manual Service Program ULTRA-PROG-IR

Instruction Manual Service Program ULTRA-PROG-IR Instruction Manual Service Program ULTRA-PROG-IR Parameterizing Software for Ultrasonic Sensors with Infrared Interface Contents 1 Installation of the Software ULTRA-PROG-IR... 4 1.1 System Requirements...

More information

Analog to Digital Conversion of Sound with the MSP430F2013

Analog to Digital Conversion of Sound with the MSP430F2013 Analog to Digital Conversion of Sound with the MSP430F2013 Christopher Johnson 4/2/2010 Abstract Several modern-day applications require that analog signals be converted to digital signals in order to

More information

LEVERAGING FPGA AND CPLD DIGITAL LOGIC TO IMPLEMENT ANALOG TO DIGITAL CONVERTERS

LEVERAGING FPGA AND CPLD DIGITAL LOGIC TO IMPLEMENT ANALOG TO DIGITAL CONVERTERS LEVERAGING FPGA AND CPLD DIGITAL LOGIC TO IMPLEMENT ANALOG TO DIGITAL CONVERTERS March 2010 Lattice Semiconductor 5555 Northeast Moore Ct. Hillsboro, Oregon 97124 USA Telephone: (503) 268-8000 www.latticesemi.com

More information

SENSORS. Miniature Sensors - S3Z. Advanced line of miniature Asian style of photoelectric sensors. 40-300 mm background suppression

SENSORS. Miniature Sensors - S3Z. Advanced line of miniature Asian style of photoelectric sensors. 40-300 mm background suppression Advanced line of miniature Asian style of photoelectric sensors 4-3 background suppression.7 m proximity, 15 with narrow beam 4 m polarized retroreflective 3 m LASER through beam Standard 3-wire output

More information

Wireless Home Security System

Wireless Home Security System Wireless Home Security System Group: D14 Members: Vaibhav Singh (05D07026) Abhishek Tiwari (05D07028) Sauvik Chowdhury (05D07029) 1. Abstract The project is aimed at designing a low cost and reliable wireless

More information

Hello and welcome to this training module for the STM32L4 Liquid Crystal Display (LCD) controller. This controller can be used in a wide range of

Hello and welcome to this training module for the STM32L4 Liquid Crystal Display (LCD) controller. This controller can be used in a wide range of Hello and welcome to this training module for the STM32L4 Liquid Crystal Display (LCD) controller. This controller can be used in a wide range of applications such as home appliances, medical, automotive,

More information

IR Sensor Module for Reflective Sensor, Light Barrier, and Fast Proximity Applications

IR Sensor Module for Reflective Sensor, Light Barrier, and Fast Proximity Applications IR Sensor Module for Reflective Sensor, Light Barrier, and Fast Proximity Applications MECHANICAL DATA Pinning: = OUT, 2 = GND, 3 = V S 2 3 6672 APPLICATIONS Reflective sensors for hand dryers, towel or

More information

Experiment 2 Diode Applications: Rectifiers

Experiment 2 Diode Applications: Rectifiers ECE 3550 - Practicum Fall 2007 Experiment 2 Diode Applications: Rectifiers Objectives 1. To investigate the characteristics of half-wave and full-wave rectifier circuits. 2. To recognize the usefulness

More information

BJT Characteristics and Amplifiers

BJT Characteristics and Amplifiers BJT Characteristics and Amplifiers Matthew Beckler beck0778@umn.edu EE2002 Lab Section 003 April 2, 2006 Abstract As a basic component in amplifier design, the properties of the Bipolar Junction Transistor

More information

Programmable-Gain Transimpedance Amplifiers Maximize Dynamic Range in Spectroscopy Systems

Programmable-Gain Transimpedance Amplifiers Maximize Dynamic Range in Spectroscopy Systems Programmable-Gain Transimpedance Amplifiers Maximize Dynamic Range in Spectroscopy Systems PHOTODIODE VOLTAGE SHORT-CIRCUIT PHOTODIODE SHORT- CIRCUIT VOLTAGE 0mV DARK ark By Luis Orozco Introduction Precision

More information

OPTOELECTRONIC SYSTEM FOR RELIABLE DETECTION OF DOCUMENT PRESENCE

OPTOELECTRONIC SYSTEM FOR RELIABLE DETECTION OF DOCUMENT PRESENCE INFOTEH-JAHORINA Vol. 10, Ref. C-6, p. 263-267, March 2011. OPTOELECTRONIC SYSTEM FOR RELIABLE DETECTION OF DOCUMENT PRESENCE Nikola Balaban, Aleksej Makarov, Vlatacom d.o.o., Belgrade Vujo Drndarević,

More information

Optocoupler, Phototransistor Output, with Base Connection

Optocoupler, Phototransistor Output, with Base Connection 4N25, 4N26, 4N27, 4N28 Optocoupler, Phototransistor Output, FEATURES A 6 B Isolation test voltage 5000 V RMS Interfaces with common logic families C 2 5 C Input-output coupling capacitance < pf NC 3 4

More information

Optical Fibres. Introduction. Safety precautions. For your safety. For the safety of the apparatus

Optical Fibres. Introduction. Safety precautions. For your safety. For the safety of the apparatus Please do not remove this manual from from the lab. It is available at www.cm.ph.bham.ac.uk/y2lab Optics Introduction Optical fibres are widely used for transmitting data at high speeds. In this experiment,

More information

IR Receiver Modules for Remote Control Systems

IR Receiver Modules for Remote Control Systems IR Receiver Modules for Remote Control Systems 1 2 MECHNICAL DATA Pinning for TSOP44.., TSOP48..: 1 = OUT, 2 = GND, 3 = V S Pinning for TSOP22.., TSOP24..: 1 = OUT, 2 = V S, 3 = GND 3 16672 FEATURES Improved

More information

Characteristic and use

Characteristic and use . Basic principle A PSD basically consists of a uniform resistive layer formed on one or both surfaces of a high-resistivity semiconductor substrate, and a pair of electrodes formed on both ends of the

More information

K817P/ K827PH/ K847PH. Optocoupler with Phototransistor Output. Vishay Semiconductors. Description. Applications. Features.

K817P/ K827PH/ K847PH. Optocoupler with Phototransistor Output. Vishay Semiconductors. Description. Applications. Features. Optocoupler with Phototransistor Output Description The K817P/ K827PH/ K847PH consist of a phototransistor optically coupled to a gallium arsenide infrared-emitting diode in an 4-lead up to 16 lead plastic

More information

IR Receiver Modules for Remote Control Systems

IR Receiver Modules for Remote Control Systems IR Receiver Modules for Remote Control Systems FEATURES Very low supply current Photo detector and preamplifier in one package Internal filter for PCM frequency Supply voltage: 2.5 V to 5.5 V Improved

More information

OPERATING MANUAL. Table of contents. 2 Phase Stepping Motor Driver 2M542. Rev. A. Introduction page 2. Specifications page 2 Timing chart page 3

OPERATING MANUAL. Table of contents. 2 Phase Stepping Motor Driver 2M542. Rev. A. Introduction page 2. Specifications page 2 Timing chart page 3 2 Phase Stepping Motor Driver 2M542 OPEATING MANUAL Table of contents Introduction page 2 Specifications page 2 Timing chart page 3 Setting page 4 Current set page 4 educe current function page 4 Micro

More information

Fiber Optics. Integrated Photo Detector Receiver for Plastic Fiber Plastic Connector Housing SFH551/1-1 SFH551/1-1V

Fiber Optics. Integrated Photo Detector Receiver for Plastic Fiber Plastic Connector Housing SFH551/1-1 SFH551/1-1V Fiber Optics Integrated Photo Detector Receiver for Plastic Fiber Plastic Connector Housing SFH551/1-1 Features Bipolar IC with open-collector output Digital output, TTL compatible Sensitive in visible

More information

Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science. 6.002 Electronic Circuits Spring 2007

Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science. 6.002 Electronic Circuits Spring 2007 Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science 6.002 Electronic Circuits Spring 2007 Lab 4: Audio Playback System Introduction In this lab, you will construct,

More information

RC Circuits and The Oscilloscope Physics Lab X

RC Circuits and The Oscilloscope Physics Lab X Objective RC Circuits and The Oscilloscope Physics Lab X In this series of experiments, the time constant of an RC circuit will be measured experimentally and compared with the theoretical expression for

More information

APPLICATION NOTES: Dimming InGaN LED

APPLICATION NOTES: Dimming InGaN LED APPLICATION NOTES: Dimming InGaN LED Introduction: Indium gallium nitride (InGaN, In x Ga 1-x N) is a semiconductor material made of a mixture of gallium nitride (GaN) and indium nitride (InN). Indium

More information

PCM Encoding and Decoding:

PCM Encoding and Decoding: PCM Encoding and Decoding: Aim: Introduction to PCM encoding and decoding. Introduction: PCM Encoding: The input to the PCM ENCODER module is an analog message. This must be constrained to a defined bandwidth

More information

Data Acquisition Module with I2C interface «I2C-FLEXEL» User s Guide

Data Acquisition Module with I2C interface «I2C-FLEXEL» User s Guide Data Acquisition Module with I2C interface «I2C-FLEXEL» User s Guide Sensors LCD Real Time Clock/ Calendar DC Motors Buzzer LED dimming Relay control I2C-FLEXEL PS2 Keyboards Servo Motors IR Remote Control

More information

PHASED OUT. Digital dimmable ballasts for fluorescent lamps ECO series. PCA TCL ECO, 18 80 W Compact and T5c fluorescent lamps

PHASED OUT. Digital dimmable ballasts for fluorescent lamps ECO series. PCA TCL ECO, 18 80 W Compact and T5c fluorescent lamps Product description Noise-free precise control via DSI signal or switchdim CELMA energy class A1 1) Interfaces DSI switchdim Integrated SMART-Interface Functions Optimum filament heating in any dimmer

More information

Electronic WorkBench tutorial

Electronic WorkBench tutorial Electronic WorkBench tutorial Introduction Electronic WorkBench (EWB) is a simulation package for electronic circuits. It allows you to design and analyze circuits without using breadboards, real components

More information

Digital to Analog Converter. Raghu Tumati

Digital to Analog Converter. Raghu Tumati Digital to Analog Converter Raghu Tumati May 11, 2006 Contents 1) Introduction............................... 3 2) DAC types................................... 4 3) DAC Presented.............................

More information

DEVELOPMENT OF DEVICES AND METHODS FOR PHASE AND AC LINEARITY MEASUREMENTS IN DIGITIZERS

DEVELOPMENT OF DEVICES AND METHODS FOR PHASE AND AC LINEARITY MEASUREMENTS IN DIGITIZERS DEVELOPMENT OF DEVICES AND METHODS FOR PHASE AND AC LINEARITY MEASUREMENTS IN DIGITIZERS U. Pogliano, B. Trinchera, G.C. Bosco and D. Serazio INRIM Istituto Nazionale di Ricerca Metrologica Torino (Italia)

More information

8-bit RISC Microcontroller. Application Note. AVR182: Zero Cross Detector

8-bit RISC Microcontroller. Application Note. AVR182: Zero Cross Detector AVR182: Zero Cross Detector Features Interrupt Driven Modular C Source Code Size Efficient Code Accurate and Fast Detection A Minimum of External Components Introduction One of the many issues with developing

More information

PHASED OUT. Digital dimmable ballasts for fluorescent lamps EXCEL one4all series. PCA TCL EXCEL one4all, 18 80 W Compact and T5c fluorescent lamps

PHASED OUT. Digital dimmable ballasts for fluorescent lamps EXCEL one4all series. PCA TCL EXCEL one4all, 18 80 W Compact and T5c fluorescent lamps EXCEL oneall series Product description Noise-free precise control via DSI signal, switchdim, corridorfunction or DALI DALI-MEMORY Extended DALI commands CELMA energy class A1 1) Interfaces DALI DSI switchdim

More information

Firmware version: 1.10 Issue: 7 AUTODIALER GD30.2. Instruction Manual

Firmware version: 1.10 Issue: 7 AUTODIALER GD30.2. Instruction Manual Firmware version: 1.10 Issue: 7 AUTODIALER GD30.2 Instruction Manual Firmware version: 2.0.1 Issue: 0.6 Version of the GPRS transmitters configurator: 1.3.6.3 Date of issue: 07.03.2012 TABLE OF CONTENTS

More information

Indirect X-ray photon counting image sensor with 27T pixels and 15 electrons RMS accurate threshold

Indirect X-ray photon counting image sensor with 27T pixels and 15 electrons RMS accurate threshold Indirect X-ray photon counting image sensor with 27T pixels and 15 electrons RMS accurate threshold B. Dierickx 1,2, B. Dupont 1,3, A. Defernez 1, N. Ahmed 1 1 Caeleste, Antwerp, Belgium 2 Vrije Universiteit

More information

Color Mark Sensor with Red or Green LED E3S-VS

Color Mark Sensor with Red or Green LED E3S-VS Color Mark Sensor with Red or Green LED Rugged IP67 Color Mark Sensor 1 ms response time Detects a wide variety of color marks PNP or NPN output ls Light-on/ Dark-on operation, wire selectable Vertical

More information

LABORATORY 2 THE DIFFERENTIAL AMPLIFIER

LABORATORY 2 THE DIFFERENTIAL AMPLIFIER LABORATORY 2 THE DIFFERENTIAL AMPLIFIER OBJECTIVES 1. To understand how to amplify weak (small) signals in the presence of noise. 1. To understand how a differential amplifier rejects noise and common

More information

Technical data. General specifications. Indicators/operating means. 30 Hz Multiplex operation 30 Hz / n, n = number of sensors, n 5

Technical data. General specifications. Indicators/operating means. 30 Hz Multiplex operation 30 Hz / n, n = number of sensors, n 5 Model Number Single head system Features Parameterization interface for the application-specific adjustment of the sensor setting via the service program ULTRA 000 programmable switch outputs Hysteresis

More information

Automotive Sensor Simulator. Automotive sensor simulator. Operating manual. AutoSim

Automotive Sensor Simulator. Automotive sensor simulator. Operating manual. AutoSim Automotive sensor simulator Operating manual AutoSim Contents Introduction.. page 3 Technical specifications.... page 4 Typical application of AutoSim simulator..... page 4 Device appearance... page 5

More information

Pulse Width Modulation

Pulse Width Modulation Pulse Width Modulation Pulse width modulation (PWM) is a powerful technique for controlling analog circuits with a microprocessor's digital outputs. PWM is employed in a wide variety of applications, ranging

More information

Type: EASY719 DC RC Article No.: 274119. Ordering information Relay outputs Quantity 6 Power supply V DC 24 V DC. Description

Type: EASY719 DC RC Article No.: 274119. Ordering information Relay outputs Quantity 6 Power supply V DC 24 V DC. Description Type: EASY719 DC RC Article.: 274119 Ordering information Relay outputs Quantity 6 Power supply V DC 24 V DC Description 12 digital inputs (4 inputs available as analog inputs) 6 relay outputs LCD display

More information

OPERATIONAL AMPLIFIERS. o/p

OPERATIONAL AMPLIFIERS. o/p OPERATIONAL AMPLIFIERS 1. If the input to the circuit of figure is a sine wave the output will be i/p o/p a. A half wave rectified sine wave b. A fullwave rectified sine wave c. A triangular wave d. A

More information

Lab 9: The Acousto-Optic Effect

Lab 9: The Acousto-Optic Effect Lab 9: The Acousto-Optic Effect Incoming Laser Beam Travelling Acoustic Wave (longitudinal wave) O A 1st order diffracted laser beam A 1 Introduction qb d O 2qb rarefractions compressions Refer to Appendix

More information

ACTIVE INFRARED MOTION DETECTOR FOR HOUSE SECURITY SYSTEM MIOR MOHAMMAD HAFIIZH BIN ABD. RANI UNIVERSITI MALAYSIA PAHANG

ACTIVE INFRARED MOTION DETECTOR FOR HOUSE SECURITY SYSTEM MIOR MOHAMMAD HAFIIZH BIN ABD. RANI UNIVERSITI MALAYSIA PAHANG ACTIVE INFRARED MOTION DETECTOR FOR HOUSE SECURITY SYSTEM MIOR MOHAMMAD HAFIIZH BIN ABD. RANI UNIVERSITI MALAYSIA PAHANG ABSTRACT Nowadays, house security system becomes the best solution to overcome house

More information

Vibration Monitoring System Adash 3600

Vibration Monitoring System Adash 3600 " User's guide Application: Vibration Monitoring System Adash 3600! Vibration diagnostics, monitoring and protective on-line system! On-line vibration monitoring system of engines, fans, pumps, gearboxes,

More information

Figure 1: Multiple unsynchronized snapshots of the same sinusoidal signal.

Figure 1: Multiple unsynchronized snapshots of the same sinusoidal signal. 1 Oscilloscope Guide Introduction An oscilloscope is a device used to observe and measure time-dependent electronic signals. It is essentially an enhanced voltmeter which displays a graph of potential

More information

Display Board Pulse Width Modulation (PWM) Power/Speed Controller Module

Display Board Pulse Width Modulation (PWM) Power/Speed Controller Module Display Board Pulse Width Modulation (PWM) Power/Speed Controller Module RS0 Microcontroller LEDs Motor Control Pushbuttons Purpose: To demonstrate an easy way of using a Freescale RS0K2 microcontroller

More information

Isolated AC Sine Wave Input 3B42 / 3B43 / 3B44 FEATURES APPLICATIONS PRODUCT OVERVIEW FUNCTIONAL BLOCK DIAGRAM

Isolated AC Sine Wave Input 3B42 / 3B43 / 3B44 FEATURES APPLICATIONS PRODUCT OVERVIEW FUNCTIONAL BLOCK DIAGRAM Isolated AC Sine Wave Input 3B42 / 3B43 / 3B44 FEATURES AC averaging technique used to rectify, amplify, and filter 50 Hz to 400 Hz sine-wave signals. Accepts inputs of between 20 mv to 550 V rms to give

More information

Micro-Step Driving for Stepper Motors: A Case Study

Micro-Step Driving for Stepper Motors: A Case Study Micro-Step Driving for Stepper Motors: A Case Study N. Sedaghati-Mokhtari Graduate Student, School of ECE, University of Tehran, Tehran, Iran n.sedaghati @ece.ut.ac.ir Abstract: In this paper, a case study

More information

Small Optical Encoder Modules 480lpi Digital Output. Features. Applications VCC 3 CHANNEL A 2 CHANNEL B 4 GND 1

Small Optical Encoder Modules 480lpi Digital Output. Features. Applications VCC 3 CHANNEL A 2 CHANNEL B 4 GND 1 HEDS-9730, HEDS-9731 Small Optical Encoder Modules 480lpi Digital Output Data Sheet Description The HEDS-973X is a high performance incremental encoder module. When operated in conjunction with either

More information

Section 3. Sensor to ADC Design Example

Section 3. Sensor to ADC Design Example Section 3 Sensor to ADC Design Example 3-1 This section describes the design of a sensor to ADC system. The sensor measures temperature, and the measurement is interfaced into an ADC selected by the systems

More information

Features. Modulation Frequency (khz) VDD. PLL Clock Synthesizer with Spread Spectrum Circuitry GND

Features. Modulation Frequency (khz) VDD. PLL Clock Synthesizer with Spread Spectrum Circuitry GND DATASHEET IDT5P50901/2/3/4 Description The IDT5P50901/2/3/4 is a family of 1.8V low power, spread spectrum clock generators capable of reducing EMI radiation from an input clock. Spread spectrum technique

More information

DIGITAL COUNTERS. Q B Q A = 00 initially. Q B Q A = 01 after the first clock pulse.

DIGITAL COUNTERS. Q B Q A = 00 initially. Q B Q A = 01 after the first clock pulse. DIGITAL COUNTERS http://www.tutorialspoint.com/computer_logical_organization/digital_counters.htm Copyright tutorialspoint.com Counter is a sequential circuit. A digital circuit which is used for a counting

More information

technical data (according to IEC 60947-5-2)

technical data (according to IEC 60947-5-2) Photoelectric sensors: Series 3#30 & 3#31 ü Complete miniature sensor series mm in rugged Crastin housings ü Shock & vibration resistant due to fully vacuum-potted electronics ü Diffuse sensors with precise

More information

Baseband delay line QUICK REFERENCE DATA

Baseband delay line QUICK REFERENCE DATA FEATURES Two comb filters, using the switched-capacitor technique, for one line delay time (64 µs) Adjustment-free application No crosstalk between SECAM colour carriers (diaphoty) Handles negative or

More information

Your Advantages For safety application up to PL e / Cat. 4 e.g. SIL 3 Manual or automatic start 0225592. * see variants. Applications.

Your Advantages For safety application up to PL e / Cat. 4 e.g. SIL 3 Manual or automatic start 0225592. * see variants. Applications. Safety Technique SAFEMASTER Emergency Stop Module BG 5924, IP 5924 Your Advantages For safety application up to PL e / Cat. 4 e.g. SIL 3 Manual or automatic start 0225592 BG 5924 IP 5924 Product Description

More information

TSL250, TSL251, TLS252 LIGHT-TO-VOLTAGE OPTICAL SENSORS

TSL250, TSL251, TLS252 LIGHT-TO-VOLTAGE OPTICAL SENSORS TSL50, TSL5, TLS5 SOES004C AUGUST 99 REVISED NOVEMBER 995 Monolithic Silicon IC Containing Photodiode, Operational Amplifier, and Feedback Components Converts Light Intensity to Output Voltage High Irradiance

More information

LM10. Micro Laser Displacement Sensor. The LM10 makes laser sensors super easy to use! New circuitry lowers costs

LM10. Micro Laser Displacement Sensor. The LM10 makes laser sensors super easy to use! New circuitry lowers costs 857 Micro Sensor General terms and conditions... P.1 Related Information Glossary of terms / General precautions... P.1019 / P.1027 Sensor selection guide... P.11~ / P.833~ About laser beam... P.1025 ~

More information

Ultrasound Distance Measurement

Ultrasound Distance Measurement Final Project Report E3390 Electronic Circuits Design Lab Ultrasound Distance Measurement Yiting Feng Izel Niyage Asif Quyyum Submitted in partial fulfillment of the requirements for the Bachelor of Science

More information

Annex: VISIR Remote Laboratory

Annex: VISIR Remote Laboratory Open Learning Approach with Remote Experiments 518987-LLP-1-2011-1-ES-KA3-KA3MP Multilateral Projects UNIVERSITY OF DEUSTO Annex: VISIR Remote Laboratory OLAREX project report Olga Dziabenko, Unai Hernandez

More information

24-Bit Analog-to-Digital Converter (ADC) for Weigh Scales FEATURES S8550 VFB. Analog Supply Regulator. Input MUX. 24-bit Σ ADC. PGA Gain = 32, 64, 128

24-Bit Analog-to-Digital Converter (ADC) for Weigh Scales FEATURES S8550 VFB. Analog Supply Regulator. Input MUX. 24-bit Σ ADC. PGA Gain = 32, 64, 128 24-Bit Analog-to-Digital Converter (ADC) for Weigh Scales DESCRIPTION Based on Avia Semiconductor s patented technology, HX711 is a precision 24-bit analogto-digital converter (ADC) designed for weigh

More information

DATA SHEET. TDA8560Q 2 40 W/2 Ω stereo BTL car radio power amplifier with diagnostic facility INTEGRATED CIRCUITS. 1996 Jan 08

DATA SHEET. TDA8560Q 2 40 W/2 Ω stereo BTL car radio power amplifier with diagnostic facility INTEGRATED CIRCUITS. 1996 Jan 08 INTEGRATED CIRCUITS DATA SHEET power amplifier with diagnostic facility Supersedes data of March 1994 File under Integrated Circuits, IC01 1996 Jan 08 FEATURES Requires very few external components High

More information

LAB 12: ACTIVE FILTERS

LAB 12: ACTIVE FILTERS A. INTRODUCTION LAB 12: ACTIVE FILTERS After last week s encounter with op- amps we will use them to build active filters. B. ABOUT FILTERS An electric filter is a frequency-selecting circuit designed

More information

Op Amp Circuit Collection

Op Amp Circuit Collection Op Amp Circuit Collection Note: National Semiconductor recommends replacing 2N2920 and 2N3728 matched pairs with LM394 in all application circuits. Section 1 Basic Circuits Inverting Amplifier Difference

More information

Sensors Collecting Manufacturing Process Data

Sensors Collecting Manufacturing Process Data Sensors & Actuators Sensors Collecting Manufacturing Process Data Data must be collected from the manufacturing process Data (commands and instructions) must be communicated to the process Data are of

More information

Transmissive Optical Sensor with Phototransistor Output

Transmissive Optical Sensor with Phototransistor Output TCST11. up to TCST23. Transmissive Optical Sensor with Phototransistor Output Description This device has a compact construction where the emitting-light sources and the detectors are located face-to-face

More information

Switch Actuator, 8-fold, 10 A, MDRC AT/S 8.10.1, GH Q631 0075 R0111

Switch Actuator, 8-fold, 10 A, MDRC AT/S 8.10.1, GH Q631 0075 R0111 , GH Q631 0075 R0111 The 8-fold switch actuator is a DIN rail mounted device for insertion in the distribution board. It is connected to the EIB via a bus terminal. In the event of bus voltage failure,

More information

Physics 120 Lab 6: Field Effect Transistors - Ohmic region

Physics 120 Lab 6: Field Effect Transistors - Ohmic region Physics 120 Lab 6: Field Effect Transistors - Ohmic region The FET can be used in two extreme ways. One is as a voltage controlled resistance, in the so called "Ohmic" region, for which V DS < V GS - V

More information

Lab 5 Getting started with analog-digital conversion

Lab 5 Getting started with analog-digital conversion Lab 5 Getting started with analog-digital conversion Achievements in this experiment Practical knowledge of coding of an analog signal into a train of digital codewords in binary format using pulse code

More information