Microcontroller Based Inductance Capacitance Meter

Size: px
Start display at page:

Download "Microcontroller Based Inductance Capacitance Meter"

Transcription

1 Microcontroller Based Inductance Capacitance Meter MUDIT AGARWAL This is the Inductance / Capacitance Meters circuit. One can easily build this LC Meter measure inductances starting from mh to 00mH, µh to 000µH, 0nH to 000nH and capacitance from 0.pF to 0.9µF. This inductance capacitance meter has Zero out switch that will reset the initial inductance capacitance, making sure that the final readings of the LC Meter are as accurate as possible. Further this Inductance Capacitance Meter circuit uses an auto ranging system, to come over the headache to select ranges manually. The resonance frequency of LC can be determined by using the frequency formula given below. f =/(ð LC) r Note that there are three variables that we can work with; fr, L and C (fr represents a frequency, L inductance and C capacitance). If we know the values of the two variables we may calculate the value of the third variable. For example if we want to determine the value of an unknown inductor with X inductance. We plug X inductance into the formula and we also use value of a known capacitor. Using this data we can calculate the frequency. Once we know the frequency we can use the power of the algebra and rewrite the above formula to solve for L (inductance). This time we will use the calculated frequency and a value of a known capacitor to calculate the inductance. We just calculated the value of unknown inductor, and we may use the same technique to solve for the unknown capacitance and even frequency. The LC Meter uses a LM IC that functions as a frequency generator and this is exactly what we need. If we want to calculate the value of an unknown inductor we use a known000pf capacitor and the value of an unknown inductor. LM will generate a frequency that we can measure with a frequency meter. Once we have this information we can use the frequency formula to calculate the inductance. The same thing can be done for calculating the value of a unknown capacitor. This time we don't know the value a capacitor so instead we use the value of a known inductor to calculate the frequency. Once we have that information we apply the formula to determine the capacitance. All this sounds great, however if we want to determine the value of a lot of inductors / capacitors then this may become a very time consuming process. This circuit uses PIC6F84A microcontroller from microchip. PIC6F84A is like a small computer that can execute HEX programs that are written using an assembly language. PIC6F84A is a very flexible microcontroller. PIC6F84A IC requires very minimal number of external components like 4MHz crystal / resonator and few resistors depending on what project we are building. Before we can use PIC6F84A microchip we have to program it with a HEX code which has to be sent from the computer. In the next step we use the frequency generated by LM IC and pass it Pins Table. Symbol Vee Vdd Vo RS RW En D0 D D D D4 D5 D6 D7 VA VK Ground 5V Contrast Function Register Select Read Write Enable Signal Data Bit 0 Data Bit Data Bit Data Bit Data Bit 4 Data Bit 5 Data Bit 6 Data Bit 7 Backlight 5V Backlight GND

2 LCD 5 5V Pr C0 5 V DC IC Ic C C C R C8 X C9 5V 5V D D D D4 R6 K R7 R8 Transformer 0V A.C. 7 8 IC 4 C6 0uf RLY R5 6.8K R4 47K C7 0uf 00k Cknown 000pf C5 nf C4 00pf R.K Q L 8uH L LC Input Fig. : Circuit Diagram of Microcontroller Based Inductance Capacitance Meter on to PIC6F84A's PIN 7. We designate this pin as an input, as well as all other pins that are directly connected to switches and jumpers. User can use these inputs to tell the microchip to execute specified set of instructions or perform calculations. Once the microchip will calculate the unknown inductance or capacitance it will use PINs that are designated as outputs and pass the results on to the

3 6 character LCD display. Most of the character LCD displays have 4 or 6 PINs. LCD with 4 pins donot have backlight. The LCD pins function is shown in table. Software J JJ config _hs_osc & _wdt_off & _pwrte_on & _cp_off list p=pic6f84a include p6f84a.inc J9 J0 c0m equ h'0c' c0m equ h'0d' c0s equ h'0e' IC c0s equ h'0f' lcd7_0 equ b'0000' lcd7_ equ b'00000' lcd7_ equ b'00000' L R lcd7_ equ b'00000' R5 R lcd7_4 equ b'000000' Sw lcd7_5 equ b'000000' R7 lcd7_6 equ b'0000' lcd7_7 equ b' ' R8 RLY lcd7_8 equ b'0000' R6 Ic R4 Q LC Input lcd7_9 equ b' ' C7 lcd70 equ h'0' lcd7 equ h'' C6 Cknown C5 C4 lcd7 equ h'' lcd7 equ h'' lcd74 equ h'4' D D C lcd75 equ h'5' v AC D D4 C lcd76 equ h'6' C Ic lcd77 equ h'7' lcd78 equ h'8' Fig.: Component Layout o Microcontroller Based Inductance Capacitance Meter. SEMICONDUCTOR DEVICES IC 7805 IC PIC6f84A Ic LM D-D4 N4007 CAPACITORS C 000uf/5V C,C,C0 0.uf C8,C9 pf C4 00pf C5 nf C6,C7 0uf Cknown 000pf RESISTORS R 0K R.K R4 47K R5 6.8K R6 K R7,R8 Pr K COMPONENT LIST MISCELLANEOUS Transformer V X 4 MHZ LCD 6X Liquid Crystal Display Sw Double Pole Double Way Switch PR LCD C0 J4 J5 lcd79 equ h'9' tm_cnt equ h'a' time_f equ h'b' ttl_in equ h'c' w_save equ h'd' s_save equ h'e' cnt500u equ h'f' cntm equ h'0' ra0 equ 0 ra equ ra equ ra equ ra4 equ 4 rb6 equ 6 org 0 goto init org 4 goto int org 5 init movlw b' ' movwf trisa movlw b'00000' movwf option_reg J6 J7 J8 C9 X C8

