2.0 Discussion: 2.1 Approach:

Size: px
Start display at page:

Download "2.0 Discussion: 2.1 Approach:"

Transcription

1 2.0 Discussion: 2.1 Approach: The design for a Power Monitor and Data Logging System is comprised of two major components: the Power Meter and the Data Logger. The Power Meter is the package that plugs into a standard household outlet, into which is plugged the appliance to be measured. The Power Meter displays power, voltage and current on the face of the device, and also has input switches. The Power Meter s internal components consist of transducers, a microcontroller, a display, and a wireless transceiver. The Data Logger is the wireless receiver unit that connects to the user s home computer. The Data Logger consists of a microcontroller, a wireless transceiver, and the software used by the home computer. Figure 2-1 provides a conceptual design of the system, while Figure 2-2 shows a functional block diagram. Figure 2-1: Conceptual Overview of System The Power Meter plugs into the wall outlet and an appliance is plugged into the Power Meter. The transducers measure voltage, current, and power and this data is temporarily stored in the microcontroller. This data is shown on the face of the device through the LCD. Various input switches on the Power Meter allow for control its operations. If the transmit switch is set to ON, the microcontroller sends the data wirelessly to the Data Logger using the wireless transceiver chip. The Data Logger receives this data through its transceiver chip. The data is then passed on to the computer software through the Data Logger microcontroller. The software gives the user access to the data and allows extensive calculations and record keeping. Page 1 of 11

2 Figure 2-2: Block Diagram of Power Monitor and Data Logging System User Input The input on the Power Meter consists of an On/Off switch, a Voltage/Current toggle button, a Transmit On/Off switch, and three switches which set the device identification code. These switches are labeled in Figure 2-3. Page 2 of 11

3 Figure 2-3: Power Meter user input The On/Off switch is the main power switch for the Power Meter. The Voltage/Current toggle button is a simple push button that alternates the display between voltage and current as long as the button is pressed. The Transmit On/Off switch deactivates the wireless transceiver chip. The device ID code is set using three toggle switches. This ID code is used for error checking during transmission and to allow one Data Logger system to differentiate between several Power Meters. Each of these inputs is described in more detail in the following sections Transducer / Data Manipulation The function of the transducer is to measure electrical parameters off a singlephase system. In order to obtain the necessary information required for this system, a power transducer, voltage transducer, and current transducer are used. The SINEAX I 503, U 504, and PQ 502, produced by GMC, are the three transducers used [1]. The connection diagram, Figure 2-4, shows how the units are used in the system. Figure 2-4: Connections between load and transducers The AC voltage transducer measures voltage across a source or load. This is done by first isolating the source line from the transducer by using a voltage transformer. Then the signal is sent through a RMS converter and on to the A/D converter. The AC current transducer measures current in series with a source or load. This is done by first isolating the source line from the transducer by using a current transformer. Then the signal is sent through a RMS converter and on to the A/D converter. The AC power transducer takes the product of the current, voltage, and cosine of the phase angle between the current and voltage. The resulting signal is sent to the A/D converter. The output signal that is sent from each transducer to the A/D converters on the microcontroller is a 0 to 5 V-DC signal that is proportional of the original RMS signal because the microcontroller is unable to handle a 120 volt-ac, 12 amp-ac signals. Page 3 of 11

4 2.1.3 Microcontroller The purpose of the control unit is to coordinate the memory, arithmetic and logic calculations, input, and output units. It also has to sense the states of the inputs to the device and send the correct control signals to the LCD display. The control unit has to perform the input and output operations that are implemented. The Motorola 6809 microprocessor was considered at first. To make use of the 6809, other units like a 6821 PIA (Peripheral Interface Adapter) are needed for it to interface with the outside world. The decision was made to go with a microcontroller because it encompasses RAM, ROM, and a microprocessor all in one unit. A microcontroller packaged by XEMICS was selected as the control unit for the Power Meter and the Data Logger. The XE88LC01 microcontroller comes from the family of XE88LC00 microcontrollers [2]. The key features of the microcontroller are listed in Table 2-1 and a functional block diagram is given in Figure 2-5. The cost of this microcontroller is $8.00 per unit if 10,000+ units are purchased. Table 2-1: Key Features of XE88LC01 Microcontroller -Ultra low-power (300 microa at V) -512 Bytes of RAM -Low-voltage operation (2.4 V supply voltage minimum) -Complete development tools using Windows95 or NT graphical interface -4 x 2 or 7 x 1 PGA-ADC input multiplexer -Assembler -ANSI-C compiler -Current and memory usage monitoring -CPU Simulator Page 4 of 11

5 Figure 2-5: Microcontroller Functional Block Diagram The XE88LC01 has sufficient peripherals for use as the control unit for both the Power Meter and the Data Logger. The Zooming ADC is an analog to digital converter that can convert any of 8 selected inputs into digital data. This feature is connected to the 3 transducers used to measure voltage, current, and power. The XE88LC01 also has a Universal Asynchronous Receiver Transmitter (UART) and a Universal Synchronous Receiver Transmitter (USRT). Both of these sub-blocks are used to control the XE1201A transceiver chip. The USRT handles the 3-wire control bus for the chip, while the UART controls the flow of actual data to and from the transceiver. Multiple digital input/output pins are used to interface with the display driver and the external input switches. The display driver is described in the next section. In the Power Meter, the XE88LC01 is interfaced with the transducers, the input switches, the LCD display, and the transceiver. The microcontroller receives analog inputs from the voltage/current/power transducers, and multiplexes them into digital data. The microcontroller then checks the value on the toggle switch and sends the correct data to the LCD s built-in display driver, the HD44870, to be displayed. The microcontroller outputs the data to the transceiver via the 3-wire serial bus. The microcontroller transmits this data to the transceiver using the UART and the USRT. Page 5 of 11

