Energy Monitoring With Power Line Communication

Size: px
Start display at page:

Download "Energy Monitoring With Power Line Communication"

Transcription

1 Energy Monitoring With Power Line Communication Design Review Matthew Feddersen Evan Richards Saheed Rosenje Project #33 TA: Kevin Chen ECE 445 Senior Design Project Laboratory October 1st, 2014

2 1.0 Introduction 1.1 Statement of Purpose The purpose of our project is to create an efficient home appliance energy monitoring system. There are plenty of energy monitoring devices on the market. Currently all of these devices use wireless signals to transmit their energy consumption data. We believe this is a waste of energy and less efficient data transmission method. Our alternative is to use power line communication to transmit our data. We hope to design a product that is both affordable and energy efficient. 1.2 Objectives Goals Develop two working transmitter modules Develop one working receiver module Interface receiver module with internet to view data Functions Monitor power and energy usage of multiple appliances and devices Aggregate system wide usage data in central location Display data in user friendly format Benefits Easy to install No batteries or external power supplies needed Visualize both instantaneous power and energy usage over time Monitor multiple, distinct appliances and devices Features Compatible with all 120VAC appliances and electronic devices Modular, allowing for monitoring of numerous appliances and devices Store and view all data in one central location

3 2.0 Design 2.1 Block Diagrams Two distinct devices are needed for operation of the system: the Measurement and Transmitter Module, and the Receiver Module. The modular nature of our system allows the user to add any number of the Measurement and Transmitter Modules while only needing one receiver module. For demonstration purposes, we intend to build two Measurement and Transmitter Modules and one Receiver Module. In the block diagrams for each device, solid lines represent 120VAC 60Hz power, dashed lines represent DC power, and dot dashed lines represent the flow of measurement data. Figure 1 Top Level System Layout Figure 2 Measurement and Transmitter Module

4 Figure 3 Receiver Module 2.2 Block Descriptions and Circuits Measurement and Transmitter Module Overall: The Measurement and Transmitter Module acts as the device in between the wall outlet and the home appliance being monitored. Power from the 120VAC line is converted to DC by the AC/DC Power Circuit and then sent to power the PLC circuit, which in turn powers the microcontroller. The Measurement Circuit receives power from the 120VAC line and measures the voltage and current. It then passes the power along to the home appliance and sends the measured values to the Microcontroller. The Microcontroller converts the analog measurements to digital values using a built in ADC. It sends this data to the PLC chip, which then injects a message into the 120VAC power line in the form of a modulated signal. Power Circuit: This circuit provides the dc power needed by the PLC chip and the microcontroller. The PLC chip operates at 12V while the microcontroller operates at 3.3V. The power supply circuit only needs to provide the 12V power to the PLC chip, however, as the chip has a built in linear regulator which can output 3.3V at up to 50mA. According to [1] and [2], both devices combined can draw an approximate maximum current of 500mA. The power supply circuit was designed according to these specifications. An overall schematic of the power circuit can be seen in Figure 4 below. Power will enter the circuit via a standard NEMA 5 15 male connector, the type that plugs into a wall outlet. From there it

5 will pass through a 250V, 15A fuse for user safety and internal circuit protection. After passing through the fuse, the power will split into two separate circuits, the power circuit and the measuring circuit. Continuing with the power circuit, a transformer with turns ratio 115:16 will step down the line voltage to approximately 17V RMS. At this point a standard bridge rectifier is used to achieve full wave rectification of the voltage. The rectifier was picked to have a blocking voltage higher than 17V RMS and a maximum output current higher than 500mA. In order to adjust the voltage to the final desired level of 12Vdc, a capacitor and a linear regulator were added after the rectifier. The linear regulator, although inefficient, is an effective way to achieve a constant output voltage without having to implement a switching power converter with feedback. As long as the input to the regulator remains above the desired output by the regulator s designated dropout voltage, the output voltage will remain essentially constant. For the linear regulator chosen, the dropout voltage is 2.5V, meaning that the input must be at least 14.5Vdc in order to obtain an output voltage of 12Vdc. From this requirement it is possible to calculate the necessary value of the rectifier output capacitor. Assuming a worst case scenario of line voltage equal to 115V RMS, the secondary voltage of the transformer will be 16V RMS, with a peak voltage of 22.6V. The diode bridge has a total forward voltage of 1V, so the peak of the rectified voltage is 21.6V. In order for the capacitor to cover one full cycle of the output of the linear regulator, it must provide energy E = P T = V I 1 f = = 0.05 J (1) The energy stored in a capacitor is 1 2 E = 2 CV (2) Combining equations (1) and (2), we see that C = V 2 = 214 μf (3) 2E = (21.6) 2 The closest standard capacitor value is 220 μf. The other two capacitors are included as additional filters for the linear regulator as seen in [3]. Figure 4 Power Supply circuit for Measurement and Transmitter Module Measurement Circuit: This circuit will perform the necessary measurements of the line voltage and the current drawn by the home appliance. The circuit must be designed to output voltage levels which are within the

6 tolerance of the analog microcontroller inputs. As will be discussed later, we are using a version of the MSP430 microcontroller to convert the measurements to digital values, as well as perform calculations and interpret them before sending the data to the PLC circuit. As a result, the design of the measurement circuit in Figure 5 is based upon the design found in [2]. The voltage measuring circuit is essentially the same, whereas a few changes were made to the current measuring circuit. Instead of measuring the current with a current transformer, we have chosen to use a shunt resistor. The first impression of this choice is that it is inherently inefficient. With the choice of a very small, precise resistor, though, the losses can be minimized. We have chosen to use a precision resistor with a resistance of Ω. This will result in a maximum voltage of V = I R = = 75 mv (4) and the power dissipated will be P = I 2 R = = 1.13 W (5) This is still a relatively small power loss and the voltage will be within the measurable range of the MSP430. Figure 5 Measurement Circuit