4 movlw h'ff' movwf trisb bcf porta,ra bcf porta,ra movlw h'fe' movf portb,w xorlw h'ff' andlw h'0f' movwf c0m movlw h'ff' movf portb,w xorlw h'ff' andlw h'0f' movwf c0m call led_cont goto sw_check movf c0m,w btfsc status,z goto stand_by sw_check: bsf trisb,rb6 Fig. : PCB Layout of Microcontroller Based Inductance Capacitance Meter. movlw b' ' bsf porta,ra movwf porta bcf porta,ra movlw lcd7_0 movwf lcd70 movlw lcd7_ btfsc portb,rb6 movwf lcd7 goto stand_by movlw lcd7_ movwf lcd7 Start: movlw lcd7_ bcf porta,ra movwf lcd7 movlw lcd7_4 movlw d'55' movwf lcd74 movlw lcd7_5 movlw d'4' movwf lcd75 movlw lcd7_6 movwf tmr0 movwf lcd76 movlw lcd7_7 movlw d'' movwf lcd77 movlw lcd7_8 movlw d'46' movwf lcd78 movlw lcd7_9 movwf tm_cnt movwf lcd79 movlw h'a0' clrf c0s movwf intcon clrf c0s loop: bsf time_f,0 call led_cont stand_by:

5 movf time_f,w btfsc status,z goto time_out btfsc porta,ra4 goto loop time_out clrf intcon goto init clrf trisb bcf porta,ra bsf porta,ra Movf c0m,w bsf porta,ra movf c0s,w ttl_7lcd movlw lcd70 addwf ttl_in,w movwf fsr movf indf,w movwf portb tm movlw movwf cntm tmlp movlw d'49' movwf cnt500u tmlp nop nop decfsz cnt500u,f goto tmlp decfsz cntm,f goto tmlp int: goto tmlp decfsz cntm,f goto tmlp int: movwf w_save movf status,w movwf s_save btfsc intcon,t0if goto timer_int movf s_save,w movwf status swapf w_save,f swapf w_save,w retfie timer_int: bcf intcon,t0if movlw d'55' movlw d'4' movwf tmr0 decfsz tm_cnt,f movlw d'' int_end movlw d'46' movwf tm_cnt decfsz c0s,w movf c0m,w time_out: clrf time_f movf c0s,w goto cd_c0s movlw 9 movwf c0s goto cd_c0s movlw 5 movwf c0s movf c0m,w goto cd_c0m movlw 9 movwf c0m goto cd_c0m goto time_out cd_c0s: decf c0s,f cd_c0s: decf c0s,f cd_c0m: decf c0m,f cd_c0m: decf c0m,f End

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

PROCESS. Object. Block diagram of our design. DISPLAY THE DISTANCE (7 segment display) PIC 16F873

PROCESS. Object. Block diagram of our design. DISPLAY THE DISTANCE (7 segment display) PIC 16F873 PROCESS ENERGIZE THE CIRCUIT PIC 16F873 DISPLAY THE DISTANCE (7 segment display) SIGNAL CONDITIONING AMPLIFYING SIGNAL (x1000) (40 db LM 741) + (20 db LM741) TRANSMITTING SIGNAL (murata MA40S T) ENVELOPE

More information

Embedded Systems. Interfacing PIC with external devices Analog to digital Converter. Eng. Anis Nazer Second Semester

Embedded Systems. Interfacing PIC with external devices Analog to digital Converter. Eng. Anis Nazer Second Semester Embedded Systems Interfacing PIC with external devices Analog to digital Converter Eng. Anis Nazer Second Semester 2016-2017 What is the time? What is the time? Definition Analog: can take any value Digital:

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

Sensor Interface Using PIC12CXXX as a Sensor Interface for Metal Detection

Sensor Interface Using PIC12CXXX as a Sensor Interface for Metal Detection Using PIC12CXXX as a Sensor Interface for Metal Detection Author: Vladimir Velchev AVEX - Vladimir Velchev Sofia, Bulgaria email:avex@iname.com APPLICATION OPERATION PIC12CXXX microcontroller can be used

More information

TECHNICAL NOTE. A COMPACT ALGORITHM USING THE ADXL202 DUTY CYCLE OUTPUT by Harvey Weinberg

TECHNICAL NOTE. A COMPACT ALGORITHM USING THE ADXL202 DUTY CYCLE OUTPUT by Harvey Weinberg TECHNICAL NOTE ONE TECHNOLOGY WAYP.O. BOX 9106NORWOOD, MASSACHUSETTS 02062-9106781/329-4700 A COMPACT ALGORITHM USING THE ADXL202 DUTY CYCLE OUTPUT by Harvey Weinberg Introduction There are many applications

More information

GCE A level 1145/01 ELECTRONICS ET5

GCE A level 1145/01 ELECTRONICS ET5 Surname Other Names Centre Number 2 Candidate Number GCE A level 1145/01 ELECTRONICS ET5 A.M. WEDNESDAY, 12 June 2013 1½ hours ADDITIONAL MATERIALS In addition to this examination paper, you will need

More information

Moving Message Dot Matrix Display

Moving Message Dot Matrix Display Moving Message Display N. SHARMA EM TESTED EM TESTED E M TESTED MUDIT AGARWAL Moving Displays are perfect for all sort of business establishments like Airports, Clinics, Hospitals, Hotels, Restaurants,

More information

GCE A level 1145/01 ELECTRONICS ET5

GCE A level 1145/01 ELECTRONICS ET5 Surname Centre Number Candidate Number Other Names 2 GCE A level 1145/01 ELECTRONICS ET5 S16-1145-01 A.M. FRIDAY, 17 June 2016 1 hour 30 minutes For s use ADDITIONAL MATERIALS In addition to this examination

More information

ELCT 912: Advanced Embedded Systems