6 The XE88LC01 is also used as the controller within the Data Logger. It controls the operation of the transceiver, does the necessary protocol calculations, stores all the data received, and handles uploading the data to the computer Display To display power, current, and voltage to the user, a Liquid Crystal Display (LCD) unit is connected to the Power Meter microcontroller. The SC0802B display is used with the HD44870 display driver to display two banks of 8 digits [3]. Each digit is a 5x7 dot matrix and is capable of displaying any alphanumeric character. The top bank always displays power and the bottom bank displays voltage or current, depending on user input. The layout of the display is shown in Figure 2-6. Figure 2-6: SC0802B LCD display format Wireless Communication The purpose of the wireless communication is to transmit the current, voltage, and power data from the Power Meter to the Data Logger as shown in Figure 2-7. The main wireless component is the wireless transceiver chip, which requires some external circuitry and an antenna. A transceiver is a combination of transmitter and receiver. Two transceivers are used to allow two-way communication to set up data transfers. This ability to set up transfers allows one Data Logger to handle multiple Power Meters throughout the house. Figure 2-7: Interfacing between transceivers, microcontroller and computer Page 6 of 11

7 Several key features are desired in the transceiver component. Easy interface with a microcontroller is one requirement. Fast transmission is also necessary so that data can be sent without interrupting the sampling rate of new data. The chip must also have extensive documentation for easy implementation into the overall design. A final feature is that it must be small enough to fit into a small package. After extensive research, the XE-1201A Low-Power Ultra High Frequency (UHF) transceiver chip, produced by XEMICS, was selected [4]. This transceiver was chosen since it has all the desired features. The transceiver is a small 32-pin chip (7 x 7 x 1.2 mm). A 3-wire bus is used for interfacing with a microcontroller, as seen in Figure 2-7. The data rate peaks at 64 kbit/s. It operates in the Mhz frequency range and has an indoor range of 30 to 70 meters. Few external components (capacitors, resistors, an antenna) are needed in addition to the actual chip. The extensive online documentation, including sample configurations, makes the chip easy to configure and use. Table 2-2 lists key features of the XE1201A. Table 2-2: Key Features of XE 1201A -Small chip, 32 pin-package -Very low power (2.4 V supply voltage) -Half-duplex operation -3-wire bus for easy Micro-controller interface -Output power programmable via bus -Few external components (antenna, matching network, tank circuits, saw resonator for local oscillator and low cost crystal) -Data rate up to 64 kbit/s Hz operation frequency m range (applicable for home use) A key feature of the wireless communication protocol is the ID code for each Power Meter. The purpose of this ID code is to identify and distinguish between each of the Power Meters used. This ID code allows multiple transceivers transmitting data to one base station. This ability is demonstrated in Figure 2-8. Page 7 of 11

8 Figure 2-8: Multiple Power Meter, single Data Logger setup The three switches on the Power Meter, as seen in Figure 2-9, set the ID code. The Transmit On/Off switch is used to disable the wireless transceiver. This allows the user to save power when not collecting data from the Power Meter. Disabling wireless transmission also prevents multiple wireless signals from interfering with each other. Enabling only the Power Meter that the user wishes to log from ensures a clean signal. Figure 2-9: Power Meter input used for In the 2-way communication conducted in PMDLS, the transceiver in the Power Meter side, which is ready to transmit data, sends a ready to send signal to the transceiver in the Data Logger. This signal also includes the ID code of the Power Meter sending the request. Upon receiving this request, the Data Logger responds with a ready to receive signal containing the same ID code. All the Power Meters with transmission enabled pick up the signal and check the ID code. Only the Power Meter whose ID code matches the one in the ready to receive signal will begin transmitting data Software The function of the software is to make it easy for the user to log data and to allow extensive analysis of the data. The software is written in Visual Basic and the finished program is a stand-alone executable file. The program consists of two main components, the Virtual Home Utility and the Power Meter Logger Utility. The Virtual Home Utility is a file manager that makes it easy for the user to list all the appliances in their home, walks them through the process of logging data for each appliance, and then allows analysis and display of their total energy usage. Figure 2-10 shows a preliminary layout of the main Virtual Home window. Page 8 of 11

9 Figure 2-10: Virtual Home Utility main window In the main window, the user defines the rooms of their house. For each room, the user can select and add different appliances by dragging an icon to the white box, adding a description, and clicking the Add Item box. All the appliances for a room are listed, and whether or not any data has been logged is also shown. Once data has been logged for each listed appliance, the software can estimate the total energy consumption of all appliances in the home. The utility can also analyze how the total energy usage is distributed between the appliances and make suggestions on how to reduce overall consumption. The Power Meter Logger Utility controls the actual logging sessions that receive data from the Power Meter. A preliminary layout for this utility is shown in Figure After selecting a room, the user can select which appliance they wish to log data for. The appliance list is split into appliances with previous data and appliances with no data. Once the appliance is selected, other parameters, like sampling rate, can be specified. The toggle switches that set the ID code are used to verify that the incoming data is coming from the correct Power Meter. Page 9 of 11

10 Figure 2-11: Power Meter Logger Utility main window Once data has been logged using the main window, the data files can be opened in a spreadsheet, where calculations and graphing can be done. 4.0 Cost 4.1 Fiscal Fiscal costs hardware costs, labor, and other development costs. Hardware costs include the actual microcontroller and transceiver chips, transducers, and other required circuit components. The hardware costs are enumerated in Table 4-1. A summary of all cost estimates is given in Table 4-2. According to the project timeline, the total project length would be 10 weeks. 200 work hours are assumed for this period. Assuming that the hourly labor cost for an engineer is $60, the total manpower cost is $12, Other development costs include the programmer board required to program the XE88LC01 microcontroller, and a software development kit. For writing Visual Basic code, Microsoft Basic 6.0 is used, which costs $549. Page 10 of 11