7 Microcontroller: Acting as an ADC between the Measurement Circuit and the Powerline Communication module will be an MSP430FE4272 microcontroller. This particular MSP430 is extremely low power and is specifically tailored for voltage and current measurement, which is the main reason we chose it. The MSP430 that we chose takes approximately 3V and 400 microa as input. It will connect directly with our PLC chip, communicating via UART asynchronously. Quite simply, it takes the current and voltage values from the measurement circuit, digitizes them to one 24 bit message, and sends that to the PLC chip for transmission every 2 seconds. The 24 bit messages are formatted as one 16 bit current value and one 8 bit voltage value. The 16 bit current value is formatted with 14 value bits and 2 parity bits, while the voltage value is formatted with 7 value bits and 1 parity bit. The parity bits, in addition to redundant transmission, allows for rudimentary error checking in the receiving microprocessor. The format can be seen in the table below: I: I0 I1 I2 I3 I4 I5 I6 P0 I7 I8 I9 I10 I11 I12 I13 P1 V: V0 V1 V2 V3 V4 V5 V6 P2 P0 is the even parity of I0 I6, P1 is the even parity of I7 I13, and P2 is the even parity of V0 V6. The most relevant connections shown in the figure below are the RX/TX lines coming from the MSP to the ST, the input current and voltage values coming from the measurement circuit to the MSP, and the RX_IN and TX_OUT connections coming from the ST to the external filter circuitry. Interface between MSP430 (left) and ST7540 (right) Powerline Communication Chip:

8 A commercial Power Line Communication chip that acts as a transmitter to the power line. This will add a modulated carrier signal to the 60 Hz power line with our encoded messages. The modulated signal will arrive at the receiver to be demodulated. Example of FSK, from Wikipedia To transmit and receive data from our module we have selected the ST7540 transceiver FSK chip [5]. Our data will be sent using a frequency modulation scheme named binary frequency shift keying. When transmitting data, BFSK uses two frequencies to transmit binary information.with this scheme, the 1 is called the mark frequency and the 0 is called the space frequency. The figure above illustrates how the data signal is modulated across the carrier wave. We have selected the ST7540 default communication frequency of 132.5kHz which is within the FCC allow frequency C band [1]. We are also selecting a Baud Rate of 4800bps and a standard deviation of 1. This deviation widens the range between our mark and space frequencies of Hz and Hz. The data transmission and reception mode will be set to asynchronous since we are using a UART microcontroller to handle the transmission and reception timing. During transmission and reception, external signals at interfering frequencies or noise from other devices turning on and off, can cause distortion in our signal. In order to eliminate some of these distortions, we must strengthen our Rx and Tx signal. In transmission, the ST7540 filters our output signal spectrum and reduces the harmonic distortion. In addition, there is a variable gain amplifier with a gain range of 0db to 30db. The following figure depicts our transmission signal flow

9 PLC internal filter and liner injection diagram for Tx, from the ST7540 documentation [1] In addition to the internal filters, the ST7540 has an external filter for the transmission signal. The filter introduces attenuation approximately an octave above the transmission channel frequency. The following diagram depicts the flow of the transmission signal. PLC external filter and line injection circuitry, from the ST7540 documentation [1]

10 2.2.2 Receiver Module Overall: The Receiver Module is the central device responsible for receiving and aggregating the transmitter messages from the power line. Like the Transmitter Module, the Receiver has an AC/DC Power Circuit to power each of its components. It also has a PLC chip to receive and digitize the communication from the power line, and a microcontroller to decode this communication into a useful format. The microcontroller sends this information to the cloud through a wifi module. AC/DC Power Circuit: This circuit will be exactly the same as the one in the Measurement and Transmitter Module. It will convert the AC voltage from the wall outlet to the DC voltage necessary to power each component in the Receiver Module. PLC Chip: This is the same as the chip on the Transmitter Module, except it is set to specifically receive messages instead of sending them. This will interface directly with the microcontroller unit, sending any messages there for processing. This utilizes the same filter and line injection circuits as on the Transmitter. Similarly, in reception, the ST7540 receives signals and filters the signals to improve the sound to noise ratio before it reaches the demodulator. In addition, the ST7540 provides carrier/preamble detection which identifies signals with a harmonic component close to the signal frequency and detects whether a carrier is modulated at the Baud Rate. The following diagram depicts the flow of the received signal. PLC internal filter and liner injection diagram for Rx, from the ST7540 documentation [1]

11 Microcontroller and Wifi Module: The microcontroller takes in the data stream from the PLC chip, performs checks on the data parity as well as calculations for power and energy use, then sends the data to the cloud as a JSON object. We plan to use a Spark Core, an ARM based microcontroller with a built in TI CC3000 wifi module. We chose this because it fits within our power requirements of our receiver module and vastly simplifies the problem of wireless data transfer. The Spark Core is specifically built to simplify the interface between electronics and the internet, and there isn t a compelling enough reason for us to design and build our own interface when this one conveniently exists already. The Spark Core will take 5V as input from our power circuit, and anywhere from 30mA to 300mA of current, depending on its wifi connection and computational load. We will connect the microcontroller directly to our PLC chip to communicate via the UART serial protocol. Since the PLC chip will receive voltage and current data every 2 seconds from each transmitter, the spark core will be able to calculate an instantaneous power usage as well as an approximate energy metric relatively frequently. Even though we are not updating the values constantly, we expect such little variation in the voltage and current values that a 2 second sampling period will be sufficiently accurate. Interface between Spark Core (left) and ST7540 (right) Data Display: This will be a simple web page to show various metrics as tracked by the Spark Core. These metrics will be available for the overall power use as well as per transmitter, displayed in text form. The

12 metrics are current power usage, peak usage in the past 24 hours, peak usage in the past week, total usage over the past 24 hours, and total usage from the past week.

13 3.0 Requirements and Verification Measurement and Transmitter Module AC/DC Power Circuit Requirements V out = 12 V dc V ripple < 5% of V out I out,max = 500 ma Verification Test AC/DC power circuit with a multimeter and oscilloscope under no load, half load, and full load (500mA) to verify correct voltage and ripple. PLC Circuit Requirements PLC successfully receives data from MSP430 with no more than 5% error PLC successfully transmits data across powerline Draws no more than 500 ma at 12V Verification Feed data to chip and test with an oscilloscope to verify message modulation.verify the output signal s peak to peak voltage ranges from 1.75V to 3.5V Monitor powerline with signal analyzer and detect the data signal frequency modulation Measure consumed voltage and current on oscilloscope. Measurement Circuit Requirements 0.5 V and 0.5 A accuracy Voltage range of V rms Current Range of 0 15 A Verification Test measurement circuit with a function generator as input at low voltage levels, and use an oscilloscope to verify output at expected level. Test measurement circuit at minimum voltage, no load, then increase voltage to maximum, while taking down measured values. Repeat for 5A increments of load up to 15A Receiver Module