ELCT 912: Advanced Embedded Systems ELCT 912: Advanced Embedded Systems Lecture 5: PIC Peripherals on Chip Dr. Mohamed Abd El Ghany, Department of Electronics and Electrical Engineering The PIC Family: Peripherals Different PICs have different

More information

IST TSic Temperature Sensor IC Application Notes ZACwire Digital Output

IST TSic Temperature Sensor IC Application Notes ZACwire Digital Output IST TSic Temperature Sensor IC ZACwire Digital Output CONTENTS 1 TSIC TM ZACWIRE TM COMMUNICATION PROTOCOL...2 1.1 TEMPERATURE TRANSMISSION PACKET FROM A TSIC TM...2 1.2 BIT ENCODING...3 1.3 HOW TO READ

More information

;;;;;;; Variables ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; cblock Bank0RAM ;Temporary storage for STATUS during interrupts

;;;;;;; Variables ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; cblock Bank0RAM ;Temporary storage for STATUS during interrupts TotPrgm2 Senior Design Program for Total Project (LED and Motor Control) Hayden Callender list P=PIC16F877, F=INHX8M, C=160, N=77, ST=OFF, MM=OFF, R=DEC, X=OFF #include P16F877.inc config(_cp_off & _PWRTE_ON

More information

Department of Mechanical and Industrial Engineering MECH 471 MICROCONTROLLERS FOR MECHATRONICS. Laboratory Specialist

Department of Mechanical and Industrial Engineering MECH 471 MICROCONTROLLERS FOR MECHATRONICS. Laboratory Specialist Department of Mechanical and Industrial Engineering MECH 471 laboratory manual 2011 MICROCONTROLLERS FOR MECHATRONICS Belal M. Ibrahim Laboratory Specialist General Safety Rules Electric and electronic

More information

PICee Development System

PICee Development System PICee Development System a PICF-based single-board computer by Reinhardt Weber, DCZM weber.reinhardt@t-online.de This single-board computer, using the popular low-cost PICF microcontroller, has been developed

More information

Binary Outputs: LEDs

Binary Outputs: LEDs Diode Theory Binary Outputs: LEDs A diode allows current to flow in only one direction. A diode consists of a semiconductor pn junction: In Silicon, the number of free electrons is a constant: np n i 2

More information

Triple Stage Incubator

Triple Stage Incubator Triple Stage Incubator Author: OVERVIEW Brian Iehl Hoffman Estates IL brian@dls.net This project is a triple stage incubator. Three separate incubators are simultaneously controlled by one microcontroller.

More information

Discrete Logic Replacement Garage Door Indicator

Discrete Logic Replacement Garage Door Indicator Garage Door Indicator Author: Brian Iehl Hoffman Estates, Illinois email: brian@dls.net / 4 MHz = 0.1 ma. The estimated battery life is then: 2550 ma Hr / 0.1 ma = 25500 hours. This is almost 3 years!

More information

AN654. PWM, a Software Solution for the PIC16CXXX METHODS INTRODUCTION

AN654. PWM, a Software Solution for the PIC16CXXX METHODS INTRODUCTION PWM, a Software Solution for the PIC16CXXX Author: Ole Röpcke Consultant, Europe INTRODUCTION The low cost, high performance features of a PIC16CXXX microcontroller make it a suitable device for automatic

More information

AN611. Resistance and Capacitance Meter Using a PIC16C622 INTRODUCTION. Microchip Technology Inc.

AN611. Resistance and Capacitance Meter Using a PIC16C622 INTRODUCTION. Microchip Technology Inc. M N611 Resistance and Capacitance Meter Using a PIC16C622 uthor: INTRODUCTION Rodger Richey Microchip Technology Inc. The PIC16C62X devices create a new branch in Microchip s PIC16CXXX 8bit microcontroller

More information

MicroToys Guide: Motors N. Pinckney April 2005

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

More information

EASTERN MEDITERRANEAN UNIVERSITY FACULTY OF ENGINEERING Electrical and Electronics Engineering Department

EASTERN MEDITERRANEAN UNIVERSITY FACULTY OF ENGINEERING Electrical and Electronics Engineering Department EASTERN MEDITERRANEAN UNIVERSITY FACULTY OF ENGINEERING Electrical and Electronics Engineering Department Fall 2003-2004 EEE 420 Project Report Ahmet Cem VARDAR 004245 Project Title: Heart Rate Monitor

More information

AN528. Implementing Wake-Up on Key Stroke. Implementing Wake-Up on Key Stroke INTRODUCTION IMPLEMENTATION FIGURE 1 - TWO KEY INTERFACE TO PIC16C5X

AN528. Implementing Wake-Up on Key Stroke. Implementing Wake-Up on Key Stroke INTRODUCTION IMPLEMENTATION FIGURE 1 - TWO KEY INTERFACE TO PIC16C5X AN58 INTRODUCTION In certain applications, the PIC16CXX is exercised only when a key is pressed, eg. remote keyless entry. In such applications, the battery life can be extended by putting the PIC16CXX

More information

2. Circuit diagram The overall functional diagram is:

