6.115 Final Project Proposal: An RFID Access Control System

Size: px
Start display at page:

Download "6.115 Final Project Proposal: An RFID Access Control System"

Transcription

1 6.115 Final Project Proposal: An RFID Access Control System Christopher Merrill April 24, 2012 Abstract The goal of this nal project is to implement a device to read standard 125 khz RFID cards using the 8051 microcontroller and supporting hardware, and use the data from the RFID reader to implement an access control system. The 8051 will instruct a 8254 timer to produce a 125 khz carrier wave, and will continuously sample the resulting envelope of the signal to obtain the data stored on the RFID card. This data will be stored in RAM. Once the data is captured, the system will perform a lookup of access parameters in a data EEPROM and use this to allow or deny access to a storage chest. A log will be kept of all successful and failed access attempts in a separate log EEPROM. The system will also implement, over serial, a terminal that allows for reprogramming access controls and viewing the log le. 1 Background RFID readers work by driving an LC circuit at its resonant frequency, producing a large oscillating magnetic eld in the inductive component. A card is read when the magnetic eld from the reader is coupled with a similarly tuned circuit in the inductor, resulting in a transfer of power. By connecting and disconnecting additional load to the LC resonant antenna, the card is able to aect the eciency of the power transfer and produce an AM modulated signal at a measurement node on the reader module. RFID is a common access control mechanism, as cards can be created and programmed to produce dierent modulated data patterns. The reader can determine a unique ID for every card and associate this with specic permissions for access and control of the security system. These systems also often contain an internal log, which keeps an audit trail of all actions in order to allow security sta to check up on the system and verify everything is acting the way it should. 2 System Description The system can be divided into three main functional blocks: an RFID reader, a re-programmable access control system, and a solenoid-locking physical enclosure. The RFID reader is composed of a resonant antenna circuit, an envelope lter and comparator to extract data, an amplier to produce the carrier wave, and software to parse the tag data and store it in memory. The access control system consists of a log EEPROM, a conguration EEPROM, and software to allow verication of and modication of access parameters. The access control system determines if a user can access an electronics parts box held closed by a solenoid. 2.1 RFID Reader Antenna The RFID reader antenna is a series LC circuit with a resonant peak at 125 khz. The inductor will be made from a square spiral of wire on a printed circuit board, with a desired inductance of 700 uh. The capacitor will be made from an array of ceramic capacitors totaling 100 uf. Ceramic is used to ensure 1 Figure 2: RFID Reader Antenna

2 Figure 1: Basic RFID Reader Circuit high surge current ratings, low ESR, and low ESL all of which will increase the predictability of the resulting antenna circuit and minimize the required tuning. The antenna impedance at 125 khz is estimated to be around 550 Ω, with almost all of the voltage dropped across the inductor. The produces a max output power level of slightly less than V2 /Z antenna = 260 mw. Data Acquisition The data acquisition block consists of an envelope RC lter with a cuto frequency of 30 khz and a comparator to extract the high and low logic levels from the amplitude modulated envelope. The diode before the envelope lter ensures that the the comparator is protected from negative voltage spikes. The lter cuto of 30 khz is chosen to eliminate the 125 khz carrier wave while maintaining unity gain at the AM modulation frequencies of interest, which are typically 25 khz or lower. The comparator is set to output a high value for envelope voltages larger than V ref, and a low value when the envelope voltage is smaller. V ref will be set using a potentiometer and calibration data from test RFID cards. Output Amplier The antenna output stage will consist of a MOSFET totem driven by a buer circuit. The MOSFET totem will provide the high power levels needed for the antenna to drive the coupled RFID card. The buer circuitry will either be a simple logic-level buer or a more complicated MOSFET driver chip (such as those used in the uorescent lamp ballast or in 6.131). Decoding in Software The user will be able to specify one of many possible RFID encoding schemes using a serial terminal. Once one is selected, the 8051 will sample the signal at 125 khz, triggered by the falling edge of the antenna driver waveform. Each of the bits of envelope data will be composed together into 8-bit chunks and stored into external memory. The 8051 will then post-process the raw data, using the transitions between low and high values to recover clock data and matching the transmitted bit pattern to the appropriate numerical values. The resulting value will then be sent back to the user over serial as a string of hexadecimal numbers. Common RFID encoding schemes include simple constant-period square wave modulation, and variable frequency AM modulation. In constant-period modulation, each bit has a constant period and results in either no attenuation of a signal (logic high) or additional attenuation of the signal (logic low). Typical bit lengths are somewhere around 5 clock cycles at 125 khz, or approximately 25 khz. Variable frequency AM 2

3 Figure 3: Diagram of Access Control System modulation uses dierent frequencies of square wave AM modulation of the carrier wave to represent logic high and logic low. Typical values include 12.5 khz to represent logic low and 15 khz to represent logic high. 2.2 Access Control System Conguration EEPROM & Access Control The conguration EEPROM holds mappings between decoded card data and access permissions. After a card is read, the conguration EEPROM is searched for an entry matching the card data. If one is found, either access is given right away or the ne grained access control settings are checked for the user. If the card matches the stored control card, the system will begin listening on the serial port. If the user sends a character, the device will launch a programming interface that will allow for customizing the current system conguration. The user can add or remove cards from the access list, and optionally modify any custom access settings that have been implemented. Log EEPROM In order to allow for a security audit of the RFID security system, any action taken on the device (trying and/or failing to open the door, changing control settings, viewing the log) will add an entry to a log EEPROM. This EEPROM will act as a circular buer, storing as much of the door's history as possible given the space allowed. When the user is in control mode, he or she will be able to download and view the log data over serial to verify that everything is working properly. Real-time Clock Optionally, a real time clock IC may be used to allow time-restricted access to the box, and provide timestamps for the log entries. 2.3 Physical Enclosure The physical enclosure will be a set of drawers that can be used to hold useful electronic parts. Solenoid Driver The solenoid driver will be a simple, high current switch. The 8051 will ensure that the solenoid is only opened when an allowed card is presented to the reader, and it will then open the solenoid only for a specialized period of time. 3