14 AC/DC Power Circuit Requirements V out = 5Vdc and 12Vdc V ripple < 5% of V out I out = 300mA at 5V and 100mA at 12V Verification Test AC/DC power circuit with a multimeter and oscilloscope under no load, half load, and full load to verify correct voltage and ripple. Test one voltage level first, then the other, then test together. PLC Circuit Requirements Able to filter and demodulate signal from power line Output correct data from demodulated signal, with 95% accuracy Verification Test with a function generator as input, and use an signal analyzer to verify message reception output. Test demodulated signal with oscilloscope to verify accuracy of received data. Microcontroller, Wifi, and Data Display Requirements Microcontroller can identify and ignore incorrectly transmitted data, with at least a 50% accuracy rate Webpage displays each of the required values as reported by the microcontroller with no mistakes Verification Test microcontroller with function generator as input, and use an oscilloscope or visual debugger to verify data correctness. Test wifi module with function generator as input, and use an internet browser to verify data upload. Program the Spark Core with test values to send to the webpage, then verify that they appear by refreshing the webpage. All values should match. 3.3 Tolerance Analysis

15 A part of project that we have concerns is the filtering of interfering signals. It is our hope we will have little to no interference but if this were to occur, we would first check for proper zero crossing with the three phases on the main line.this would involve synchronizing the transmission to the phase itself. In addition, we would also attempt to decrease the signal frequency. This would slow down the data speed but enable for for greater signal strength. the frequency of 110kHz has the highest gain but with in the B band. the following graph shows gain across the PLC s frequency band. We can not use the highest gain at 72kHz because it is in the A band held for electricity providers. Frequency response of the Tx active filter, from the ST7540 documentation

16 4.0 Ethics and Safety 4.1 Ethics Our project has some inherent safety risks that become ethical concerns in accordance with the IEEE Code of Ethics. Specifically, the 1st and 9th points: 1. to accept responsibility in making decisions consistent with the safety, health, and welfare of the public, and to disclose promptly factors that might endanger the public or the environment; 9. to avoid injuring others, their property, reputation, or employment by false or malicious action; As such, we will be sure to address any safety risks involved in working directly with mains power, ensuring our own safety while working on the project as well as the safety of others while using it. In addition, as a group, we will strive to improve our understanding of the formal engineering design process while offering constructive feedback to each other throughout. While this may be a capstone design project, there is still plenty to learn and improve upon for each of us. This is consistent in points 6, 7, 8, and 10 from the IEEE Code of Ethics: 6. to maintain and improve our technical competence and to undertake technological tasks for others only if qualified by training or experience, or after full disclosure of pertinent limitations; 7. to seek, accept, and offer honest criticism of technical work, to acknowledge and correct errors, and to credit properly the contributions of others; 8. to treat fairly all persons and to not engage in acts of discrimination based on race, religion, gender, disability, age, national origin, sexual orientation, gender identity, or gender expression; 10. to assist colleagues and co workers in their professional development and to support them in following this code of ethics.

17 4.2 Safety Since our project involves working with mains power, which is about 120V and 15A, there is a clear safety risk that we must address. Fortunately, the General Electrical Safety for Labs provided by the UIUC Division of Research Safety covers the basics of working with these levels of power. We have gone through the materials, and will adhere to the relevant safety protocols. For our end users, we will have to ensure that there is no further risk from electric shock with our project than normally present with wall sockets. For testing purposes, this can be achieved with proper insulation and protection around our 120V NEMA plug connectors. If we decide to produce a housing for the project, we can simply cover up the entire board with the housing material, which will give adequate protection to the end user.

18 5.0 Cost and Schedule 5.1 Cost Analysis Name Hourly Rate ($) Hours Total ($) = 2.5 * Rate * Hours Matthew Feddersen Evan Richards Saheed Rosenje Total 33, Item Quantity Unit Price ($) Total Price ($) ST7540 PLC MSP430FE4272 MCU NEMA 5 15 B male NEMA 5 15 B female Op amps and comparators Resistors, capacitors, inductors, diodes Spark Core wifi controller PCB's Hammond 164G16 XFMR Linear Regulator UA BAS3007A rectifier HXP Fuse Total

19 Item Total ($) Labor Cost 33, Parts Cost Total Cost 34, Schedule Week Task Responsibility 9/14/2014 Finish Proposal Matt Research commercial PLC chips Saheed Research current and voltage sensor parts Evan Design ADC circuit Matt 9/21/2014 Choose and purchase PLC Tx/Rx pair Saheed Order current and voltage sensor parts Evan Design monitoring circuit Evan Choose and order a microcontroller Matt Work on Design Review material Saheed 9/28/2014 Finish Design Review material Evan Eagle a microcontroller board Saheed Breadboard ADC circuit Matt Breadboard monitoring circuit Evan 10/5/2014 Design housing for transmitter and receiver pairs Saheed Eagle monitoring board Evan Set up and program microcontroller Matt 10/12/2014 Eagle schematic for ADC Matt Learn how to operate PLC chips Saheed PCB manufacturing of monitoring board Evan 10/19/2014 PCB manufacturing of ADC board Matt Assemble and verify monitoring board Evan

20 Demonstrate PLC chips working with virtual power lisaheed 10/26/2014 Test microcontroller with PLC chips Saheed Assembly and verification of ADC board Matt 11/2/2014 Further receiver testing with microcontroller Saheed Monitor/Transmitter assembly and testing Evan 11/9/2014 Test microcontroller with end user data display Matt Test transmitter/receiver interactions over PLC Saheed 11/16/2014 Prepare Demo, Presentation, and Paper Evan

21 References [1] AN2451 Application Note: ST7540 FSK Power line Transceiver Design Guide for AMR CD pdf [2] MSP430FE42x2: Mixed Signal Microcontroller datasheet [3] ua78m00 Series Positive Voltage Regulators datasheet [4] Power line Modems, Power Supplies, and Cleaning Up the Neighborhood [5] ST7540 FSK power line transceiver datasheet web ui/static/active/en/resource/technical/document/datasheet/ CD pdf [6] AN4068 Application Notes: ST7540 Power line Communication SOC Design Guide DM pdf

ECEN 1400, Introduction to Analog and Digital Electronics

ECEN 1400, Introduction to Analog and Digital Electronics ECEN 1400, Introduction to Analog and Digital Electronics Lab 4: Power supply 1 INTRODUCTION This lab will span two lab periods. In this lab, you will create the power supply that transforms the AC wall

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