2. Circuit diagram The overall functional diagram is: An LC meter in C By Juan H la Grange, ZS6SZ 1. Introduction This article and project is based on Digital LC Meter Version 2 by Phil Rice VK3BHR [https://sites.google.com/site/vk3bhr/home/index2-html] and

More information

Lesson 19 In-Circuit Programming

Lesson 19 In-Circuit Programming Elmer 160 Lesson 19 Overview Lesson 19 Introduction When the designer makes a new circuit, there is often some time spent in developing the software for that circuit. Removing the PIC from the circuit

More information

DatasheetDirect.com. Visit to get your free datasheets. This datasheet has been downloaded by

DatasheetDirect.com. Visit  to get your free datasheets. This datasheet has been downloaded by DatasheetDirect.com Your dedicated source for free downloadable datasheets. Over one million datasheets Optimized search function Rapid quote option Free unlimited downloads Visit www.datasheetdirect.com

More information

Laboratory Exercise 1 Microcontroller Board with Driver Board

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

More information

Mechatronics Project Kit - Getting Started Manual

Mechatronics Project Kit - Getting Started Manual Mechatronics Project Kit - Getting Started Manual 40-100-1 Mechatronics Project Kit Getting Started Manual 40-100-1 Feedback Feedback Instruments Ltd, Park Road, Crowborough, E. Sussex, TN6 2QR, UK. Telephone:

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

Simple Bridge Stand Alone H-Bridge Data Sheet Revision 1 August 2005

Simple Bridge Stand Alone H-Bridge Data Sheet Revision 1 August 2005 Simple Bridge Stand Alone H-Bridge Revision August 00 SOLUTIONS CUBED, LLC East First Street Chico, CA 99 phone: 0.9.0 fax: 0.9. www.solutions-cubed.com Copyright 00, LLC Simple Bridge Page Table of Contents.0

More information

A Ballistic Chronograph

A Ballistic Chronograph A Ballistic Chronograph Brandon Atkinson Steven Turner May 4, 2001 University of Maine ECE 403 Final Report Abstract The goal of the Ballistic Chronograph project was to create a device having the ability

More information

Development of a Matlab-Based Graphical User Interface Environment for PIC Microcontroller Projects

Development of a Matlab-Based Graphical User Interface Environment for PIC Microcontroller Projects Session 2220 Development of a Matlab-Based Graphical User Interface Environment for PIC Microcontroller Projects Sang-Hoon Lee, Yan-Fang Li, and Vikram Kapila Department of Mechanical, Aerospace, and Manufacturing

More information

BEST BMET CBET STUDY GUIDE MODULE ONE

BEST BMET CBET STUDY GUIDE MODULE ONE BEST BMET CBET STUDY GUIDE MODULE ONE 1 OCTOBER, 2008 1. The phase relation for pure capacitance is a. current leads voltage by 90 degrees b. current leads voltage by 180 degrees c. current lags voltage

More information

Section 22. Basic 8-bit A/D Converter

Section 22. Basic 8-bit A/D Converter M Section 22. A/D Converter HIGHLIGHTS This section of the manual contains the following major topics: 22.1 Introduction...22-2 22.2 Control Registers...22-3 22.3 A/D Acquisition Requirements...22-6 22.4

More information

Hi Hsiao-Lung Chan Dept Electrical Engineering Chang Gung University, Taiwan

Hi Hsiao-Lung Chan Dept Electrical Engineering Chang Gung University, Taiwan Timers and CCP Modules Hi Hsiao-Lung Chan Dept Electrical Engineering Chang Gung University, Taiwan chanhl@mail.cgu.edu.twcgu PIC18 Timers Timer2, Timer4 8-bit timers use instruction cycle clock as the

More information

Final Project Report E3390 Electronic Circuits Design Lab. RFID Access Control System. Jeffrey Mok Joseph Kim

Final Project Report E3390 Electronic Circuits Design Lab. RFID Access Control System. Jeffrey Mok Joseph Kim Final Project Report E3390 Electronic Circuits Design Lab RFID Access Control System Jeffrey Mok Joseph Kim Submitted in partial fulfillment of the requirements for the Bachelor of Science Degree May 11,

More information

ZA3020LV 2A Step-Down,PWM,Switch-Mode DC-DC Regulator

ZA3020LV 2A Step-Down,PWM,Switch-Mode DC-DC Regulator General Description The is a monolithic step-down switch-mode regulator with internal Power MOSFETs. It achieves 2A continuous output current over a wide input supply range with excellent load and line

More information

X-10 Compatible Appliance Module

X-10 Compatible Appliance Module X-0 Compatible Appliance Module Philip C. Plunkett pplunkett@cix.co.uk ABACUS ELECTRICS 0 Barley Mow Passage Chiswick, London, W4 4PH, U.K. Document Revision.0 - May 997 Source Code Revision.8 - August

More information

FM Tuner Controller for Portable and Car Radios

FM Tuner Controller for Portable and Car Radios WIRELESS AND REMOTE CONTROLLED PERSONAL APPLIANCE FM Tuner Controller for Portable and Car Radios Author: T. K. Mani Model Engineering College Cochin, India email: ihrdmec@md2.vsnl.net.in APPLICATION OPERATION

More information

The Electronic Whoopie Cushion

The Electronic Whoopie Cushion The Electronic Whoopie Cushion Author: Michael Kirkhart Farmington Hills, Michigan email: kirkhart@rust.net APPLICATION OPERATION: Overview Most of us who have read the advertisements in comic books or

More information

DEVELOPMENT OF A MICROCONTROLED IRRADIATION SYSTEM BASED ON LIGHT-EMITTING DIODES (LEDs) MATRIXES FOR PHOTOTHERAPY APPLICATIONS

DEVELOPMENT OF A MICROCONTROLED IRRADIATION SYSTEM BASED ON LIGHT-EMITTING DIODES (LEDs) MATRIXES FOR PHOTOTHERAPY APPLICATIONS DEVELOPMENT OF A MICROCONTROLED IRRADIATION SYSTEM BASED ON LIGHT-EMITTING DIODES (LEDs) MATRIXES FOR PHOTOTHERAPY APPLICATIONS Deborah Deah Assis Carneiro, Rafael Cruz Evangelista, Rozane de Fátima Turchiello,

More information

Electromechanical Timer Replacement Solutions Cubed Real-Time Clock

Electromechanical Timer Replacement Solutions Cubed Real-Time Clock Electromechanical Timer Replacement Solutions Cubed Real-Time Clock Author: OVERVIEW This design fragment is based upon converting an electromechanical timer idea to a PIC12CXXX 8-bit microcontroller.

More information

K7QO Marker Generator

K7QO Marker Generator K7QO Marker Generator The history of marker generators begins with the commercial receivers of the early beginnings of electronics. Typical short wave receivers came with two dials, one labeled tuning

More information

AVL-10000T AUDIO VIDEO LINK TRANSMITTER TECHNICAL MANUAL

AVL-10000T AUDIO VIDEO LINK TRANSMITTER TECHNICAL MANUAL AVL-10000T AUDIO VIDEO LINK TRANSMITTER TECHNICAL MANUAL Document : AVL-10000T Version: 1.00 Author: Henry S Date: 25 July 2008 This module contains protection circuitry to guard against damage due to

More information

Application Note Temperature Sensor IC

Application Note Temperature Sensor IC Content 1. TSic 206/203/201/306/316/303/301 3 2. TSic 506F/503F/516/501F 4 3. TSic 716 5 4. TSic Accuracy Overview 1) 5 5. ZACwire TM Digital Output 6 6. Die and Package Specifications 11 7. TSic Block