4 3 Project Scope Modest Risk RFID reader with wire wrapped antenna. Obtain data from sample RFID cards. Decode constant-period modulated RFID cards. Conrm access permissions and open solenoid. Log successful and failed access attempts. More Risk All of the above, plus the ability to: Use a control card to put the device in programming mode, allowing the user to add cards for access. Dump log data over serial if control card is used. Reprogram the device to remember dierent control cards. High Risk All of the above, plus the ability to: Set access permissions for limited-use cards. Set access permissions based on time of day. Allow users to give guests access without requiring the control card. 4 Specialized Components These are components required beyond those available in the lab kit. SPI EEPROMs for conguration and log data storage. PCB with traces for inductor and pads for capacitor arrays. Solenoid for access control. Physical enclosure. RFID cards. MOSFET driver IC. Real time clock (for high-risk plan). 5 Timetable Week 1 (4/23) Mill PCB for antenna circuitry and assemble antenna. Assemble MOSFET driver circuitry. Generate 125 KHz waveform with signal generator and determine response to RFID cards. Build comparator circuit to detect high and low logic levels. Interface MOSFET driver with 8254, and send comparator output to

5 Week 2 (4/30) Write code to begin polling an RFID card and to store the returned data. Write code to decode RFID format and send data to the user over serial. Implement SPI programming interface for EEPROM. Build physical enclosure. Debug and test. Determine if reader obtains same data as commercial readers. Week 3 (5/7) Test basic access control mechanisms. Write code to modify EEPROM data over serial using control card. Test control card log viewing. Test adding new users using control card. Build solenoid driver. Test solenoid driver. Week 4 (5/14) Implement decoding of alternative RFID encoding formats. Implement customized access permissions. 5

RFID Door Unlocking System

RFID Door Unlocking System RFID Door Unlocking System Evan VanMersbergen Project Description ETEC 471 Professor Todd Morton December 7, 2005-1- Introduction In this age of rapid technological advancement, radio frequency (or RF)

More information

RFID circuit with read/write functions

RFID circuit with read/write functions RFID circuit with read/write functions IZ2803-5 The IZ2803-5 (equivalent of EM4100 EM Microelectronic Marin SA) is chip for multifunction contactless read/write cards with 64 bit EEPROM The IZ2803-5 is

More information