Bluetooth Stereo Network

Bluetooth Stereo Network ECE 445 Fall 2012 Senior Design Project Proposal Bluetooth Stereo Network Team 7 Jeff Wheeler Rishi Ratan Jerry Sun Prof. Andrew Carl Singer TA: Justine Fortier Table of Contents 1.0 Introduction... 3

More information

TESTS OF 1 MHZ SIGNAL SOURCE FOR SPECTRUM ANALYZER CALIBRATION 7/8/08 Sam Wetterlin

TESTS OF 1 MHZ SIGNAL SOURCE FOR SPECTRUM ANALYZER CALIBRATION 7/8/08 Sam Wetterlin TESTS OF 1 MHZ SIGNAL SOURCE FOR SPECTRUM ANALYZER CALIBRATION 7/8/08 Sam Wetterlin (Updated 7/19/08 to delete sine wave output) I constructed the 1 MHz square wave generator shown in the Appendix. This

More information

Experiment # (4) AM Demodulator

Experiment # (4) AM Demodulator Islamic University of Gaza Faculty of Engineering Electrical Department Experiment # (4) AM Demodulator Communications Engineering I (Lab.) Prepared by: Eng. Omar A. Qarmout Eng. Mohammed K. Abu Foul Experiment

More information

Design of Bidirectional Coupling Circuit for Broadband Power-Line Communications

Design of Bidirectional Coupling Circuit for Broadband Power-Line Communications Journal of Electromagnetic Analysis and Applications, 2012, 4, 162-166 http://dx.doi.org/10.4236/jemaa.2012.44021 Published Online April 2012 (http://www.scirp.org/journal/jemaa) Design of Bidirectional

More information

Power Management & Supply. Design Note. Version 1.0, Nov. 2001 DN-EVALMF2ICE2A265-1. CoolSET 35W DVD Power Supply with ICE2A265.

Power Management & Supply. Design Note. Version 1.0, Nov. 2001 DN-EVALMF2ICE2A265-1. CoolSET 35W DVD Power Supply with ICE2A265. Version 1.0, Nov. 2001 Design Note DN-EVALMF2ICE2A265-1 CoolSET 35W DVD Power Supply with ICE2A265 Author: Harald Zöllinger Published by Infineon Technologies AG http://www.infineon.com Power Management

More information

= V peak 2 = 0.707V peak