More information

Fig.1. A basic inductance and capacitance. (CR) oscillator.

Fig.1. A basic inductance and capacitance. (CR) oscillator. Constructional Project PIC LCF METER JOHN BECKER Simple monitoring of inductance, capacitance and frequency values HIS simple PIC-based unit was designed to measure and display the Tvalues of inductors

More information

AN594. Using the CCP Modules. Using the CCP Modules CCP OPERATION. PWM Mode PWM MODE BLOCK DIAGRAM TABLE 1: CCP MODE - TIMER RESOURCE

AN594. Using the CCP Modules. Using the CCP Modules CCP OPERATION. PWM Mode PWM MODE BLOCK DIAGRAM TABLE 1: CCP MODE - TIMER RESOURCE Using the CCP Modules AN594 This application note discusses the operation of a Capture Compare and PWM (CCP) module, and the interaction of multiple CCP modules with the timer resources. The Capture Compare

More information

Development of a Low Cost MPPT Circuit for Solar Panel

Development of a Low Cost MPPT Circuit for Solar Panel Development of a Low Cost MPPT Circuit for Solar Panel AN INTERNSHIP REPORT SUBMITTED TO THE DEPARTMENT OF MATHEMATICS AND NATURAL SCIENCES, BRAC UNIVERSITY IN PARTIAL FULFILMENT OF THE REQUIREMENTS FOR

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

Physics 335 Lab 7 - Microcontroller PWM Waveform Generation

Physics 335 Lab 7 - Microcontroller PWM Waveform Generation Physics 335 Lab 7 - Microcontroller PWM Waveform Generation In the previous lab you learned how to setup the PWM module and create a pulse-width modulated digital signal with a specific period and duty

More information

Ten Tec DDS Board Assembly Procedure

Ten Tec DDS Board Assembly Procedure 05 May 2014 Ten Tec DDS Board Assembly Procedure You will find a photo of a completed board at the end of these instructions. Refer it whenever clarification is required. 1. AD9835 Attachment If you purchased

More information

PID MOTOR CONTROLLER. Version 1.0. October Cytron Technologies Sdn. Bhd.

PID MOTOR CONTROLLER. Version 1.0. October Cytron Technologies Sdn. Bhd. PID MOTOR CONTROLLER PR24 Version 1.0 October 2009 Cytron Technologies Sdn. Bhd. Information contained in this publication regarding device applications and the like is intended through suggestion only

More information

M328 version ESR inductance capacitance meter multifunctional tester DIY

M328 version ESR inductance capacitance meter multifunctional tester DIY M328 version ESR inductance capacitance meter multifunctional tester DIY About transistor Multifunction Tester: The tester uses 3.7V rechargeable lithium battery (battery model: 14500) powered portable

More information

Electromechanical Switch Replacement

Electromechanical Switch Replacement Electromechanical Switch Replacement Electronic Key, Button Dimmer and Potentiometer Dimmer Controller Author: Slav Slavov Ell Sliven, Bulgaria email: ell@sliven.osf.acad.bg APPLICATION OPERATION These

More information

AN701. Switch Mode Battery Eliminator Based on a PIC16C72A OVERVIEW HARDWARE. Analog-to-Digital Converter Module

AN701. Switch Mode Battery Eliminator Based on a PIC16C72A OVERVIEW HARDWARE. Analog-to-Digital Converter Module Switch Mode Battery Eliminator Based on a PIC16C72A Author: OVERVIEW The PIC16C72A is a member of the PICmicro Mid- Range Family of 8-bit, high-speed microcontrollers. The PIC16C72 provides the following

More information

FACT003. Care and Feeding of the PIC16C74 and Its Peripherals. A/D Converter Mysteries. Assumptions

FACT003. Care and Feeding of the PIC16C74 and Its Peripherals. A/D Converter Mysteries. Assumptions M FACT003 Care and Feeding of the PIC16C74 and Its Peripherals Author: The PIC16C74 is one of the latest mid-range microcontrollers from Microchip Technology Inc. In this article we will be addressing

More information

AN606. Low Power Design Using PICmicro Microcontrollers INTRODUCTION DESIGN TECHNIQUES RESISTOR TO LOWER POWER IN RC MODE CONTROL CIRCUIT

AN606. Low Power Design Using PICmicro Microcontrollers INTRODUCTION DESIGN TECHNIQUES RESISTOR TO LOWER POWER IN RC MODE CONTROL CIRCUIT Low Power Design Using PICmicro Microcontrollers Author: Rodger Richey FIGURE : USING AN EXTERNAL RESISTOR TO LOWER POWER IN RC MODE INTRODUCTION Power consumption is an important element in designing

More information