11 Table 4-1: Hardware Cost Estimates Power Monitor and Data Logging System Brand Description Model # Quantity Price/PartQuantity GMC AC current/voltage Transducer SINEAX I 503 / U 504 $ $60.00 GMC Power Transducer SINEAX PQ 502 $ $30.00 XEMICS Microcontroller XE88LC01 10K+ $ $13.06 XEMICS Wireless RF IC XE K+ $ $11.20 DME LCD Unit (with Driver) SC0802B $ $10.00 Shin Red Button R13-24BL $ $1.29 Radio ShackRocker Switch $ $1.49 Switronic Slide Switch 601S1M1 $ $5.96 Belden 16AWG Ground Wire Per foot $ $1.90 Radio ShackAntenna N/A $ $10.00 Radio ShackOther (Resistors, Capacitors, etc)n/a $ $10.00 N/A Unit Enclosure N/A $ $5.00 Total $ Table 4-2: Total Cost Estimate Hardware (per unit) $160 Labor (200 hrs at $60/hr) $12,000 Programmer Board for microcontroller $300 Software Development Kit (Visual Basic 6.0) $549 Total Estimated Cost $13, List of References 1. downloaded 5/4/ downloaded 4/9/ ftp://ftp.dmetechnologies.com/pdf/sc0802a.pdf, downloaded 5/7/ downloaded 4/9/ Page 11 of 11

EVDP610 IXDP610 Digital PWM Controller IC Evaluation Board

EVDP610 IXDP610 Digital PWM Controller IC Evaluation Board IXDP610 Digital PWM Controller IC Evaluation Board General Description The IXDP610 Digital Pulse Width Modulator (DPWM) is a programmable CMOS LSI device, which accepts digital pulse width data from a

More information

Wireless Music Dock - WMD Portable Music System with Audio Effect Applications

Wireless Music Dock - WMD Portable Music System with Audio Effect Applications Wireless Music Dock - WMD Portable Music System with Audio Effect Applications Preliminary Design Report EEL 4924 Electrical Engineering Design (Senior Design) 26 January 2011 Members: Jeffrey Post and

More information

ADVANCED EMBEDDED MONITORING SYSTEM FOR ELECTROMAGNETIC RADIATION

ADVANCED EMBEDDED MONITORING SYSTEM FOR ELECTROMAGNETIC RADIATION 98 Chapter-5 ADVANCED EMBEDDED MONITORING SYSTEM FOR ELECTROMAGNETIC RADIATION 99 CHAPTER-5 Chapter 5: ADVANCED EMBEDDED MONITORING SYSTEM FOR ELECTROMAGNETIC RADIATION S.No Name of the Sub-Title Page

More information

Design Of Low-Power Wireless Communication System Based On MSP430 Introduction:

Design Of Low-Power Wireless Communication System Based On MSP430 Introduction: Design Of Low-Power Wireless Communication System Based On MSP430 Introduction: Low power wireless networks provide a new monitoring and control capability for civil and military applications in transportation,

More information

RFID Door Unlocking System

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

More information

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

RF4432 wireless transceiver module

RF4432 wireless transceiver module 1. Description www.nicerf.com RF4432 RF4432 wireless transceiver module RF4432 adopts Silicon Lab Si4432 RF chip, which is a highly integrated wireless ISM band transceiver. The features of high sensitivity

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

Preliminary GHz Transceiver-µController-Module. Applications PRODUCT SPECIFICATION FEATURES MICROCONTROLLER MHz

Preliminary GHz Transceiver-µController-Module. Applications PRODUCT SPECIFICATION FEATURES MICROCONTROLLER MHz PRODUCT SPECIFICATION 2.4 2.5 GHz e Applications 6 : 2 " 2! 2 2 + 2 7 + + Alarm and Security Systems Video Automotive Home Automation Keyless entry Wireless Handsfree Remote Control Surveillance Wireless

More information

HD66702 (LCD-II/E20) (Dot Matrix Liquid Crystal Display Controller/Driver) Description. Features

HD66702 (LCD-II/E20) (Dot Matrix Liquid Crystal Display Controller/Driver) Description. Features HD6672 (LCD-II/E2) (Dot Matrix Liquid Crystal Display Controller/Driver) Description The HD6672 LCD-II/E2 dot-matrix liquid crystal display controller and driver LSI displays alphanumerics, Japanese kana

More information

GSM Based Automatic Wireless Energy Meter Reading System P. Harish M.Tech, S. Sandeep M.Tech,

GSM Based Automatic Wireless Energy Meter Reading System P. Harish M.Tech, S. Sandeep M.Tech, GSM Based Automatic Wireless Energy Meter Reading System P. Harish M.Tech, S. Sandeep M.Tech, Asst.Professor, Dept.of ECE, SVPCET, RVS Nagar, Puttur. Asst. Professor, Dept. of ECE, SVPCET, RVS Nagar, Puttur.

More information

Features: 1. User friendly interfacing. 2. Controls high voltage water pumps. 3. Identification of water pumps through RFID technology.

Features: 1. User friendly interfacing. 2. Controls high voltage water pumps. 3. Identification of water pumps through RFID technology. Construction of Central Control Unit for Irrigation water pumps. Cost effective method to control entire villager s water pumps with user level authentication. Illiterate s friendly system. This project

More information

LITERATURE REVIEW & ANALYSIS OF WIRELESS ENERGY METER

LITERATURE REVIEW & ANALYSIS OF WIRELESS ENERGY METER LITERATURE REVIEW & ANALYSIS OF WIRELESS ENERGY METER Saurabh S. Karmakar 1, Shubham V. Gedam 2, Harshal W. Nagpure 3, Amit Yadav 4, Ganesh S. Thote 5 UG Student, Department of Electrical Engineering,

More information

JUMA-TRX2 DDS / Control Board description OH2NLT

JUMA-TRX2 DDS / Control Board description OH2NLT JUMA-TRX2 DDS / Control Board description OH2NLT 22.08.2007 General Key functions of the JUMA-TRX2 DDS / Control board are: - provide user interface functions with LCD display, buttons, potentiometers

More information

Advanced menu ordering system in restaurants

Advanced menu ordering system in restaurants Advanced menu ordering system in restaurants 1 Ragila VV, 2 Rosmi Varghese, 3 Soorya Rajeev K, 4 Shimna PK 1,2,3 UG Student, Dept. of ECE, Vimal Jyothi Engineering College, Kannur, Kerala, India 4 Assistant

More information

Re: Design Specifications for a Voice Activated Remote Control System (ENSC 340 Project)