= V peak 2 = 0.707V peak BASIC ELECTRONICS - RECTIFICATION AND FILTERING PURPOSE Suppose that you wanted to build a simple DC electronic power supply, which operated off of an AC input (e.g., something you might plug into a standard

More information

AC/DC Power Supply Reference Design. Advanced SMPS Applications using the dspic DSC SMPS Family

AC/DC Power Supply Reference Design. Advanced SMPS Applications using the dspic DSC SMPS Family AC/DC Power Supply Reference Design Advanced SMPS Applications using the dspic DSC SMPS Family dspic30f SMPS Family Excellent for Digital Power Conversion Internal hi-res PWM Internal high speed ADC Internal

More information

Transformerless UPS systems and the 9900 By: John Steele, EIT Engineering Manager

Transformerless UPS systems and the 9900 By: John Steele, EIT Engineering Manager Transformerless UPS systems and the 9900 By: John Steele, EIT Engineering Manager Introduction There is a growing trend in the UPS industry to create a highly efficient, more lightweight and smaller UPS

More information

AppNote 404 EM MICROELECTRONIC - MARIN SA. EM4095 Application Note RFID. Title: Product Family: TABLE OF CONTENT. Application Note 404

AppNote 404 EM MICROELECTRONIC - MARIN SA. EM4095 Application Note RFID. Title: Product Family: TABLE OF CONTENT. Application Note 404 EM MICROELECTRONIC - MARIN SA AppNote 0 Title: Product Family: Application Note 0 EM095 Application Note RFID Part Number: EM095 Keywords: RFID Transceiver, Reader Chip, EM095 Date: 5 September 00 TABLE

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

RC2200DK Demonstration Kit User Manual

RC2200DK Demonstration Kit User Manual Demonstration Kit User Manual Table of contents TABLE OF CONTENTS... 1 QUICK INTRODUCTION... 2 INTRODUCTION... 3 DEMONSTRATION BOARD... 4 POWER SUPPLY SECTION... 5 RS-232 INTERFACE... 6 CONNECTORS... 7

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

The Calculation of G rms

The Calculation of G rms The Calculation of G rms QualMark Corp. Neill Doertenbach The metric of G rms is typically used to specify and compare the energy in repetitive shock vibration systems. However, the method of arriving

More information

High Voltage Power Supplies for Analytical Instrumentation

High Voltage Power Supplies for Analytical Instrumentation ABSTRACT High Voltage Power Supplies for Analytical Instrumentation by Cliff Scapellati Power supply requirements for Analytical Instrumentation are as varied as the applications themselves. Power supply

More information

Analog and Digital Filters Anthony Garvert November 13, 2015

Analog and Digital Filters Anthony Garvert November 13, 2015 Analog and Digital Filters Anthony Garvert November 13, 2015 Abstract In circuit analysis and performance, a signal transmits some form of information, such as a voltage or current. However, over a range

More information

See Horenstein 4.3 and 4.4

See Horenstein 4.3 and 4.4 EE 462: Laboratory # 4 DC Power Supply Circuits Using Diodes by Drs. A.V. Radun and K.D. Donohue (2/14/07) Department of Electrical and Computer Engineering University of Kentucky Lexington, KY 40506 Updated

More information

Application Note. Line Card Redundancy Design With the XRT83SL38 T1/E1 SH/LH LIU ICs

Application Note. Line Card Redundancy Design With the XRT83SL38 T1/E1 SH/LH LIU ICs Application Note Design With the XRT83SL38 T1/E1 SH/LH LIU ICs Revision 1.3 1 REDUNDANCY APPLICATIONS INTRODUCTION Telecommunication system design requires signal integrity and reliability. When a T1/E1

More information

Article from Micrel. A new approach to the challenge of powering cellular M2M modems By Anthony Pele Senior Field Applications Engineer, Micrel

Article from Micrel. A new approach to the challenge of powering cellular M2M modems By Anthony Pele Senior Field Applications Engineer, Micrel Article from Micrel A new approach to the challenge of powering cellular M2M modems By Anthony Pele Senior Field Applications Engineer, Micrel www.micrel.com Industrial applications for machine-to-machine

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

UNDERSTANDING POWER FACTOR AND INPUT CURRENT HARMONICS IN SWITCHED MODE POWER SUPPLIES

UNDERSTANDING POWER FACTOR AND INPUT CURRENT HARMONICS IN SWITCHED MODE POWER SUPPLIES UNDERSTANDING POWER FACTOR AND INPUT CURRENT HARMONICS IN SWITCHED MODE POWER SUPPLIES WHITE PAPER: TW0062 36 Newburgh Road Hackettstown, NJ 07840 Feb 2009 Alan Gobbi About the Author Alan Gobbi Alan Gobbi

More information

INTRODUCTION TO COMMUNICATION SYSTEMS AND TRANSMISSION MEDIA

INTRODUCTION TO COMMUNICATION SYSTEMS AND TRANSMISSION MEDIA COMM.ENG INTRODUCTION TO COMMUNICATION SYSTEMS AND TRANSMISSION MEDIA 9/6/2014 LECTURES 1 Objectives To give a background on Communication system components and channels (media) A distinction between analogue

More information

Lab 3 Rectifier Circuits

Lab 3 Rectifier Circuits ECET 242 Electronic Circuits Lab 3 Rectifier Circuits Page 1 of 5 Name: Objective: Students successfully completing this lab exercise will accomplish the following objectives: 1. Learn how to construct

More information

AN1200.04. Application Note: FCC Regulations for ISM Band Devices: 902-928 MHz. FCC Regulations for ISM Band Devices: 902-928 MHz

AN1200.04. Application Note: FCC Regulations for ISM Band Devices: 902-928 MHz. FCC Regulations for ISM Band Devices: 902-928 MHz AN1200.04 Application Note: FCC Regulations for ISM Band Devices: Copyright Semtech 2006 1 of 15 www.semtech.com 1 Table of Contents 1 Table of Contents...2 1.1 Index of Figures...2 1.2 Index of Tables...2

More information

NC-12 Modbus Application

NC-12 Modbus Application NC-12 Modbus Application NC-12 1 Table of Contents 1 Table of Contents... 2 2 Glossary... 3 SCADA...3 3 NC-12 Modbus in general... 3 4 Entire system... 4 4.1 PFC to PC connection alternatives...4 4.1.1

More information

Advanced Data Capture and Control Systems

Advanced Data Capture and Control Systems Advanced Data Capture and Control Systems Tronisoft Limited Email: sales@tronisoft.com Web: www.tronisoft.com RS232 To 3.3V TTL User Guide RS232 to 3.3V TTL Signal Converter Modules P/N: 9651 Document

More information

ends of transmission line are used for relay operation [70]. Another type of

ends of transmission line are used for relay operation [70]. Another type of 69 CHAPTER-4 TRANSMISSION LINE DIFFERENTIAL PROTECTION USING WIRELESS TECHNOLOGY 4.1 INTRODUCTION The probability of fault occurrence on the overhead lines is much more due to their greater lengths and

More information

FM TRANSMITTER & RECEIVER HYBRID MODULES. FM-RTFQ SERIES FM-RRFQ SERIES. Transmitter. Receiver. Applications

FM TRANSMITTER & RECEIVER HYBRID MODULES. FM-RTFQ SERIES FM-RRFQ SERIES. Transmitter. Receiver. Applications FM Radio Transmitter & Receivers Available as or or 868MHz Transmit Range up to 20m Miniature Packages Data Rate up to 9.6Kbps No Adjustable Components Very Stable Operating Frequency Operates from 20

More information

Project Plan. Project Plan. May13-06. Logging DC Wattmeter. Team Member: Advisor : Ailing Mei. Collin Christy. Andrew Kom. Client: Chongli Cai

Project Plan. Project Plan. May13-06. Logging DC Wattmeter. Team Member: Advisor : Ailing Mei. Collin Christy. Andrew Kom. Client: Chongli Cai Project Plan May13-06 Logging DC Wattmeter Team Member: Ailing Mei Andrew Kom Chongli Cai Advisor : Collin Christy Client: Garmin International David Hoffman Qiaoya Cui Table of Contents Need Statement...

More information

Harmonics and Noise in Photovoltaic (PV) Inverter and the Mitigation Strategies

Harmonics and Noise in Photovoltaic (PV) Inverter and the Mitigation Strategies Soonwook Hong, Ph. D. Michael Zuercher Martinson Harmonics and Noise in Photovoltaic (PV) Inverter and the Mitigation Strategies 1. Introduction PV inverters use semiconductor devices to transform the

More information

DT3: RF On/Off Remote Control Technology. Rodney Singleton Joe Larsen Luis Garcia Rafael Ocampo Mike Moulton Eric Hatch

DT3: RF On/Off Remote Control Technology. Rodney Singleton Joe Larsen Luis Garcia Rafael Ocampo Mike Moulton Eric Hatch DT3: RF On/Off Remote Control Technology Rodney Singleton Joe Larsen Luis Garcia Rafael Ocampo Mike Moulton Eric Hatch Agenda Radio Frequency Overview Frequency Selection Signals Methods Modulation Methods

More information

Using Xbee 802.15.4 in Serial Communication

Using Xbee 802.15.4 in Serial Communication Using Xbee 802.15.4 in Serial Communication Jason Grimes April 2, 2010 Abstract Instances where wireless serial communication is required to connect devices, Xbee RF modules are effective in linking Universal

More information

ANADOLU UNIVERSITY DEPARTMENT OF ELECTRICAL AND ELECTRONICS ENGINEERING

ANADOLU UNIVERSITY DEPARTMENT OF ELECTRICAL AND ELECTRONICS ENGINEERING ANADOLU UNIVERSITY DEPARTMENT OF ELECTRICAL AND ELECTRONICS ENGINEERING EEM 102 INTRODUCTION TO ELECTRICAL ENGINEERING EXPERIMENT 9: DIODES AND DC POWER SUPPLY OBJECTIVE: To observe how a diode functions

More information

Electronics. Discrete assembly of an operational amplifier as a transistor circuit. LD Physics Leaflets P4.2.1.1

Electronics. Discrete assembly of an operational amplifier as a transistor circuit. LD Physics Leaflets P4.2.1.1 Electronics Operational Amplifier Internal design of an operational amplifier LD Physics Leaflets Discrete assembly of an operational amplifier as a transistor circuit P4.2.1.1 Objects of the experiment

More information

Design and Certification of ASH Radio Systems for Japan

Design and Certification of ASH Radio Systems for Japan Design and Certification of ASH Radio Systems for Japan RFM s second-generation ASH radio hybrids are being used in a wide variety of applications in Japan, operating under the Japanese BIJAKU radio regulations.

More information

Accurate Measurement of the Mains Electricity Frequency

Accurate Measurement of the Mains Electricity Frequency Accurate Measurement of the Mains Electricity Frequency Dogan Ibrahim Near East University, Faculty of Engineering, Lefkosa, TRNC dogan@neu.edu.tr Abstract The frequency of the mains electricity supply

More information

Fingerprint Based Biometric Attendance System

Fingerprint Based Biometric Attendance System Fingerprint Based Biometric Attendance System Team Members Vaibhav Shukla Ali Kazmi Amit Waghmare Ravi Ranka Email Id awaghmare194@gmail.com kazmiali786@gmail.com Contact Numbers 8097031667 9167689265

More information

Module 11: Conducted Emissions

Module 11: Conducted Emissions Module 11: Conducted Emissions 11.1 Overview The term conducted emissions refers to the mechanism that enables electromagnetic energy to be created in an electronic device and coupled to its AC power cord.

More information

Expat Audio Uber Power Supply... 2 Introduction... 2 Revision Control & Edits... 2 The Schematic... 3 Calculating the value of R1,R2 and R3...

Expat Audio Uber Power Supply... 2 Introduction... 2 Revision Control & Edits... 2 The Schematic... 3 Calculating the value of R1,R2 and R3... Expat Audio Uber Power Supply... 2 Introduction... 2 Revision Control & Edits... 2 The Schematic... 3 Calculating the value of R1,R2 and R3... 4 Assembling the board... 5 Connecting in your system... 7

More information

Timing Errors and Jitter

Timing Errors and Jitter Timing Errors and Jitter Background Mike Story In a sampled (digital) system, samples have to be accurate in level and time. The digital system uses the two bits of information the signal was this big

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

RGB for ZX Spectrum 128, +2, +2A, +3

RGB for ZX Spectrum 128, +2, +2A, +3 RGB for ZX Spectrum 128, +2, +2A, +3 Introduction... 2 Video Circuitry... 3 Audio Circuitry... 8 Lead Wiring... 9 Testing The Lead... 11 Spectrum +2A/+3 RGB Differences... 12 Circuitry Calculations...

More information

Constructing a precision SWR meter and antenna analyzer. Mike Brink HNF, Design Technologist.

Constructing a precision SWR meter and antenna analyzer. Mike Brink HNF, Design Technologist. Constructing a precision SWR meter and antenna analyzer. Mike Brink HNF, Design Technologist. Abstract. I have been asked to put together a detailed article on a SWR meter. In this article I will deal

More information

Android based Alcohol detection system using Bluetooth technology

Android based Alcohol detection system using Bluetooth technology For more Project details visit: http://www.projectsof8051.com/android-based-alcohol-detection-system-usingbluetooth-technology/ Code 1435 Project Title Android based Alcohol detection system using Bluetooth

More information

Experiment1: Introduction to laboratory equipment and basic components.

Experiment1: Introduction to laboratory equipment and basic components. Experiment1: Introduction to laboratory equipment and basic components. 1 OBJECTIVES. This experiment will provide exposure to the various test equipment to be used in subsequent experiments. A primary

More information

A Low-Cost VCA Limiter

A Low-Cost VCA Limiter The circuits within this application note feature THAT218x to provide the essential function of voltage-controlled amplifier (VCA). Since writing this note, THAT has introduced a new dual VCA, as well

More information

Single channel data transceiver module WIZ2-434

Single channel data transceiver module WIZ2-434 Single channel data transceiver module WIZ2-434 Available models: WIZ2-434-RS: data input by RS232 (±12V) logic, 9-15V supply WIZ2-434-RSB: same as above, but in a plastic shell. The WIZ2-434-x modules

More information

Application Note Noise Frequently Asked Questions

Application Note Noise Frequently Asked Questions : What is? is a random signal inherent in all physical components. It directly limits the detection and processing of all information. The common form of noise is white Gaussian due to the many random

More information

Experiment #11: LRC Circuit (Power Amplifier, Voltage Sensor)

Experiment #11: LRC Circuit (Power Amplifier, Voltage Sensor) Experiment #11: LRC Circuit (Power Amplifier, Voltage Sensor) Concept: circuits Time: 30 m SW Interface: 750 Windows file: RLC.SWS EQUIPMENT NEEDED Science Workshop Interface Power Amplifier (2) Voltage

More information

Power Supplies. 1.0 Power Supply Basics. www.learnabout-electronics.org. Module

Power Supplies. 1.0 Power Supply Basics. www.learnabout-electronics.org. Module Module 1 www.learnabout-electronics.org Power Supplies 1.0 Power Supply Basics What you ll learn in Module 1 Section 1.0 Power Supply Basics. Basic functions of a power supply. Safety aspects of working

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

Output Ripple and Noise Measurement Methods for Ericsson Power Modules

Output Ripple and Noise Measurement Methods for Ericsson Power Modules Output Ripple and Noise Measurement Methods for Ericsson Power Modules Design Note 022 Ericsson Power Modules Ripple and Noise Abstract There is no industry-wide standard for measuring output ripple and

More information

Tamura Closed Loop Hall Effect Current Sensors

Tamura Closed Loop Hall Effect Current Sensors Tamura Closed Loop Hall Effect Current Sensors AC, DC, & Complex Currents Galvanic Isolation Fast Response Wide Frequency Bandwidth Quality & Reliability RoHs Compliance Closed Loop Hall Effect Sensors

More information

CATHODIC PROTECTION TRANSFORMER RECTIFIER (CPTR)

CATHODIC PROTECTION TRANSFORMER RECTIFIER (CPTR) CATHODIC PROTECTION TRANSFORMER RECTIFIER (CPTR) Fig1. CPTR SMART CONTROL PRECISION CUSTOMIZED MANUAL OR AUTO SCR OR DIODE DRY TYPE SWITCH MODE DRY TYPE SCR OR DIODE OIL TYPE 1 INDEX PAGE 1. Cover 2. Index

More information

Part Number Description Packages available

Part Number Description Packages available Features 3 digital I/O Serial Data output Connects directly to RF Modules Easy Enc / Dec Pairing Function Minimal External Components Required Performs all encoding/decoding of data for Reliable Operation.

More information

US-Key New generation of High performances Ultrasonic device

US-Key New generation of High performances Ultrasonic device US-Key New generation of High performances Ultrasonic device US-Key connected to a laptop computer US-Key Ultrasound device single channel Features USB2 High Speed connection Ultralow noise preamplifier

More information

Properties of electrical signals

Properties of electrical signals DC Voltage Component (Average voltage) Properties of electrical signals v(t) = V DC + v ac (t) V DC is the voltage value displayed on a DC voltmeter Triangular waveform DC component Half-wave rectifier

More information

Making Accurate Voltage Noise and Current Noise Measurements on Operational Amplifiers Down to 0.1Hz

Making Accurate Voltage Noise and Current Noise Measurements on Operational Amplifiers Down to 0.1Hz Author: Don LaFontaine Making Accurate Voltage Noise and Current Noise Measurements on Operational Amplifiers Down to 0.1Hz Abstract Making accurate voltage and current noise measurements on op amps in

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

AM Receiver. Prelab. baseband

AM Receiver. Prelab. baseband AM Receiver Prelab In this experiment you will use what you learned in your previous lab sessions to make an AM receiver circuit. You will construct an envelope detector AM receiver. P1) Introduction One