Test Report. 10W/5V/2A AC/DC Adapter. Reference Design Using UCC28700

Test Report. 10W/5V/2A AC/DC Adapter. Reference Design Using UCC28700 Test Report 0W/5V/2A AC/DC Adapter Reference Design Using UCC28700 Table of Content Introduction... 3 2 Electrical Performance Specifications... 3 3 Schematic... 4 4 Function Test Report... 5 4. Test Equipment...

More information

Understanding, measuring, and reducing output noise in DC/DC switching regulators

Understanding, measuring, and reducing output noise in DC/DC switching regulators Understanding, measuring, and reducing output noise in DC/DC switching regulators Practical tips for output noise reduction Katelyn Wiggenhorn, Applications Engineer, Buck Switching Regulators Robert Blattner,

More information

PAM2421 EVB User Guide

PAM2421 EVB User Guide EV Board User Guide AE Department 1. Revision Information PAM2421 Date Revision Description Comment 2011/09 V1.0 Initial Release 2. PAM2804 General Description The PAM2421 devices are high-performance,

More information

GROAN DETECTOR SYSTEM

GROAN DETECTOR SYSTEM GROAN DETECTOR SYSTEM This project is what I call a groan detector. A friend referred a woman (Marie) to me whose husband (John) had been stricken with a stroke and became paralyzed. His mind is good,

More information

Embedded Systems. Oscillator and I/O Hardware. Eng. Anis Nazer First Semester

Embedded Systems. Oscillator and I/O Hardware. Eng. Anis Nazer First Semester Embedded Systems Oscillator and I/O Hardware Eng. Anis Nazer First Semester 2016-2017 Oscillator configurations Three possible configurations for Oscillator (a) using a crystal oscillator (b) using an

More information

Thermal shut-down protector Power good delay function Output voltage switching function (BS/CS) P by P OSC. Soft Start LDOIN SCP UVLO.

Thermal shut-down protector Power good delay function Output voltage switching function (BS/CS) P by P OSC. Soft Start LDOIN SCP UVLO. LV5636VH DC/DC Boost converter for BS/CS antennas Application Note Ver.2.0 http://onsemi.com 1. Overview LV5636VH integrates 1ch DC/DC boost converter and 1ch LDO. It is suitable as the power supply for

More information

Stepper Motors & Look Up Table

Stepper Motors & Look Up Table tepper Motors & Look Up Table Unipolar (5 lead) stepper motor from www.mpj.com. stepper motor is a digital motor with two phases and 4, 5, or 6 leads. These leads connect to two sets of electromagets.

More information

LSP5502 2A Synchronous Step Down DC/DC Converter

LSP5502 2A Synchronous Step Down DC/DC Converter FEATURES 2A Output Current Wide 4.5V to 27V Operating Input Range Integrated 20mΩ Power MOSFET Switches Output Adjustable from 0.925V to 24V Up to 96% Efficiency Programmable Soft-Start Stable with Low

More information

8-BIT MICROCONTROLLER USER S MANUAL REVISION

8-BIT MICROCONTROLLER USER S MANUAL REVISION June 2006 GM1003P 8BIT MICROCONTROLLER USER S MANUAL REVISION 0.4 TABLE OF CONTENTS 1. PRODUCT OVERVIEW... 3 2. MEMORY ORGANIZATION... 13 3. INTERRUPT... 27 4. INSTRUCTIONS SET... 30 5. CLOCK CIRCUIT...

More information

PIC16C5X. EPROM/ROM-Based 8-Bit CMOS Microcontroller Series. Peripheral Features: Devices Included in this Data Sheet: CMOS Technology:

PIC16C5X. EPROM/ROM-Based 8-Bit CMOS Microcontroller Series. Peripheral Features: Devices Included in this Data Sheet: CMOS Technology: EPROM/ROM-Based 8-Bit CMOS Microcontroller Series Devices Included in this Data Sheet: PIC16C54 PIC16CR54 PIC16C55 PIC16C56 PIC16CR56 PIC16C57 PIC16CR57 PIC16C58 PIC16CR58 Note: 16C5X refers to all revisions

More information

PICmicro MCU APPLICATION DESIGN AND HARDWARE INTERFACING

PICmicro MCU APPLICATION DESIGN AND HARDWARE INTERFACING 6 PICmicro MCU APPLICATION DESIGN AND HARDWARE INTERFACING CONTENTS AT A GLANCE Estimating Application Power Requirements Reset Interfacing to External Devices DIGITAL LOGIC DIFFERENT LOGIC LEVELS WITH

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

ANP012. Contents. Application Note AP2004 Buck Controller

ANP012. Contents. Application Note AP2004 Buck Controller Contents 1. AP004 Specifications 1.1 Features 1. General Description 1. Pin Assignments 1.4 Pin Descriptions 1.5 Block Diagram 1.6 Absolute Maximum Ratings. Hardware.1 Introduction. Typical Application.

More information

Distributed by: www.jameco.com 1-800-831-4242 The content and copyrights of the attached material are the property of its owner. M PIC16C5X EPROM/ROM-Based 8-Bit CMOS Microcontroller Series Devices Included

More information

Application Note Receivers MLX71120/21 With LNA1-SAW-LNA2 configuration

Application Note Receivers MLX71120/21 With LNA1-SAW-LNA2 configuration Designing with MLX71120 and MLX71121 receivers using a SAW filter between LNA1 and LNA2 Scope Many receiver applications, especially those for automotive keyless entry systems require good sensitivity

More information

LCD MULTIMETER FOR YOUR SHACK. MEASUREMENT U, I, P, Ah FOR GREEN ENERGY - WIND TURBINE, SOLAR PANELS. MEASUREMENT U, I, P, Ah, kwh