Features. Haltronics Ltd (http://www.haltronicsltd.com/)

Features. Haltronics Ltd (http://www.haltronicsltd.com/) Embedding the wireless future.. Low-Cost SAW-stabilized surface mount OOK RF transmitter Typical Applications Remote Keyless Entry (RKE) Remote Lighting Controls On-Site Paging Asset Tracking Wireless

More information

Revision RCT-433-UTR DATASHEET

Revision RCT-433-UTR DATASHEET Revision 1.1.0 RCT-433-UTR DATASHEET RADIOTRONIX, INC. RCT-433-UTR DATASHEET Radiotronix 905 Messenger Lane Moore, Oklahoma 73160 Phone 405.794.7730 Fax 405.794.7477 www.radiotronix.com 1 Document Control

More information

Features. Future Electronics (

Features. Future Electronics ( / ASB Embedding the wireless future.. Low-Cost SAW-stabilized surface mount OOK RF transmitter Typical Applications Remote Keyless Entry (RKE) Remote Lighting Controls On-Site Paging Asset Tracking Wireless

More information

H4102 EM MICROELECTRONIC-MARIN SA. Read Only Contactless Identification Device H4102. Typical Operating Configuration

H4102 EM MICROELECTRONIC-MARIN SA. Read Only Contactless Identification Device H4102. Typical Operating Configuration Read Only Contactless Identification Device Features 64 bit memory array laser programmable Several options of data rate and coding available On chip resonance capacitor On chip supply buffer capacitor

More information

Operational Description

Operational Description Operational Description Wallterminal WT2000 ISO Tagit The Wallterminal WT2000 consists of the two components control unit and reader unit. The control unit is usually mounted in a save area inside the

More information

Week 8 AM Modulation and the AM Receiver

Week 8 AM Modulation and the AM Receiver Week 8 AM Modulation and the AM Receiver The concept of modulation and radio transmission is introduced. An AM receiver is studied and the constructed on the prototyping board. The operation of the AM

More information

Group 1616B: Wireless Power Transfer. Brandon Conlon Juan Carlos Lluberes Tyler Hayslett Advisors: Peng Zhang & Taofeek Orekan

Group 1616B: Wireless Power Transfer. Brandon Conlon Juan Carlos Lluberes Tyler Hayslett Advisors: Peng Zhang & Taofeek Orekan Group 1616B: Wireless Power Transfer Brandon Conlon Juan Carlos Lluberes Tyler Hayslett Advisors: Peng Zhang & Taofeek Orekan System Overview Frequency adjustable subsea Resonant Wireless Power transfer

More information

Project: Electromagnetic Ring Launcher

Project: Electromagnetic Ring Launcher Project: Electromagnetic Ring Launcher Introduction: In science museums and physics-classrooms an experiment is very commonly demonstrated called the Jumping Ring or Electromagnetic Ring Launcher. The

More information

Filters And Waveform Shaping

Filters And Waveform Shaping Physics 3330 Experiment #3 Fall 2001 Purpose Filters And Waveform Shaping The aim of this experiment is to study the frequency filtering properties of passive (R, C, and L) circuits for sine waves, and

More information

10 GHz Microwave Link

10 GHz Microwave Link 10 GHz Microwave Link Project Project Objectives System System Functionality Testing Testing Procedures Cautions and Warnings Problems Encountered Recommendations Conclusion PROJECT OBJECTIVES Implement

More information

MCRF200. Contactless Programmable Passive RFID Device

MCRF200. Contactless Programmable Passive RFID Device M MCRF200 Contactless Programmable Passive RFID Device FEATURES Contactless programmable after encapsulation Read only data transmission 96 or 128 bits of OTP user memory Operates at 125 khz On chip rectifier

More information

Exam Booklet. Pulse Circuits

Exam Booklet. Pulse Circuits Exam Booklet Pulse Circuits Pulse Circuits STUDY ASSIGNMENT This booklet contains two examinations for the six lessons entitled Pulse Circuits. The material is intended to provide the last training sought

More information

HF Power Amplifier (Reference Design Guide) RFID Systems / ASP

HF Power Amplifier (Reference Design Guide) RFID Systems / ASP 16 September 2008 Rev A HF Power Amplifier (Reference Design Guide) RFID Systems / ASP 1.) Scope Shown herein is a HF power amplifier design with performance plots. As every application is different and

More information

EXPERIMENT 2: Frequency Shift Keying (FSK)

EXPERIMENT 2: Frequency Shift Keying (FSK) EXPERIMENT 2: Frequency Shift Keying (FSK) 1) OBJECTIVE Generation and demodulation of a frequency shift keyed (FSK) signal 2) PRELIMINARY DISCUSSION In FSK, the frequency of a carrier signal is modified

More information

M.Sinduja,S.Ranjitha. Department of Electrical & Electronics Engineering, Bharathiyar Institute of Engineering For Women, Deviyakurichi.

M.Sinduja,S.Ranjitha. Department of Electrical & Electronics Engineering, Bharathiyar Institute of Engineering For Women, Deviyakurichi. POWER LINE CARRIER COMMUNICATION FOR DISTRIBUTION AUTOMATION SYSTEM M.Sinduja,S.Ranjitha Department of Electrical & Electronics Engineering, Bharathiyar Institute of Engineering For Women, Deviyakurichi.

More information

AT7450 2A-60V LED Step-Down Converter

AT7450 2A-60V LED Step-Down Converter FEATURES DESCRIPTION IN Max = 60 FB = 200m Frequency 52kHz I LED Max 2A On/Off input may be used for the Analog Dimming Thermal protection Cycle-by-cycle current limit I LOAD max =2A OUT from 0.2 to 55

More information

Differential-Mode Emissions

Differential-Mode Emissions Differential-Mode Emissions In Fig. 13-5, the primary purpose of the capacitor C F, however, is to filter the full-wave rectified ac line voltage. The filter capacitor is therefore a large-value, high-voltage

More information

University of North Carolina-Charlotte Department of Electrical and Computer Engineering ECGR 3157 Electrical Engineering Design II Fall 2013

University of North Carolina-Charlotte Department of Electrical and Computer Engineering ECGR 3157 Electrical Engineering Design II Fall 2013 Exercise 1: PWM Modulator University of North Carolina-Charlotte Department of Electrical and Computer Engineering ECGR 3157 Electrical Engineering Design II Fall 2013 Lab 3: Power-System Components and

More information

High Performance, Constant Current Switching Regulator For White LED

High Performance, Constant Current Switching Regulator For White LED High Performance, Constant Current Switching Regulator For White LED General Description The is a.mhz PWM boost switching regulator designed for constant- current white LED driver applications. The can

More information

Lab Experiments. Boost converter (Experiment 2) Control circuit (Experiment 1) Power diode. + V g. C Power MOSFET. Load.

Lab Experiments. Boost converter (Experiment 2) Control circuit (Experiment 1) Power diode. + V g. C Power MOSFET. Load. Lab Experiments L Power diode V g C Power MOSFET Load Boost converter (Experiment 2) V ref PWM chip UC3525A Gate driver TSC427 Control circuit (Experiment 1) Adjust duty cycle D The UC3525 PWM Control

More information

Design of Adaptive RFID Reader based on DDS and RC522 Li Yang, Dong Zhi-Hong, Cong Dong-Sheng

Design of Adaptive RFID Reader based on DDS and RC522 Li Yang, Dong Zhi-Hong, Cong Dong-Sheng International Conference on Applied Science and Engineering Innovation (ASEI 2015) Design of Adaptive RFID Reader based on DDS and RC522 Li Yang, Dong Zhi-Hong, Cong Dong-Sheng Beijing Key Laboratory of

More information

Keywords: ISM, RF, transmitter, short-range, RFIC, switching power amplifier, ETSI

Keywords: ISM, RF, transmitter, short-range, RFIC, switching power amplifier, ETSI Maxim > Design Support > Technical Documents > Application Notes > Wireless and RF > APP 4929 Keywords: ISM, RF, transmitter, short-range, RFIC, switching power amplifier, ETSI APPLICATION NOTE 4929 Adapting

More information

High Current Amplifier

High Current Amplifier High Current Amplifier - Introduction High Current Amplifier High current amplifier is often a very useful piece of instrument to have in the lab. It is very handy for increasing the current driving capability

More information

Contactless card IC 2802-A, 6602(C)

Contactless card IC 2802-A, 6602(C) IC for Contactless Identification Features - 64-bit single time programmable memory array - on chip resonance capacitor - on chip supply buffer capacitor - on chip voltage limiter - full wave rectifier

More information

Stand Alone RF Power Capabilities Of The DEIC420 MOSFET Driver IC at 3.6, 7, 10, and 14 MHZ.

Stand Alone RF Power Capabilities Of The DEIC420 MOSFET Driver IC at 3.6, 7, 10, and 14 MHZ. Abstract Stand Alone RF Power Capabilities Of The DEIC4 MOSFET Driver IC at 3.6, 7,, and 4 MHZ. Matthew W. Vania, Directed Energy, Inc. The DEIC4 MOSFET driver IC is evaluated as a stand alone RF source

More information

EUP V/12V Synchronous Buck PWM Controller DESCRIPTION FEATURES APPLICATIONS. Typical Application Circuit. 1

EUP V/12V Synchronous Buck PWM Controller DESCRIPTION FEATURES APPLICATIONS. Typical Application Circuit. 1 5V/12V Synchronous Buck PWM Controller DESCRIPTION The is a high efficiency, fixed 300kHz frequency, voltage mode, synchronous PWM controller. The device drives two low cost N-channel MOSFETs and is designed

More information

About LC Meter This is one of the most accurate and simplest LC inductance / capacitance Meters that one can find, yet one that you can easily build y

About LC Meter This is one of the most accurate and simplest LC inductance / capacitance Meters that one can find, yet one that you can easily build y Home Electronic Store Electronic Blog Electronic Schematics Tutorials Downloads Lin Very Accurate LC Meter based on PIC16F84A IC. LC Meter Part's List: 2x 1K 2x 6.8K 1x 47K 3x 100K 1x 10K POT 2x 10pF 1x

More information

EE 434 Final Projects Fall 2006

EE 434 Final Projects Fall 2006 EE 434 Final Projects Fall 2006 Six projects have been identified. It will be our goal to have approximately an equal number of teams working on each project. You may work individually or in groups of

More information

are equally illuminated, the lamp I 1

are equally illuminated, the lamp I 1 Student ID: 21643431 Exam: 387018RR - PRACTICAL EXERCISE ADVANCED ELECTRONIC COMPONENTS When you have completed your exam and reviewed your answers, click Submit Exam. Answers will not be recorded until

More information

DESCRIPTION FEATURES APPLICATIONS TYPICAL APPLICATION. 500KHz, 18V, 2A Synchronous Step-Down Converter

DESCRIPTION FEATURES APPLICATIONS TYPICAL APPLICATION. 500KHz, 18V, 2A Synchronous Step-Down Converter DESCRIPTION The is a fully integrated, high-efficiency 2A synchronous rectified step-down converter. The operates at high efficiency over a wide output current load range. This device offers two operation

More information

C and solving for C gives 1 C

C and solving for C gives 1 C Physics 241 Lab RLC Radios http://bohr.physics.arizona.edu/~leone/ua/ua_spring_2010/phys241lab.html Name: Section 1: 1. Begin today by reviewing the experimental procedure for finding C, L and resonance.

More information

UNIVERSITY OF NORTH CAROLINA AT CHARLOTTE Department of Electrical and Computer Engineering

UNIVERSITY OF NORTH CAROLINA AT CHARLOTTE Department of Electrical and Computer Engineering UNIVERSITY OF NORTH CAROLINA AT CHARLOTTE Department of Electrical and Computer Engineering EXPERIMENT 8 AMPLITUDE MODULATION AND DEMODULATION OBJECTIVES The focus of this lab is to familiarize the student

More information

LABORATORY EXPERIMENT. Infrared Transmitter/Receiver

LABORATORY EXPERIMENT. Infrared Transmitter/Receiver LABORATORY EXPERIMENT Infrared Transmitter/Receiver (Note to Teaching Assistant: The week before this experiment is performed, place students into groups of two and assign each group a specific frequency

More information

WD3122EC. Descriptions. Features. Applications. Order information. High Efficiency, 28 LEDS White LED Driver. Product specification

WD3122EC. Descriptions. Features. Applications. Order information. High Efficiency, 28 LEDS White LED Driver. Product specification High Efficiency, 28 LEDS White LED Driver Descriptions The is a constant current, high efficiency LED driver. Internal MOSFET can drive up to 10 white LEDs in series and 3S9P LEDs with minimum 1.1A current

More information

U2270B replacement by EM4095 reader chip

U2270B replacement by EM4095 reader chip EM MICROELECTRONIC - MARIN SA 604005 Title: Product Family: Part Number: Keywords: Application Note 604005 U2270B replacement by reader chip RFID U2270B LF Reader modification Date: October 26, 2012 1.

More information

USER S GUIDE POLOLU A4988 STEPPER MOTOR DRIVER CARRIER USING THE DRIVER POWER CONNECTIONS

USER S GUIDE POLOLU A4988 STEPPER MOTOR DRIVER CARRIER USING THE DRIVER POWER CONNECTIONS POLOLU A4988 STEPPER MOTOR DRIVER CARRIER USER S GUIDE USING THE DRIVER Minimal wiring diagram for connecting a microcontroller to an A4988 stepper motor driver carrier (full-step mode). POWER CONNECTIONS

More information

TFT-LCD DC/DC Converter with Integrated Backlight LED Driver

TFT-LCD DC/DC Converter with Integrated Backlight LED Driver TFT-LCD DC/DC Converter with Integrated Backlight LED Driver Description The is a step-up current mode PWM DC/DC converter (Ch-1) built in an internal 1.6A, 0.25Ω power N-channel MOSFET and integrated

More information

RFID ACCESS CONTROL. SRðAN LALE FACULTY OF ELECTRICAL ENGINEERING EASTERN SARAJEVO

RFID ACCESS CONTROL. SRðAN LALE FACULTY OF ELECTRICAL ENGINEERING EASTERN SARAJEVO RFID ACCESS CONTROL SRðAN LALE FACULTY OF ELECTRICAL ENGINEERING EASTERN SARAJEVO 1 INTRODUCTION RFID (RADIO - FREQUENCY IDENTIFICATION) systems use RF signals for identification of people, animals and

More information

Intelligent and passive RFID tag for Identification and Sensing

Intelligent and passive RFID tag for Identification and Sensing Zürich University Of Applied Sciences Institute of Embedded Systems InES Intelligent and passive RFID tag for Identification and Sensing (Presented at Embedded World, Nürnberg, 3 rd March 2009) Dipl. Ing.

More information

Multi Frequency RFID Read Writer System

Multi Frequency RFID Read Writer System Multi Frequency RFID Read Writer System Uppala Sunitha 1, B Rama Murthy 2, P Thimmaiah 3, K Tanveer Alam 1 PhD Scholar, Department of Electronics, Sri Krishnadevaraya University, Anantapur, A.P, India

More information

The Skiidometer. Hardware Description By: Adam Lee ; Etec474; Prof. Morton; WWU

The Skiidometer. Hardware Description By: Adam Lee ; Etec474; Prof. Morton; WWU The Skiidometer Hardware Description By: Adam Lee 04.26.2003; Etec474; Prof. Morton; WWU General Description The Skiidometer is a portable meter which serves as a digital companion on the ski slopes. By

More information

Impedance Matching to 50Ω

Impedance Matching to 50Ω Impedance Matching to 50Ω The figure above shows the output matching circuit as implemented on the TRF7960EVM on a simulated Smith chart plot going from the nominal 4 Ohm TX_OUT (Pin 5) to near 50 Ohms

More information

ECE 511: FINAL PROJECT REPORT GROUP 7 MSP430 TANK

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

More information

How It Works The PPM Radio Control System: Part 1

How It Works The PPM Radio Control System: Part 1 Technical M.E.C. Technical Note Note How It Works The PPM Radio Control System: Part 1 Foreword This Technical Note is divided into 3 parts to reduce the file size when downloading each section from the

More information

FM RADIO KIT ESSENTIAL INFORMATION. Version 2.0 GET IN TUNE WITH THIS

FM RADIO KIT ESSENTIAL INFORMATION. Version 2.0 GET IN TUNE WITH THIS ESSENTIAL INFORMATION BUILD INSTRUCTIONS CHECKING YOUR PCB & FAULT-FINDING MECHANICAL DETAILS HOW THE KIT WORKS GET IN TUNE WITH THIS FM RADIO KIT Version 2.0 Build Instructions Before you start, take

More information

High Performance, Constant Current Switching Regulator For 8PCS White LED In Series

High Performance, Constant Current Switching Regulator For 8PCS White LED In Series High Performance, Constant Current Switching Regulator For 8PCS White LED In Series General Description The is a MHz PWM boost switching regulator designed for constant-current white LED driver applications.

More information

EE12: Laboratory Project (Part-2) AM Transmitter

EE12: Laboratory Project (Part-2) AM Transmitter EE12: Laboratory Project (Part-2) AM Transmitter ECE Department, Tufts University Spring 2008 1 Objective This laboratory exercise is the second part of the EE12 project of building an AM transmitter in

More information

HF PA kit with built-in standalone raised cosine controller

HF PA kit with built-in standalone raised cosine controller AN005 HF PA kit with built-in standalone raised cosine controller 1. Introduction The standard QRP Labs HF PA kit has an 8-bit shift register (74HC595) whose outputs control an 8- bit Digital-to-Analogue

More information

Massachusetts Institute of Technology MIT

Massachusetts Institute of Technology MIT Massachusetts Institute of Technology MIT Real Time Wireless Electrocardiogram (ECG) Monitoring System Introductory Analog Electronics Laboratory Guilherme K. Kolotelo, Rogers G. Reichert Cambridge, MA

More information

MIC2291. General Description. Features. Applications. Typical Application. 1.2A PWM Boost Regulator Photo Flash LED Driver

MIC2291. General Description. Features. Applications. Typical Application. 1.2A PWM Boost Regulator Photo Flash LED Driver 1.2A PWM Boost Regulator Photo Flash LED Driver General Description The is a 1.2MHz Pulse Width Modulation (PWM), boost-switching regulator that is optimized for high-current, white LED photo flash applications.

More information

EL7302. Hardware Design Guide

EL7302. Hardware Design Guide Hardware Design Guide Version: Preliminary 0.0 Date: January. 2005 Approval: Etron technology, Inc P.O. Box 19-54 No.6 Technology Road V. Science-based Industrial Park, Hsinchu,30077 Taiwan, R.O.C. Tel:

More information

Keywords: No-opto flyback, synchronous flyback converter, peak current mode controller

Keywords: No-opto flyback, synchronous flyback converter, peak current mode controller Keywords: No-opto flyback, synchronous flyback converter, peak current mode controller APPLICATION NOTE 6394 HOW TO DESIGN A NO-OPTO FLYBACK CONVERTER WITH SECONDARY-SIDE SYNCHRONOUS RECTIFICATION By:

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

An Analog Phase-Locked Loop

An Analog Phase-Locked Loop 1 An Analog Phase-Locked Loop Greg Flewelling ABSTRACT This report discusses the design, simulation, and layout of an Analog Phase-Locked Loop (APLL). The circuit consists of five major parts: A differential

More information

High-Efficiency, 26V Step-Up Converters for Two to Six White LEDs

High-Efficiency, 26V Step-Up Converters for Two to Six White LEDs 19-2731; Rev 1; 10/03 EVALUATION KIT AVAILABLE High-Efficiency, 26V Step-Up Converters General Description The step-up converters drive up to six white LEDs with a constant current to provide backlight

More information

Generating MSK144 directly for Beacons and Test Sources.

Generating MSK144 directly for Beacons and Test Sources. Generating MSK144 directly for Beacons and Test Sources. Overview Andy Talbot G4JNT December 2016 MSK144 is a high speed data mode introduced into WSJT-X to replace FSK441 for meteor scatter (MS) and other

More information

RFID. LF Training. Installation and Set-up. J.A.G 7 March, 2008 Texas Instruments Proprietary Information 1

RFID. LF Training. Installation and Set-up. J.A.G 7 March, 2008 Texas Instruments Proprietary Information 1 RFID LF Training Installation and Set-up J.A.G 7 March, 2008 Texas Instruments Proprietary Information 1 S2000 Readers Radio Frequency Module (RFM) Control Module (CTL) Series 2000 Reader 3/28/2008 TI

More information

1.0MHz,24V/2.0A High Performance, Boost Converter

1.0MHz,24V/2.0A High Performance, Boost Converter 1.0MHz,24V/2.0A High Performance, Boost Converter General Description The LP6320C is a 1MHz PWM boost switching regulator designed for constant-voltage boost applications. The can drive a string of up

More information

CHAPTER 3 APPLICATION OF THE CIRCUIT MODEL FOR PHOTOVOLTAIC ENERGY CONVERSION SYSTEM

CHAPTER 3 APPLICATION OF THE CIRCUIT MODEL FOR PHOTOVOLTAIC ENERGY CONVERSION SYSTEM 63 CHAPTER 3 APPLICATION OF THE CIRCUIT MODEL FOR PHOTOVOLTAIC ENERGY CONVERSION SYSTEM 3.1 INTRODUCTION The power output of the PV module varies with the irradiation and the temperature and the output

More information

1MHz,30V/1.5A High Performance, Boost Converter

1MHz,30V/1.5A High Performance, Boost Converter 1MHz,30V/1.A High Performance, Boost Converter General Description The is a current mode boost DC-DC converter. Its PWM circuitry with built-in 1.A current power MOSFET makes this converter highly power

More information

The steeper the phase shift as a function of frequency φ(ω) the more stable the frequency of oscillation

The steeper the phase shift as a function of frequency φ(ω) the more stable the frequency of oscillation It should be noted that the frequency of oscillation ω o is determined by the phase characteristics of the feedback loop. the loop oscillates at the frequency for which the phase is zero The steeper the

More information

Non-Synchronous PWM Boost Controller for LED Driver

Non-Synchronous PWM Boost Controller for LED Driver Non-Synchronous PWM Boost Controller for LED Driver General Description The is boost topology switching regulator for LED driver. It provides built-in gate driver pin for driving external N-MOSFET. The

More information

Examples Paper 3B3/4 DC-AC Inverters, Resonant Converter Circuits. dc to ac converters

Examples Paper 3B3/4 DC-AC Inverters, Resonant Converter Circuits. dc to ac converters Straightforward questions are marked! Tripos standard questions are marked * Examples Paper 3B3/4 DC-AC Inverters, Resonant Converter Circuits dc to ac converters! 1. A three-phase bridge converter using

More information

Functional Description / User Manual of SIEMENS VDO

Functional Description / User Manual of SIEMENS VDO Functional Description / User Manual of SIEMENS VDO Immobilization system smart 451 Type 5WY7776 Name: Department: Telephone: Date: Author: Frank Lindner +49 941-790- 90992 Check: Thomas Heselberger SV

More information

RT9209/A. Synchronous Buck PWM DC-DC with Enable & PGOOD. Preliminary. Features. General Description. Applications. Ordering Information

RT9209/A. Synchronous Buck PWM DC-DC with Enable & PGOOD. Preliminary. Features. General Description. Applications. Ordering Information Preliminary Synchronous Buck PWM DC-DC with Enable & PGOOD General Description The is a single power supply PWM DC-DC converter controller designed to drive N-Channel MOSFET in a synchronous buck topology.

More information

POWER MANAGEMENT PRODUCTS. Application Note. Simple PWM Boost Converter with I/O Disconnect Solves Malfunctions Caused when V OUT <V IN

POWER MANAGEMENT PRODUCTS. Application Note. Simple PWM Boost Converter with I/O Disconnect Solves Malfunctions Caused when V OUT <V IN POWER MANAGEMENT PRODUCTS Application Note Simple PWM Boost Converter with I/O Disconnect Solves Malfunctions Caused when V OUT

More information

AT V Synchronous Buck Converter

AT V Synchronous Buck Converter 38V Synchronous Buck Converter FEATURES DESCRIPTION Wide 8V to 38V Operating Input Range Integrated two 140mΩ Power MOSFET Switches Feedback Voltage : 220mV Internal Soft-Start / VFB Over Voltage Protection

More information

EE 330 Final Design Projects Fall 2016

EE 330 Final Design Projects Fall 2016 EE 330 Final Design Projects Fall 2016 Students may work individually or in groups of 2 on the final design project. Partners need not be in the same laboratory section. A WEB site from which projects

More information

Physics 309 Lab 3 Bipolar junction transistor

Physics 309 Lab 3 Bipolar junction transistor Physics 39 Lab 3 Bipolar junction transistor The purpose of this third lab is to learn the principles of operation of a bipolar junction transistor, how to characterize its performances, and how to use

More information

Robotic Development Kit. Powered using ATMEL technology

Robotic Development Kit. Powered using ATMEL technology Robotic Development Kit Powered using ATMEL technology Index 1. System overview 2. Technology overview 3. Individual dev-kit components I. Robot II. Remote III. IR-Pod IV. Base-Station V. RFID 4. Robonii

More information

ANALOG COMMUNICATION

ANALOG COMMUNICATION ANALOG COMMUNICATION TRAINING LAB Analog Communication Training Lab consists of six kits, one each for Modulation (ACL-01), Demodulation (ACL-02), Modulation (ACL-03), Demodulation (ACL-04), Noise power

More information

Technical Info Doc: Galileo2 A simple Direct Conversion Receiver for 20.1MHZ

Technical Info Doc: Galileo2 A simple Direct Conversion Receiver for 20.1MHZ Fox Delta Amateur Radio Projects & Kits FD Galileo2 Technical Info Doc: Galileo2 A simple Direct Conversion Receiver for 20.1MHZ This Project is dedicated to our beloved scientist Galileo: Galileo was

More information

1. General Outline Project Proposal April 9, 2014 Kayla Esquivel and Jason Yang

1. General Outline Project Proposal April 9, 2014 Kayla Esquivel and Jason Yang 1. General Outline 6.101 Project Proposal April 9, 2014 Kayla Esquivel and Jason Yang The invention and mass application of radio broadcast was triggered in the first decade of the nineteenth century by

More information

Brian Hanna Meteor IP 2007 Microcontroller

Brian Hanna Meteor IP 2007 Microcontroller MSP430 Overview: The purpose of the microcontroller is to execute a series of commands in a loop while waiting for commands from ground control to do otherwise. While it has not received a command it populates

More information

AERO2705 Space Engineering 1 Week 7 The University of Sydney

AERO2705 Space Engineering 1 Week 7 The University of Sydney AERO2705 Space Engineering 1 Week 7 The University of Sydney Presenter Mr. Warwick Holmes Executive Director Space Engineering School of Aerospace, Mechanical and Mechatronic Engineering The University

More information

RCR-XXX-RP. Features. Typical Applications. Description. - i - Low cost 315/418/ MHz Super-Regen ASK/OOK Receiver

RCR-XXX-RP. Features. Typical Applications. Description. - i - Low cost 315/418/ MHz Super-Regen ASK/OOK Receiver RCR-XXX-RP Embedding the wireless future.. Low cost 315/418/433.92 MHz Super-Regen ASK/OOK Receiver Typical Applications Features Remote Keyless Entry (RKE) Remote Lighting Controls On-Site Paging Asset

More information

Not Recommended for New Designs

Not Recommended for New Designs Not Recommended for New Designs This product was manufactured for Maxim by an outside wafer foundry using a process that is no longer available. It is not recommended for new designs. The data sheet remains

More information

Department of Electronics & Communication Engineering LAB MANUAL SUBJECT: DIGITAL COMMUNICATION LABORATORY [ECE324] (Branch: ECE)

Department of Electronics & Communication Engineering LAB MANUAL SUBJECT: DIGITAL COMMUNICATION LABORATORY [ECE324] (Branch: ECE) Department of Electronics & Communication Engineering LAB MANUAL SUBJECT: DIGITAL COMMUNICATION LABORATORY [ECE324] B.Tech Year 3 rd, Semester - 5 th (Branch: ECE) Version: 01 st August 2018 The LNM Institute

More information

Arduino Hacking Village THOTCON 0x9

Arduino Hacking Village THOTCON 0x9 RFID Lock Analysis Lab Use an Oscilloscope to view RFID transponder signals Use an Arduino to capture and decode transponder signals Use Arduino to spoof a transponder Lab time: 10 minutes Lab 1: Viewing

More information

EUP A,30V,500KHz Step-Down Converter DESCRIPTION FEATURES APPLICATIONS. Typical Application Circuit

EUP A,30V,500KHz Step-Down Converter DESCRIPTION FEATURES APPLICATIONS. Typical Application Circuit 5A,30V,500KHz Step-Down Converter DESCRIPTION The is current mode, step-down switching regulator capable of driving 5A continuous load with excellent line and load regulation. The operates with an input

More information

Electronic Instrumentation ENGR-4300 Fall Project 4: Optical Communications Link

Electronic Instrumentation ENGR-4300 Fall Project 4: Optical Communications Link Project 4: Optical Communications Link In this project you will build a transmitter and a receiver circuit. The transmitter circuit uses pulse frequency modulation to create a series of light pulses that

More information

Driving LEDs with a PIC Microcontroller Application Note

Driving LEDs with a PIC Microcontroller Application Note Driving LEDs with a PIC Microcontroller Application Note Introduction Nowadays, applications increasingly make use of LEDs as a replacement for traditional light bulbs. For example, LEDs are frequently

More information

I. INTRODUCTION II. LITERATURE REVIEW

I. INTRODUCTION II. LITERATURE REVIEW ABSTRACT 2018 IJSRSET Volume 4 Issue 4 Print ISSN: 2395-1990 Online ISSN : 2394-4099 Themed Section : Engineering and Technology Reactive Power Compensation in Distribution System Piyush Upadhyay, Praveen

More information

N3ZI Kits General Coverage Receiver, Assembly & Operations Manual (For Jun 2011 PCB ) Version 3.33, Jan 2012

N3ZI Kits General Coverage Receiver, Assembly & Operations Manual (For Jun 2011 PCB ) Version 3.33, Jan 2012 N3ZI Kits General Coverage Receiver, Assembly & Operations Manual (For Jun 2011 PCB ) Version 3.33, Jan 2012 Thank you for purchasing my general coverage receiver kit. You can use the photo above as a

More information

Built-In OVP White LED Step-up Converter in Tiny Package

Built-In OVP White LED Step-up Converter in Tiny Package Built-In White LED Step-up Converter in Tiny Package Description The is a step-up DC/DC converter specifically designed to drive white LEDs with a constant current. The device can drive up to 4 LEDs in

More information

APPLICATION NOTE 735 Layout Considerations for Non-Isolated DC-DC Converters

APPLICATION NOTE 735 Layout Considerations for Non-Isolated DC-DC Converters Maxim > App Notes > AUTOMOTIVE GENERAL ENGINEERING TOPICS POWER-SUPPLY CIRCUITS PROTOTYPING AND PC BOARD LAYOUT Keywords: printed circuit board, PCB layout, parasitic inductance, parasitic capacitance,

More information

Constant Current Switching Regulator for White LED

Constant Current Switching Regulator for White LED Constant Current Switching Regulator for White LED FP7201 General Description The FP7201 is a Boost DC-DC converter specifically designed to drive white LEDs with constant current. The device can support

More information

INTRODUCTION TO AC FILTERS AND RESONANCE

INTRODUCTION TO AC FILTERS AND RESONANCE AC Filters & Resonance 167 Name Date Partners INTRODUCTION TO AC FILTERS AND RESONANCE OBJECTIVES To understand the design of capacitive and inductive filters To understand resonance in circuits driven

More information

New Temperature Control for the 2nd LO (VFO) Box

New Temperature Control for the 2nd LO (VFO) Box Illustration DARC, danke! Siemens E311b Shortwave Receiver New Temperature Control for the 2nd LO (VFO) Box Note: this electronic temperature controller can easily be used in other applications! Page 1/6

More information

D8020. Universal High Integration Led Driver Description. Features. Typical Applications

D8020. Universal High Integration Led Driver Description. Features. Typical Applications Universal High Integration Led Driver Description The D8020 is a highly integrated Pulse Width Modulated (PWM) high efficiency LED driver IC. It requires as few as 6 external components. This IC allows

More information

Exercise 1: RF Stage, Mixer, and IF Filter

Exercise 1: RF Stage, Mixer, and IF Filter SSB Reception Analog Communications Exercise 1: RF Stage, Mixer, and IF Filter EXERCISE OBJECTIVE DISCUSSION On the circuit board, you will set up the SSB transmitter to transmit a 1000 khz SSB signal

More information

Generating DTMF Tones Using Z8 Encore! MCU

Generating DTMF Tones Using Z8 Encore! MCU Application Note Generating DTMF Tones Using Z8 Encore! MCU AN024802-0608 Abstract This Application Note describes how Zilog s Z8 Encore! MCU is used as a Dual-Tone Multi- (DTMF) signal encoder to generate

More information

AN Low Frequency RFID Card Reader. Application Note Abstract. Introduction. Working Principle of LF RFID Reader

AN Low Frequency RFID Card Reader. Application Note Abstract. Introduction. Working Principle of LF RFID Reader Low Frequency RFID Card Reader Application Note Abstract AN52164 Authors: Richard Xu Jemmey Huang Associated Project: None Associated Part Family: CY8C24x23 Software Version: PSoC Designer 5.0 Associated

More information

LC-10 Chipless TagReader v 2.0 August 2006

LC-10 Chipless TagReader v 2.0 August 2006 LC-10 Chipless TagReader v 2.0 August 2006 The LC-10 is a portable instrument that connects to the USB port of any computer. The LC-10 operates in the frequency range of 1-50 MHz, and is designed to detect

More information

SP310001/02: Wireless Power Controller for Fast Charging Transmitter

SP310001/02: Wireless Power Controller for Fast Charging Transmitter SP310001/02: Wireless Power Controller for Fast Charging Transmitter 1 Feature Input Voltage: 4.5V to 5.5V Compliant with WPC 1.2.3 to Work with A11 Coils Reliable and Accurate Foreign Object Detection

More information

VE7CNF - 630m Antenna Matching Measurements Using an Oscilloscope

VE7CNF - 630m Antenna Matching Measurements Using an Oscilloscope VE7CNF - 630m Antenna Matching Measurements Using an Oscilloscope Toby Haynes October, 2016 1 Contents VE7CNF - 630m Antenna Matching Measurements Using an Oscilloscope... 1 Introduction... 1 References...

More information

Spin Semiconductor FV-1 Reverb IC PN: SPN1001. Delay Memory DSP CORE. ROM and Program Control PLL. XTAL Drvr XTAL. Spin.

Spin Semiconductor FV-1 Reverb IC PN: SPN1001. Delay Memory DSP CORE. ROM and Program Control PLL. XTAL Drvr XTAL. Spin. Featuring Virtual Analog Technology PN: SPN1001 FEATURES Integrated stereo ADC and DAC 8 internal demonstration programs + 8 external programs Easy customization with external EEPROM 3 potentiometer inputs

More information

AT V,3A Synchronous Buck Converter

AT V,3A Synchronous Buck Converter FEATURES DESCRIPTION Wide 8V to 40V Operating Input Range Integrated 140mΩ Power MOSFET Switches Output Adjustable from 1V to 25V Up to 93% Efficiency Internal Soft-Start Stable with Low ESR Ceramic Output

More information