More information

Objectives. Lecture 4. How do computers communicate? How do computers communicate? Local asynchronous communication. How do computers communicate?

Objectives. Lecture 4. How do computers communicate? How do computers communicate? Local asynchronous communication. How do computers communicate? Lecture 4 Continuation of transmission basics Chapter 3, pages 75-96 Dave Novak School of Business University of Vermont Objectives Line coding Modulation AM, FM, Phase Shift Multiplexing FDM, TDM, WDM

More information

Enhanced In-house Voice Communication over Power- Line Network

Enhanced In-house Voice Communication over Power- Line Network International Journal of Scientific and Research Publications, Volume 3, Issue 7, July 2013 1 Enhanced In-house Voice Communication over Power- Line Network Asif Hassan Senior Lecturer, Dept. of ECE, HMSIT,

More information

LM1036 Dual DC Operated Tone/Volume/Balance Circuit

LM1036 Dual DC Operated Tone/Volume/Balance Circuit LM1036 Dual DC Operated Tone/Volume/Balance Circuit General Description The LM1036 is a DC controlled tone (bass/treble), volume and balance circuit for stereo applications in car radio, TV and audio systems.

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

Fundamentals of Power Electronics. Robert W. Erickson University of Colorado, Boulder

Fundamentals of Power Electronics. Robert W. Erickson University of Colorado, Boulder Robert W. Erickson University of Colorado, Boulder 1 1.1. Introduction to power processing 1.2. Some applications of power electronics 1.3. Elements of power electronics Summary of the course 2 1.1 Introduction