LCD MULTIMETER FOR YOUR SHACK. MEASUREMENT U, I, P, Ah FOR GREEN ENERGY - WIND TURBINE, SOLAR PANELS. MEASUREMENT U, I, P, Ah, kwh LCD MULTIMETER FOR YOUR SHACK MEASUREMENT U, I, P, Ah FOR GREEN ENERGY - WIND TURBINE, SOLAR PANELS MEASUREMENT U, I, P, Ah, kwh www.sp2dmb.cba.pl sp2dmb@gmail.com MULTIMETER - ATMEGA8 Piotr Bryl SP2DMB

More information

Constructional Project

Constructional Project Cx/Lx S C L L C C RLY 0 F 0 F COMP 47k +5V Fout CAL C/L HOW IT WORKS: THE EQUATIONS (A) In calibration mode () With just L and C: F =. L.C () With C added to C: F =. L.(C+C) (3) From () and (), we can

More information

Evaluates: MAX17544 in 5V Output-Voltage Application. MAX V Output Evaluation Kit. General Description. Features.

Evaluates: MAX17544 in 5V Output-Voltage Application. MAX V Output Evaluation Kit. General Description. Features. MAX7544 5V Output Evaluation Kit Evaluates: MAX7544 in General Description The MAX7544 5V output evaluation kit (EV kit) provides a proven design to evaluate the MAX7544 high-voltage, high-efficiency,

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

2015 Technological Studies. Advanced Higher. Finalised Marking Instructions

2015 Technological Studies. Advanced Higher. Finalised Marking Instructions 05 Technological Studies Advanced Higher Finalised Marking Instructions Scottish Qualifications Authority 05 The information in this publication may be reproduced to support SQA qualifications only on

More information

TDA1541A DAC User Manual