Re: Design Specifications for a Voice Activated Remote Control System (ENSC 340 Project) October 31, 2002 Dr. Andrew Rawicz School of Engineering Science Simon Fraser University Burnaby, British Columbia V5A 1S6 Re: Design Specifications for a Voice Activated Remote Control System (ENSC 340

More information

Using Z8 Encore! XP MCU for RMS Calculation

Using Z8 Encore! XP MCU for RMS Calculation Application te Using Z8 Encore! XP MCU for RMS Calculation Abstract This application note discusses an algorithm for computing the Root Mean Square (RMS) value of a sinusoidal AC input signal using the

More information

Complete Self-Test. Plug-in Module Self-Test

Complete Self-Test. Plug-in Module Self-Test Power-On Self-Test Each time the instrument is powered on, a small set of self-tests are performed. These tests check that the minimum set of logic and measurement hardware are functioning properly. Any

More information

Electronics Design Laboratory Lecture #10. ECEN 2270 Electronics Design Laboratory

Electronics Design Laboratory Lecture #10. ECEN 2270 Electronics Design Laboratory Electronics Design Laboratory Lecture #10 Electronics Design Laboratory 1 Lessons from Experiment 4 Code debugging: use print statements and serial monitor window Circuit debugging: Re check operation

More information

MICROCONTROLLER BASED SPEED SYNCHRONIZATION OF MULTIPLE DC MOTORS IN TEXTILE APPLICATIONS

MICROCONTROLLER BASED SPEED SYNCHRONIZATION OF MULTIPLE DC MOTORS IN TEXTILE APPLICATIONS MICROCONTROLLER BASED SPEED SYNCHRONIZATION OF MULTIPLE DC MOTORS IN TEXTILE APPLICATIONS 1 RAKSHA A R, 2 KAVYA B, 3 PRAVEENA ANAJI, 4 NANDESH K N 1,2 UG student, 3,4 Assistant Professor Department of

More information

The Guitar Chord Learning System

The Guitar Chord Learning System The Guitar Chord Learning System Calvin A. Sessions Hardware Description April 19, 2005 Western Washington University Electronics Engineering Technology ETEC 474, Professor Morton INTRODUCTION The Guitar

More information

Design and Development of Train Tracking System in South Central Railways

Design and Development of Train Tracking System in South Central Railways International Journal of Science and Modern Engineering (IJISME) Design and Development of Train Tracking System in South Central Railways Shaik Nahid,Srinivas Padala,V.Samson Deva Kumar Abstract Rail

More information

Management of Home Appliances with Variation in Environment Aisha Jilani, Sahar Sultan, Intesar Ahmed and Sajjad Rabbani

Management of Home Appliances with Variation in Environment Aisha Jilani, Sahar Sultan, Intesar Ahmed and Sajjad Rabbani Management of Home Appliances with Variation in Environment Aisha Jilani, Sahar Sultan, Intesar Ahmed and Sajjad Rabbani Abstract Aim of this research is to help a remote user to remain in touch with what

More information

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

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

More information

Training Schedule. Robotic System Design using Arduino Platform

Training Schedule. Robotic System Design using Arduino Platform Training Schedule Robotic System Design using Arduino Platform Session - 1 Embedded System Design Basics : Scope : To introduce Embedded Systems hardware design fundamentals to students. Processor Selection

More information

School of Engineering Science Burnaby, BC V5A 1S6. November 2, 2009

School of Engineering Science Burnaby, BC V5A 1S6. November 2, 2009 November 2, 2009 Dr. John Bird School of Engineering Science Simon Fraser University Burnaby, British Columbia V5A 1S6 Dear: Dr. Bird and Mr. Whitmore, The attached document presents the design specification

More information

Design and Development of Smart. Harmonic Analyzer

Design and Development of Smart. Harmonic Analyzer Chapter - 4 Design and Development of Smart Harmonic Analyzer 4.1 Introduction: There is steady evolution in the field of generation, distribution, and use of electricity since many years. New methods

More information

Li-Fi And Microcontroller Based Home Automation Or Device Control Introduction

Li-Fi And Microcontroller Based Home Automation Or Device Control Introduction Li-Fi And Microcontroller Based Home Automation Or Device Control Introduction Optical communications have been used in various forms for thousands of years. After the invention of light amplification

More information

ZKit-51-RD2, 8051 Development Kit

ZKit-51-RD2, 8051 Development Kit ZKit-51-RD2, 8051 Development Kit User Manual 1.1, June 2011 This work is licensed under the Creative Commons Attribution-Share Alike 2.5 India License. To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/2.5/in/

More information

SV613 USB Interface Wireless Module SV613

SV613 USB Interface Wireless Module SV613 USB Interface Wireless Module SV613 1. Description SV613 is highly-integrated RF module, which adopts high performance Si4432 from Silicon Labs. It comes with USB Interface. SV613 has high sensitivity

More information

EMG Sensor Shirt. Senior Project Written Hardware Description April 28, 2015 ETEC 474. By: Dylan Kleist Joshua Goertz

EMG Sensor Shirt. Senior Project Written Hardware Description April 28, 2015 ETEC 474. By: Dylan Kleist Joshua Goertz EMG Sensor Shirt Senior Project Written Hardware Description April 28, 2015 ETEC 474 By: Dylan Kleist Joshua Goertz Table of Contents Introduction... 3 User Interface Board... 3 Bluetooth... 3 Keypad...

More information

Digital-to-Analog Converter. Lab 3 Final Report

Digital-to-Analog Converter. Lab 3 Final Report Digital-to-Analog Converter Lab 3 Final Report The Ion Cannons: Shrinand Aggarwal Cameron Francis Nicholas Polito Section 2 May 1, 2017 1 Table of Contents Introduction..3 Rationale..3 Theory of Operation.3

More information

CR 33 SENSOR NETWORK INTEGRATION OF GPS

CR 33 SENSOR NETWORK INTEGRATION OF GPS CR 33 SENSOR NETWORK INTEGRATION OF GPS Presented by : Zay Yar Tun 3786 Ong Kong Huei 31891 Our Supervisor : Professor Chris Rizos Our Assessor : INTRODUCTION As the technology advances, different applications

More information

What is a Lane? serial link lane parallel link

What is a Lane? serial link lane parallel link PCI Express This lecture is based on the Peripheral Component Interconnect Express, which is a standard for computer expansion cards. More specifically, this is a standard for the communication link by

More information

DR-TRC105-EV Evaluation Kit. User s Guide

DR-TRC105-EV Evaluation Kit. User s Guide DR-TRC105-EV Evaluation Kit User s Guide DR-TRC105-304-EV DR-TRC105-315-EV DR-TRC105-345-EV DR-TRC105-372-EV DR-TRC105-390-EV DR-TRC105-403-EV DR-TRC105-434-EV DR-TRC105-450-EV 2010-2015 by Murata Electronics

More information

User Manual Rev 3.5 SmartRF Studio 4.50

User Manual Rev 3.5 SmartRF Studio 4.50 User Manual Rev 3.5 SmartRF Studio 4.50 Chipcon AS, Gaustadalléen 21, N-0349 Oslo, Norway, Tel: (+47) 22 95 85 45, Fax: (+47) 22 95 85 46 E-mail: support@chipcon.com Table of contents 1 INTRODUCTION...

More information

GPS and GSM Based Transmission Line Monitoring System with Fault Detection Introduction:

GPS and GSM Based Transmission Line Monitoring System with Fault Detection Introduction: GPS and GSM Based Transmission Line Monitoring System with Fault Detection Introduction: Electricity is an extremely handy and useful form of energy. It plays an ever growing role in our modern industrialized

More information

Advanced Soldier Monitoring and Tracking System Using GPS and GSM Introduction

Advanced Soldier Monitoring and Tracking System Using GPS and GSM Introduction Advanced Soldier Monitoring and Tracking System Using GPS and GSM Introduction The infantry soldier of tomorrow promises to be one of the most technologically advanced modern warfare has ever seen. Around

More information

2, 4, & 6 Button Application Tool

2, 4, & 6 Button Application Tool 2, 4, & 6 Button Application Tool M009.0.0-246_But_App Customer Name: Contact Name: Email: Phone: Application Description / Machine Type: Date of Submission: / / Revision: 2014 Cervis, Inc. 2, 4, & 6 Button

More information

Aztec Micro-grid Power System

Aztec Micro-grid Power System Aztec Micro-grid Power System Grid Energy Storage and Harmonic Distortion Demonstration Project Proposal Submitted to: John Kennedy Design Co. Ltd, San Diego, CA Hardware: Ammar Ameen Bashar Ameen Aundya

More information

Cortex-M3 based Prepaid System with Electricity Theft Control

Cortex-M3 based Prepaid System with Electricity Theft Control Research Inventy: International Journal of Engineering And Science Vol.6, Issue 4 (April 2016), PP -139-146 Issn (e): 2278-4721, Issn (p):2319-6483, www.researchinventy.com Cortex-M3 based Prepaid System

More information

WIRELESS RF TRANSCEIVER FOR ENERGY METER READING SYSTEM

WIRELESS RF TRANSCEIVER FOR ENERGY METER READING SYSTEM International Journal of Advanced Research in Engineering ISSN: 2394-2819 Technology & Sciences Email:editor@ijarets.org May-2016 Volume 3, Issue-5 www.ijarets.org WIRELESS RF TRANSCEIVER FOR ENERGY METER

More information

Functional Description / User Manual

Functional Description / User Manual Functional Description / User Manual of SIEMENS VDO Immobilization system HONDA RxM Type 5WK49210 / 5WK49215 Functional description_rxm.doc Page 1 of 5 1. FUNCTIONAL DESCRIPTION The immobilizer system

More information

I. INTRODUCTION II. LITERATURE REVIEW

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

More information

RX23T inverter ref. kit

RX23T inverter ref. kit RX23T inverter ref. kit Deep Dive October 2015 YROTATE-IT-RX23T kit content Page 2 YROTATE-IT-RX23T kit: 3-ph. Brushless Motor Specs Page 3 Motors & driving methods supported Brushless DC Permanent Magnet

More information

32-bit ARM Cortex-M0, Cortex-M3 and Cortex-M4F microcontrollers

32-bit ARM Cortex-M0, Cortex-M3 and Cortex-M4F microcontrollers -bit ARM Cortex-, Cortex- and Cortex-MF microcontrollers Energy, gas, water and smart metering Alarm and security systems Health and fitness applications Industrial and home automation Smart accessories

More information

SAE Formula Car Data Acquisition & Display System. Joseph Groe, Michelle Ohlson, & Miles Homler Advisor: Professor Gutschlag

SAE Formula Car Data Acquisition & Display System. Joseph Groe, Michelle Ohlson, & Miles Homler Advisor: Professor Gutschlag SAE Formula Car Data Acquisition & Display System Joseph Groe, Michelle Ohlson, & Miles Homler Advisor: Professor Gutschlag Agenda Problem Background Problem Statement System Diagram Project Functional

More information

EMBEDDED SYSTEM DESIGN FOR A DIGITAL MULTIMETER USING MOTOROLA HCS12 MICROCONTROLLER

EMBEDDED SYSTEM DESIGN FOR A DIGITAL MULTIMETER USING MOTOROLA HCS12 MICROCONTROLLER EMBEDDED SYSTEM DESIGN FOR A DIGITAL MULTIMETER USING MOTOROLA HCS12 MICROCONTROLLER A Thesis Submitted in partial Fulfillment Of the Requirements of the Degree of Bachelor of Technology In Electronics

More information

FEATURES DESCRIPTION BENEFITS APPLICATIONS. Preliminary PT4501 Sub-1 GHz Wideband FSK Transceiver

FEATURES DESCRIPTION BENEFITS APPLICATIONS. Preliminary PT4501 Sub-1 GHz Wideband FSK Transceiver Preliminary PT4501 Sub-1 GHz Wideband FSK Transceiver DESCRIPTION The PT4501 is a highly integrated wideband FSK multi-channel half-duplex transceiver operating in sub-1 GHz license-free ISM bands. The

More information

EE445L Fall 2011 Quiz 2A Page 1 of 6

EE445L Fall 2011 Quiz 2A Page 1 of 6 EE445L Fall 2011 Quiz 2A Page 1 of 6 Jonathan W. Valvano First: Last: November 18, 2011, 2:00pm-2:50pm. Open book, open notes, calculator (no laptops, phones, devices with screens larger than a TI-89 calculator,

More information

REACTIVE POWER COMPENSATION IN DISTRIBUTION SYSTEM

REACTIVE POWER COMPENSATION IN DISTRIBUTION SYSTEM REACTIVE POWER COMPENSATION IN DISTRIBUTION SYSTEM Piyush Upadhyay, Praveen Nagar, Priya Chhaperwal, Rajat Agarwal, Sarfaraz Nawaz Department of Electrical Engineering, SKIT M& G, Jaipur ABSTRACT In this

More information

Index Terms IR communication; MSP430; TFDU4101; Pre setter

Index Terms IR communication; MSP430; TFDU4101; Pre setter Design and Development of Contactless Communication Module for Pre setter of Underwater Vehicles J.Lavanyambhika, **D.Madhavi *Digital Systems and Signal Processing in Electronics and Communication Engineering,

More information

Roland Kammerer. 13. October 2010

Roland Kammerer. 13. October 2010 Peripherals Roland Institute of Computer Engineering Vienna University of Technology 13. October 2010 Overview 1. Analog/Digital Converter (ADC) 2. Pulse Width Modulation (PWM) 3. Serial Peripheral Interface

More information

In this lecture, we will look at how different electronic modules communicate with each other. We will consider the following topics:

In this lecture, we will look at how different electronic modules communicate with each other. We will consider the following topics: In this lecture, we will look at how different electronic modules communicate with each other. We will consider the following topics: Links between Digital and Analogue Serial vs Parallel links Flow control

More information

Imaging serial interface ROM

Imaging serial interface ROM Page 1 of 6 ( 3 of 32 ) United States Patent Application 20070024904 Kind Code A1 Baer; Richard L. ; et al. February 1, 2007 Imaging serial interface ROM Abstract Imaging serial interface ROM (ISIROM).

More information

CHAPTER 12 NORTHERN ILLINOIS UNIVERSITY

CHAPTER 12 NORTHERN ILLINOIS UNIVERSITY CHAPTER 12 NORTHERN ILLINOIS UNIVERSITY Department of Electrical Engineering DeKalb, IL 60115 Principal Investigators: Mansour Tahernezhadi (815)-753-8568 Xuan Kong (815)-753-9942 127 128 NSF 1999 Engineering

More information

Simulation Of Radar With Ultrasonic Sensors

Simulation Of Radar With Ultrasonic Sensors Simulation Of Radar With Ultrasonic Sensors Mr.R.S.AGARWAL Associate Professor Dept. Of Electronics & Ms.V.THIRUMALA Btech Final Year Student Dept. Of Electronics & Mr.D.VINOD KUMAR B.Tech Final Year Student

More information

TX4400 UHF CB RADIO INSTRUCTION MANUAL TX4400 INSTRUCTION MANUAL PAGE 1

TX4400 UHF CB RADIO INSTRUCTION MANUAL TX4400 INSTRUCTION MANUAL PAGE 1 TX4400 UHF CB RADIO INSTRUCTION MANUAL TX4400 INSTRUCTION MANUAL PAGE 1 TABLE OF CONTENTS GENERAL................................... 3 FEATURES.................................. 3 BASIC OPERATION...4 Front

More information

Application Note # 5438

Application Note # 5438 Application Note # 5438 Electrical Noise in Motion Control Circuits 1. Origins of Electrical Noise Electrical noise appears in an electrical circuit through one of four routes: a. Impedance (Ground Loop)

More information

ISO 9001 CERTIFIED. 607 NW 27th Ave Ocala, FL Phone: (352) or Fax: (352) OPERATION MANUAL

ISO 9001 CERTIFIED. 607 NW 27th Ave Ocala, FL Phone: (352) or Fax: (352) OPERATION MANUAL ISO 9001 CERTIFIED Phone: (352) 629-5020 or 800-533-3569 Fax: (352)-629-2902 ES-Key 12 PDM module (4 selectable polarity outputs) with 4 Inputs (selectable polarity) and 4 MFI Inputs P/N 610-00035 PAGE

More information

BRB900 GPS Telemetry System August 2013 Version 0.06

BRB900 GPS Telemetry System August 2013 Version 0.06 BRB900 GPS Telemetry System August 2013 Version 0.06 As of January 2013, a new model of the BRB900 has been introduced. The key differences are listed below. 1. U-blox GPS Chipset: The Trimble Lassen IQ

More information

The ST7588T is a driver & controller LSI for graphic dot-matrix liquid crystal display systems. It contains 132 segment and 80

The ST7588T is a driver & controller LSI for graphic dot-matrix liquid crystal display systems. It contains 132 segment and 80 ST Sitronix ST7588T 81 x 132 Dot Matrix LCD Controller/Driver INTRODUCTION The ST7588T is a driver & controller LSI for graphic dot-matrix liquid crystal display systems. It contains 132 segment and 80

More information

MIDLAND PROGRAMING G14

MIDLAND PROGRAMING G14 MIDLAND PROGRAMING G14 1. PROGRAMMING CAPABILITY Welcome to the MIDLAND Programming software! It s a programming software specifically designed for G14 and must be used in conjunction with the dedicated

More information

Communications Hardware for a UAV Sensor Network ECE 791- Oral Project Proposal ECE Faculty Advisor: Nicholas Kirsch Ph.D.

Communications Hardware for a UAV Sensor Network ECE 791- Oral Project Proposal ECE Faculty Advisor: Nicholas Kirsch Ph.D. Communications Hardware for a UAV Sensor Network ECE 791- Oral Project Proposal ECE Faculty Advisor: Nicholas Kirsch Ph.D. October 28, 2011 Presented By: Jason Dusseault, Matthew Gloekler, Andrew Jacobs,

More information

RF4463F30 High Power wireless transceiver module

RF4463F30 High Power wireless transceiver module RF4463F30 High Power wireless transceiver module 1. Description RF4463F30 adopts Silicon Lab Si4463 RF chip, which is a highly integrated wireless ISM band transceiver chip. Extremely high receive sensitivity

More information

HUMAN BODY MONITORING SYSTEM USING WSN WITH GSM AND GPS

HUMAN BODY MONITORING SYSTEM USING WSN WITH GSM AND GPS HUMAN BODY MONITORING SYSTEM USING WSN WITH GSM AND GPS Mr. Sunil L. Rahane Department of E & TC Amrutvahini College of Engineering Sangmaner, India Prof. Ramesh S. Pawase Department of E & TC Amrutvahini

More information

AL-DALI-010v 0-10v Dimmer 3-Way switch with DALI

AL-DALI-010v 0-10v Dimmer 3-Way switch with DALI ATX LED Consultants Inc 815-A Brazos #326 Austin Tx, 78701 512 377 6052 http://atx-led.com AL-DALI-010v 0-10v Dimmer 3-Way switch with DALI Product Description - AL-DALI wall switch with 0-10v output Combine

More information

RF4432PRO wireless transceiver module

RF4432PRO wireless transceiver module wireless transceiver module RF4432PRO 1. Description RF4432PRO adopts Silicon Lab Si4432 RF chip, which is a highly integrated wireless ISM band transceiver chip. Extremely high receive sensitivity (-121

More information

EE445L Fall 2014 Quiz 2A Page 1 of 5

EE445L Fall 2014 Quiz 2A Page 1 of 5 EE445L Fall 2014 Quiz 2A Page 1 of 5 Jonathan W. Valvano First: Last: November 21, 2014, 10:00-10:50am. Open book, open notes, calculator (no laptops, phones, devices with screens larger than a TI-89 calculator,

More information

AMI (ADVANCED METERING INFRASTRUCTURE) MESH WITHOUT SWITCHES IN THE KIT SECTION

AMI (ADVANCED METERING INFRASTRUCTURE) MESH WITHOUT SWITCHES IN THE KIT SECTION AMI (ADVANCED METERING INFRASTRUCTURE) MESH WITHOUT SWITCHES IN THE KIT SECTION *M.Raga Divya, ** Y.Ratna Babu *Department of Electronics and Communication VIGNAN S Lara Institute of Technology and Sciences,

More information

IMPLEMENTATION OF WATER LEVEL FILLING STRATEGY BY USING PWM TECHNIQUE

IMPLEMENTATION OF WATER LEVEL FILLING STRATEGY BY USING PWM TECHNIQUE IMPLEMENTATION OF WATER LEVEL FILLING STRATEGY BY USING PWM TECHNIQUE Achanta Ram Naveen 1, Chundru Venkatesh 2, Kalaga Konda Raja 3 Vendurthi Konda Babu 4 1Final year student, Department of EEE, Pragati

More information

Catalog

Catalog Catalog 1. Description... - 3-2. Features... - 3-3. Application... - 3-4. Electrical specifications...- 4-5. Schematic... - 4-6. Pin Configuration... - 5-7. Antenna... - 6-8. Mechanical Dimension(Unit:

More information

EE445L Fall 2012 Final Version B Page 1 of 7

EE445L Fall 2012 Final Version B Page 1 of 7 EE445L Fall 2012 Final Version B Page 1 of 7 Jonathan W. Valvano First: Last: This is the closed book section. You must put your answers in the boxes on this answer page. When you are done, you turn in

More information

GSM BASED PATIENT MONITORING SYSTEM

GSM BASED PATIENT MONITORING SYSTEM GSM BASED PATIENT MONITORING SYSTEM ABSTRACT This project deals with the monitoring of the patient parameters such as humidity, temperature and heartbeat. Here we have designed a microcontroller based

More information

16 Channels LED Driver

16 Channels LED Driver 16 Channels LED Driver Description The SN3216 is a fun light LED controller with an audio modulation mode. It can store data of 8 frames with internal RAM to play small animations automatically. SN3216

More information

Hello and welcome to this Renesas Interactive Course that provides an overview of the timers found on RL78 MCUs.

Hello and welcome to this Renesas Interactive Course that provides an overview of the timers found on RL78 MCUs. Hello and welcome to this Renesas Interactive Course that provides an overview of the timers found on RL78 MCUs. 1 The purpose of this course is to provide an introduction to the RL78 timer Architecture.

More information

Minimal UART core. All the project files were published on the LGPL terms, you must read the GNU Lesser General Public License for more details.

Minimal UART core. All the project files were published on the LGPL terms, you must read the GNU Lesser General Public License for more details. Minimal UART core Author: Arao Hayashida Filho Published on opencores.org 1- Introduction The fundamental idea of this core is implement a very simple UART in VHDL, using less quantity of logic resources,

More information

MAXREFDES39#: POWER AMPLIFIER BIASING THROUGH MAX11300 PIXI

MAXREFDES39#: POWER AMPLIFIER BIASING THROUGH MAX11300 PIXI System Board 5896 MAXREFDES39#: POWER AMPLIFIER BIASING THROUGH MAX11300 PIXI OVERVIEW MAXREFDES39# System Board ENLARGE+ Introduction The MAXREFDES39# power amplifier (PA) bias reference design uses the

More information

DESIGNED BY THE BLACK TANK USER MANUAL

DESIGNED BY THE BLACK TANK USER MANUAL DESIGNED BY THE BLACK TANK USER MANUAL Table of Contents Your CubeConnect Transceiver Product Description... 5 What s In the Box... 6 CubeConnect Transceiver Interface... 7 CubeConnect Transceiver Modes

More information

SonoLab Echo-I User Manual

SonoLab Echo-I User Manual SonoLab Echo-I User Manual Overview: SonoLab Echo-I is a single board digital ultrasound pulse-echo solution. The system has a built in 50 volt high voltage generation circuit, a bipolar pulser, a transmit/receive

More information

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

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

More information

6. HARDWARE PROTOTYPE AND EXPERIMENTAL RESULTS

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

More information

International Journal of Advance Engineering and Research Development

International Journal of Advance Engineering and Research Development Scientific Journal of Impact Factor (SJIF): 4.14 International Journal of Advance Engineering and Research Development Volume 3, Issue 3, March -2016 DIGITAL FUEL INDICATOR Ashish S. Dain 1, Akshay U.

More information

Elektor Datalogger Review

Elektor Datalogger Review Introduction Amateur radio astronomers sometimes need to log data from sensors such as receivers and magnetometers but do not wish to or cannot leave their PC turned on for long periods. They need an autonomous

More information

Universal LCD driver for low multiplex rates. AEC Q100 grade 2 compliant for automotive applications.

Universal LCD driver for low multiplex rates. AEC Q100 grade 2 compliant for automotive applications. Rev. 1 9 December 2010 Product data sheet 1. General description The is a peripheral device which interfaces to almost any Liquid Crystal Display (LCD) 1 with low multiplex rates. It generates the drive

More information

Debugging a Boundary-Scan I 2 C Script Test with the BusPro - I and I2C Exerciser Software: A Case Study

Debugging a Boundary-Scan I 2 C Script Test with the BusPro - I and I2C Exerciser Software: A Case Study Debugging a Boundary-Scan I 2 C Script Test with the BusPro - I and I2C Exerciser Software: A Case Study Overview When developing and debugging I 2 C based hardware and software, it is extremely helpful

More information

Robotics And Remotely Operated Vehicles. P. A. Kulkarni S. G. Karad

Robotics And Remotely Operated Vehicles. P. A. Kulkarni S. G. Karad Robotics And Remotely Operated Vehicles P. A. Kulkarni S. G. Karad MAE, Alandi, Pune, India. 412105. pakulkarni@mitpune.com, shivajikarad@mitpune.com Abstract - In this paper, we present controlling of

More information

Wavedancer A new ultra low power ISM band transceiver RFIC

Wavedancer A new ultra low power ISM band transceiver RFIC Wavedancer 400 - A new ultra low power ISM band transceiver RFIC R.W.S. Harrison, Dr. M. Hickson Roke Manor Research Ltd, Old Salisbury Lane, Romsey, Hampshire, SO51 0ZN. e-mail: roscoe.harrison@roke.co.uk

More information

Intelligent and passive RFID tag for Identification and Sensing

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

More information

4 x 10 bit Free Run A/D 4 x Hi Comparator 4 x Low Comparator IRQ on Compare MX839. C-BUS Interface & Control Logic

4 x 10 bit Free Run A/D 4 x Hi Comparator 4 x Low Comparator IRQ on Compare MX839. C-BUS Interface & Control Logic DATA BULLETIN MX839 Digitally Controlled Analog I/O Processor PRELIMINARY INFORMATION Features x 4 input intelligent 10 bit A/D monitoring subsystem 4 High and 4 Low Comparators External IRQ Generator

More information

AUTOMATIC METHOD OF PROTECTING TRANSFORMER USING PIC MICROCONTROLLER AS AN ALTERNATIVE TO THE FUSE PROTECTION TECHNIQUE A. Z. Loko 1, A. I. Bugaje 2, A. A. Bature 3 1 Department of Physics Electronics/Nasarawa

More information

The Speech Based Floor Cleaning Robot

The Speech Based Floor Cleaning Robot International journal of Systems and Technologies ISSN 0-0 The Speech Based Floor Cleaning Robot Sidhartha Velpula, Sunil Babu Thota, V.S.G.V.Sridhar, Syed Inthiyaz, Siva Kumar Abstract: Munuswamy, Students,

More information

Normally, digital speedometers

Normally, digital speedometers Microcontroller-based Speedometer-Cum-Odometer ARUN KUMAR VADLA Normally, digital speedometers are found only in luxury cars and high-end motorbikes. Even if your motorbike has a mechanical speedometer,

More information

Programming and Interfacing

Programming and Interfacing AtmelAVR Microcontroller Primer: Programming and Interfacing Second Edition f^r**t>*-**n*c contents Preface xv AtmelAVRArchitecture Overview 1 1.1 ATmegal64 Architecture Overview 1 1.1.1 Reduced Instruction

More information

EE 314 Spring 2003 Microprocessor Systems

EE 314 Spring 2003 Microprocessor Systems EE 314 Spring 2003 Microprocessor Systems Laboratory Project #9 Closed Loop Control Overview and Introduction This project will bring together several pieces of software and draw on knowledge gained in

More information

Radiation Hardened RF Transceiver For In-Containment Environment Applications Using Commercial Off the Shelf Components

Radiation Hardened RF Transceiver For In-Containment Environment Applications Using Commercial Off the Shelf Components Radiation Hardened RF Transceiver For In-Containment Environment Applications Using Commercial Off the Shelf Components Shawn C. Stafford, Jorge V. Carvajal, Jonathan E. Baisch Westinghouse Electric Company

More information

Project Proposal. Underwater Fish 02/16/2007 Nathan Smith,

Project Proposal. Underwater Fish 02/16/2007 Nathan Smith, Project Proposal Underwater Fish 02/16/2007 Nathan Smith, rahteski@gwu.edu Abstract The purpose of this project is to build a mechanical, underwater fish that can be controlled by a joystick. The fish

More information

Applications. Operating Modes. Description. Part Number Description Package. Many to one. One to one Broadcast One to many

Applications. Operating Modes. Description. Part Number Description Package. Many to one. One to one Broadcast One to many RXQ2 - XXX GFSK MULTICHANNEL RADIO TRANSCEIVER Intelligent modem Transceiver Data Rates to 100 kbps Selectable Narrowband Channels Crystal controlled design Supply Voltage 3.3V Serial Data Interface with

More information

Activity 4: Due before the lab during the week of Feb

Activity 4: Due before the lab during the week of Feb Today's Plan Announcements: Lecture Test 2 programming in C Activity 4 Serial interfaces Analog output Driving external loads Motors: dc motors, stepper motors, servos Lecture Test Activity 4: Due before

More information

ear Design Specifications

ear Design Specifications . ear Inc. Simon Fraser University Burnaby, BC V5A 1S6 ear s Submitted by Contact Submitted to ear Inc: George Tsai, MinHong Zhou, Rick Liu, Daniel Tang, Aaron Lee George Tsai School of Engineering Science

More information