More information

CONSTRUCTING A VARIABLE POWER SUPPLY UNIT

CONSTRUCTING A VARIABLE POWER SUPPLY UNIT CONSTRUCTING A VARIABLE POWER SUPPLY UNIT Building a power supply is a good way to put into practice many of the ideas we have been studying about electrical power so far. Most often, power supplies are

More information

Considerations When Specifying a DC Power Supply

Considerations When Specifying a DC Power Supply Programming Circuit White Paper Considerations When Specifying a DC Power Supply By Bill Martin, Sales/Applications Engineer Every automated test system that tests electronic circuit boards, modules or

More information

DIODE CIRCUITS LABORATORY. Fig. 8.1a Fig 8.1b

DIODE CIRCUITS LABORATORY. Fig. 8.1a Fig 8.1b DIODE CIRCUITS LABORATORY A solid state diode consists of a junction of either dissimilar semiconductors (pn junction diode) or a metal and a semiconductor (Schottky barrier diode). Regardless of the type,

More information

Kit 106. 50 Watt Audio Amplifier

Kit 106. 50 Watt Audio Amplifier Kit 106 50 Watt Audio Amplifier T his kit is based on an amazing IC amplifier module from ST Electronics, the TDA7294 It is intended for use as a high quality audio class AB amplifier in hi-fi applications

More information

Final Design Report 19 April 2011. Project Name: utouch

Final Design Report 19 April 2011. Project Name: utouch EEL 4924 Electrical Engineering Design (Senior Design) Final Design Report 19 April 2011 Project Name: utouch Team Members: Name: Issam Bouter Name: Constantine Metropulos Email: sambouter@gmail.com Email:

More information

EET272 Worksheet Week 9

EET272 Worksheet Week 9 EET272 Worksheet Week 9 answer questions 1-5 in preparation for discussion for the quiz on Monday. Finish the rest of the questions for discussion in class on Wednesday. Question 1 Questions AC s are becoming

More information

Step Response of RC Circuits

Step Response of RC Circuits Step Response of RC Circuits 1. OBJECTIVES...2 2. REFERENCE...2 3. CIRCUITS...2 4. COMPONENTS AND SPECIFICATIONS...3 QUANTITY...3 DESCRIPTION...3 COMMENTS...3 5. DISCUSSION...3 5.1 SOURCE RESISTANCE...3

More information

Tire pressure monitoring

Tire pressure monitoring Application Note AN601 Tire pressure monitoring 1 Purpose This document is intended to give hints on how to use the Intersema pressure sensors in a low cost tire pressure monitoring system (TPMS). 2 Introduction

More information

DIGITAL-TO-ANALOGUE AND ANALOGUE-TO-DIGITAL CONVERSION

DIGITAL-TO-ANALOGUE AND ANALOGUE-TO-DIGITAL CONVERSION DIGITAL-TO-ANALOGUE AND ANALOGUE-TO-DIGITAL CONVERSION Introduction The outputs from sensors and communications receivers are analogue signals that have continuously varying amplitudes. In many systems

More information

The full wave rectifier consists of two diodes and a resister as shown in Figure

The full wave rectifier consists of two diodes and a resister as shown in Figure The Full-Wave Rectifier The full wave rectifier consists of two diodes and a resister as shown in Figure The transformer has a centre-tapped secondary winding. This secondary winding has a lead attached

More information

ADC-20/ADC-24 Terminal Board. User Guide DO117-5