TDA1541A DAC User Manual TDAA DAC User Manual Analog Metric www.analogmetric.com sales@analogmetric.com Copyright 009 All Rights Reserved [TDAA TRODUCTION TDAA DAC is the classic bit DAC developed by Philips, which has been employed

More information

Presentation Content Review of Active Clamp and Reset Technique in Single-Ended Forward Converters Design Material/Tools Design procedure and concern

Presentation Content Review of Active Clamp and Reset Technique in Single-Ended Forward Converters Design Material/Tools Design procedure and concern Active Clamp Forward Converters Design Using UCC2897 Hong Huang August 2007 1 Presentation Content Review of Active Clamp and Reset Technique in Single-Ended Forward Converters Design Material/Tools Design

More information

Application Note, V1.0, Nov 2004 ICE3B2565. SMPS Evaluation Board with CoolSET TM ICE3B2565. Power Management & Supply

Application Note, V1.0, Nov 2004 ICE3B2565. SMPS Evaluation Board with CoolSET TM ICE3B2565. Power Management & Supply Application Note, V1.0, Nov 2004 ICE3B2565 SMPS Evaluation Board with CoolSET TM ICE3B2565 F3 Power Management & Supply N e v e r s t o p t h i n k i n g. Edition 2005-01-13 Published by Infineon Technologies

More information

Purpose. Table of Contents. Purpose...1. Introduction...2. General Product Information...2. Key Performance Summary Table...3

Purpose. Table of Contents. Purpose...1. Introduction...2. General Product Information...2. Key Performance Summary Table...3 Purpose The RT8008 is a high-efficiency 1.5MHz current mode synchronous step-down regulator that can deliver up to 600mA output current from an input voltage range of 2.5V to 5.5V. This document explains

More information

LD /15/2011. Green-Mode PWM Controller with Frequency Swapping and Integrated Protections. Features. General Description.

LD /15/2011. Green-Mode PWM Controller with Frequency Swapping and Integrated Protections. Features. General Description. 12/15/2011 Green-Mode PWM Controller with Frequency Swapping and Integrated Protections Rev. 02a General Description The LD7536 is built-in with several functions, protection and EMI-improved solution

More information

Using an automated Excel spreadsheet to compensate a flyback converter operated in current-mode. Christophe Basso, David Sabatié

Using an automated Excel spreadsheet to compensate a flyback converter operated in current-mode. Christophe Basso, David Sabatié Using an automated Excel spreadsheet to compensate a flyback converter operated in current-mode Christophe Basso, David Sabatié ON Semiconductor download Go to ON Semiconductor site and enter flyback in

More information

LCFesR 4.5 precise, wide range measuring unit

LCFesR 4.5 precise, wide range measuring unit LCFesR 4.5 precise, wide range measuring unit LCFesR 4.5 unit is a precise, wide range LC / LCF / LCR / ESR meter (tester / checker) that measures inductance (L), capacity (C), frequency (F), small resistance

More information

Frequency Generator (Wobbler) to 4GHz

Frequency Generator (Wobbler) to 4GHz Wolfgang Schneider, DJ8ES Frequency Generator (Wobbler) to 4GHz The following article describes a frequency generator with a wobble function for the frequency range from 10 MHz to 4 GHz. The output is

More information

S Pixie QRP Kit User Manual. Welcome to visit the home page to obtain the latest data. 1 / 24. Revision V160515

S Pixie QRP Kit User Manual. Welcome to visit the home page  to obtain the latest data. 1 / 24. Revision V160515 S-Pixie QRP Kit User Manual Revision V160515 Welcome to visit the home page www.lxqqfy.com to obtain the latest data. 1 / 24 1. Introduction PIXIE is a very small volume of simple 40 meter band micro-power

More information

preliminary Antenna Design Guide for the SkyeRead M1 Background

preliminary Antenna Design Guide for the SkyeRead M1 Background Antenna Design Guide for the SkyeRead M1 Background The SkyeRead M1 is designed for low power RFID applications that require less than 4 inches read range when using the internal antenna of the M1. Alternatively,

More information

25 Watt DC/DC converter using integrated Planar Magnetics

25 Watt DC/DC converter using integrated Planar Magnetics technical note 25 Watt DC/DC converter using integrated Planar Magnetics Philips Components 25 Watt DC/DC converter using integrated Planar Magnetics Contents Introduction 2 Converter description 3 Converter

More information

GCE A LEVEL. WJEC Eduqas GCE A LEVEL in ELECTRONICS ACCREDITED BY OFQUAL DESIGNATED BY QUALIFICATIONS WALES SAMPLE ASSESSMENT MATERIALS

GCE A LEVEL. WJEC Eduqas GCE A LEVEL in ELECTRONICS ACCREDITED BY OFQUAL DESIGNATED BY QUALIFICATIONS WALES SAMPLE ASSESSMENT MATERIALS GCE A LEVEL WJEC Eduqas GCE A LEVEL in ELECTRONICS ACCREDITED BY OFQUAL DESIGNATED BY QUALIFICATIONS WALES SAMPLE ASSESSMENT MATERIALS Teaching from 207 For award from 209 A LEVEL ELECTRONICS Sample Assessment

More information

Controlling DC Brush Motor using MD10B or MD30B. Version 1.2. Aug Cytron Technologies Sdn. Bhd.

Controlling DC Brush Motor using MD10B or MD30B. Version 1.2. Aug Cytron Technologies Sdn. Bhd. PR10 Controlling DC Brush Motor using MD10B or MD30B Version 1.2 Aug 2008 Cytron Technologies Sdn. Bhd. Information contained in this publication regarding device applications and the like is intended

More information

Design of the distributed data server using PIC_SERVER v3.7

Design of the distributed data server using PIC_SERVER v3.7 Author: Che-Chang Yang (2010-06-22); recommend: Yeh-Liang Hsu (2010-06-26). This document describes the design of the distributed data server (DDS) using PIC_SERVER v3.7. The DDS consists of two parts:

More information

DIO6970 High-Efficiency 2A, 24V Input Synchronous Step Down Converter

DIO6970 High-Efficiency 2A, 24V Input Synchronous Step Down Converter DIO6970 High-Efficiency 2A, 24V Input Synchronous Step Down Converter Rev 0.2 Features Low R DS(ON) for internal switches (top/bottom) 130mΩ/80mΩ, 2.0A 4.5-24V input voltage range High-Efficiency Synchronous-Mode

More information

SIMULATION OF A SERIES RESONANT CIRCUIT ECE562: Power Electronics I COLORADO STATE UNIVERSITY. Modified in Fall 2011

SIMULATION OF A SERIES RESONANT CIRCUIT ECE562: Power Electronics I COLORADO STATE UNIVERSITY. Modified in Fall 2011 SIMULATION OF A SERIES RESONANT CIRCUIT ECE562: Power Electronics I COLORADO STATE UNIVERSITY Modified in Fall 2011 ECE 562 Series Resonant Circuit (NL5 Simulation) Page 1 PURPOSE: The purpose of this

More information

Princeton Technology Corp.

Princeton Technology Corp. DESCRIPTION is an electronic volume controller IC utilizing CMOS Technology specially designed for use on audio equipments. It has two () built-in channels making it ideally suitable for mono and stereo

More information

CORE SERIES DATASHEET Mar 01, 2005

CORE SERIES DATASHEET Mar 01, 2005 CORE SERIES DATASHEET Mar 01, 2005 CORE-2 /CORE-12 /CORE-20 The CORE2. CORE12 and CORE20 are similar to the obsolete CORE0, CORE10 and CORE15 MK(ii) series devices, but they have extra pins that allow

More information

Understanding and Optimizing Electromagnetic Compatibility in Switchmode Power Supplies

Understanding and Optimizing Electromagnetic Compatibility in Switchmode Power Supplies Understanding and Optimizing Electromagnetic Compatibility in Switchmode Power Supplies 1 Definitions EMI = Electro Magnetic Interference EMC = Electro Magnetic Compatibility (No EMI) Three Components

More information

Datasheet. 5A 240KHZ 36V PWM Buck DC/DC Converter. Features

Datasheet. 5A 240KHZ 36V PWM Buck DC/DC Converter. Features General Description The is a 240 KHz fixed frequency monolithic step down switch mode regulator with a built in internal Power MOSFET. It achieves 5A continuous output current over a wide input supply

More information

Datasheet. 4A 240KHZ 23V PWM Buck DC/DC Converter. Features

Datasheet. 4A 240KHZ 23V PWM Buck DC/DC Converter. Features General Description Features The is a 240 KHz fixed frequency monolithic step down switch mode regulator with a built in internal Power MOSFET. It achieves 4A continuous output current over a wide input

More information

DIO6305 High-Efficiency 1.2MHz, 1.1A Synchronous Step-Up Converter

DIO6305 High-Efficiency 1.2MHz, 1.1A Synchronous Step-Up Converter High-Efficiency 1.2MHz, 1.1A Synchronous Step-Up Converter Rev 1.2 Features High-Efficiency Synchronous-Mode 2.7-5.25V input voltage range Device Quiescent Current: 30µA (TYP) Less than 1µA Shutdown Current

More information

BF1556 For 5V1A Charger Design

BF1556 For 5V1A Charger Design BF1556 For 5V1A Charger Design Table of Contents BF1556 for High efficiency Charger Design: (AC Input 90-264Vac,Output 5V 1A, No-Load Standby Power

More information

MCV18E Data Sheet. 18-Pin Flash Microcontroller Microchip Technology Inc. DS41399A

MCV18E Data Sheet. 18-Pin Flash Microcontroller Microchip Technology Inc. DS41399A Data Sheet 18-Pin Flash Microcontroller 2009 Microchip Technology Inc. DS41399A Note the following details of the code protection feature on Microchip devices: Microchip products meet the specification

More information