ADC-20/ADC-24 Terminal Board. User Guide DO117-5 ADC-20/ADC-24 Terminal Board User Guide DO117-5 Issues: 1) 8.11.05 Created by JB. 2) 13.12.05 p10: added 0V connection to thermocouple schematic. 3) 22.3.06 p11: removed C1. 4) 20.8.07 New logo. 5) 29.9.08

More information

US-SPI New generation of High performances Ultrasonic device

US-SPI New generation of High performances Ultrasonic device US-SPI New generation of High performances Ultrasonic device Lecoeur Electronique - 19, Rue de Courtenay - 45220 CHUELLES - Tel. : +33 ( 0)2 38 94 28 30 - Fax : +33 (0)2 38 94 29 67 US-SPI Ultrasound device

More information

13. Diode Rectifiers, Filters, and Power Supplies

13. Diode Rectifiers, Filters, and Power Supplies 1 13. Diode Rectifiers, Filters, and Power Supplies Introduction A power supply takes Alternating Current or A.C. power from your electric utility (Con Edison) and converts the A.C. electrical current

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

RF Measurements Using a Modular Digitizer

RF Measurements Using a Modular Digitizer RF Measurements Using a Modular Digitizer Modern modular digitizers, like the Spectrum M4i series PCIe digitizers, offer greater bandwidth and higher resolution at any given bandwidth than ever before.

More information

1. Oscilloscope is basically a graph-displaying device-it draws a graph of an electrical signal.

1. Oscilloscope is basically a graph-displaying device-it draws a graph of an electrical signal. CHAPTER 3: OSCILLOSCOPE AND SIGNAL GENERATOR 3.1 Introduction to oscilloscope 1. Oscilloscope is basically a graph-displaying device-it draws a graph of an electrical signal. 2. The graph show signal change

More information

Apprentice Telecommunications Technician Test (CTT) Study Guide

Apprentice Telecommunications Technician Test (CTT) Study Guide Apprentice Telecommunications Technician Test (CTT) Study Guide 1 05/2014 Study Guide for Pacific Gas & Electric Company Apprentice Telecommunications Technician Qualifying Test (CTT) About the Test The

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

Diode Applications. As we have already seen the diode can act as a switch Forward biased or reverse biased - On or Off.

Diode Applications. As we have already seen the diode can act as a switch Forward biased or reverse biased - On or Off. Diode Applications Diode Switching As we have already seen the diode can act as a switch Forward biased or reverse biased - On or Off. Voltage Rectifier A voltage rectifier is a circuit that converts an

More information

QUICK START GUIDE FOR DEMONSTRATION CIRCUIT 956 24-BIT DIFFERENTIAL ADC WITH I2C LTC2485 DESCRIPTION

QUICK START GUIDE FOR DEMONSTRATION CIRCUIT 956 24-BIT DIFFERENTIAL ADC WITH I2C LTC2485 DESCRIPTION LTC2485 DESCRIPTION Demonstration circuit 956 features the LTC2485, a 24-Bit high performance Σ analog-to-digital converter (ADC). The LTC2485 features 2ppm linearity, 0.5µV offset, and 600nV RMS noise.

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

Signal Processing in So.ware and Electric Field Sensing

Signal Processing in So.ware and Electric Field Sensing Signal Processing in So.ware and Electric Field Sensing CSE 466: So.ware for Embedded Systems Winter 2009 B. Mayton University of Washington CSE & Intel Research SeaMle CSE

More information

How To Use A Watt Saver On A Microcontroller (Watt Saver) On A Cell Phone Or Mp3 Player

How To Use A Watt Saver On A Microcontroller (Watt Saver) On A Cell Phone Or Mp3 Player Watt Saver for a Cell Phone AC Adapter Reference Design Document Number: DRM130 Rev 1, 10/2013 2 Freescale Semiconductor, Inc. Contents Section number Title Page Chapter 1 Introduction 1.1 Overview...5

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

Chapter 22 Further Electronics

Chapter 22 Further Electronics hapter 22 Further Electronics washing machine has a delay on the door opening after a cycle of washing. Part of this circuit is shown below. s the cycle ends, switch S closes. t this stage the capacitor

More information

KTA-223 Arduino Compatible Relay Controller

KTA-223 Arduino Compatible Relay Controller 8 Relay Outputs 5A 250VAC 4 Opto-Isolated Inputs 5-30VDC 3 Analog Inputs (10 bit) Connections via Pluggable Screw Terminals 0-5V or 0-20mA Analog Inputs, Jumper Selectable 5A Relay Switching Power Indicator

More information

7-41 POWER FACTOR CORRECTION

7-41 POWER FACTOR CORRECTION POWER FTOR CORRECTION INTRODUCTION Modern electronic equipment can create noise that will cause problems with other equipment on the same supply system. To reduce system disturbances it is therefore essential

More information

FEATURES DESCRIPTION APPLICATIONS BLOCK DIAGRAM. PT2248 Infrared Remote Control Transmitter

FEATURES DESCRIPTION APPLICATIONS BLOCK DIAGRAM. PT2248 Infrared Remote Control Transmitter Infrared Remote Control Transmitter DESCRIPTION PT2248 is an infrared remote control transmitter utilizing CMOS Technology. It is capable of 18 functions and a total of 75 commands. Single-shot and continuous

More information

Lab 1: The Digital Oscilloscope

Lab 1: The Digital Oscilloscope PHYSICS 220 Physical Electronics Lab 1: The Digital Oscilloscope Object: To become familiar with the oscilloscope, a ubiquitous instrument for observing and measuring electronic signals. Apparatus: Tektronix

More information

Understanding Power Impedance Supply for Optimum Decoupling

Understanding Power Impedance Supply for Optimum Decoupling Introduction Noise in power supplies is not only caused by the power supply itself, but also the load s interaction with the power supply (i.e. dynamic loads, switching, etc.). To lower load induced noise,

More information

A CW QRP Transceiver for 20 m band. How it works I'll describe individually the three boards and the relative tuning devices.

A CW QRP Transceiver for 20 m band. How it works I'll describe individually the three boards and the relative tuning devices. A CW QRP Transceiver for 20 m band The little QRP presented in this article may be built in a gradual manner, in fact it is divided in two main modules (plus VFO), you may also complete only a single part

More information

EECC694 - Shaaban. Transmission Channel

EECC694 - Shaaban. Transmission Channel The Physical Layer: Data Transmission Basics Encode data as energy at the data (information) source and transmit the encoded energy using transmitter hardware: Possible Energy Forms: Electrical, light,

More information