ECG Monitor - Abstract. This project deals with an application of H3687 from Renesas H8 series of processors in the Medical field to record ECG.

Size: px
Start display at page:

Download "ECG Monitor - Abstract. This project deals with an application of H3687 from Renesas H8 series of processors in the Medical field to record ECG."

Transcription

1 Project Id H0 - Abstract Introduction: This project deals with an application of H from Renesas H series of processors in the Medical field to record ECG. The electrocardiogram, or ECG (also known as EKG, abbreviated from the German word), is a surface measurement of the electrical potential generated by electrical activity in cardiac tissue. Current flow, in the form of ions, signals contraction of cardiac muscle fibers leading to the heart's pumping action. The study of this electrical signals can help in determining many abnormalities related to the heart's function. The following is a sample of how an ECG looks like. R P T Q S U Figure A typical ECG waveform By studying the time between different points P, Q, R, S, T and U and the variations in these times between successive beats many diseases with the heart can be detected. The ECG monitor described records different ECG signals and can display the ECG waveform on a x Graphical LCD display. By changing the Time-base, the ECG waveform can be studied in detail. The monitor also has software for beat detection incorporated that also displays the Heart Rate on the screen. The recorded ECG pattern can be uploaded to a PC through a serial port and the signal can be displayed on the PC. Software written in VB receives the data and displays the ECG waveforms of all the channels on the screen. The software can be modified to do advanced analysis of the ECG data like QRS detection, arrhythmia detection etc.

2 Project Id H0 Block Diagram: KB RAM Controls Probes ECG Amp 0-V HF -D Controls x LCD Key Keyboard TXD RXD Serial Port Interface To PC ECG Amp: This circuit amplifies the differential ECG signal introduces a small level shift to bring the negative signals to the positive side and feeds the input of ADC of the H. This circuit has a INA differential Amplifier followed by a High Pass Filter, a non-inverting amplifier with a variable gain and finally a level shifter that adds a V offset to the amplified ECG signal. Key Keyboard: This circuit has keys that are used to control the ECG monitor. The Keys are Start/Stop Recording, Send Data to PC, Scroll Left, Scroll Right, Select Channel and Select Time-base. KB RAM: This circuit is, a KB static RAM. This is used to store the recorded ECG data at KB per channel. As the ECG is sampled at ms intervals each channel can store. seconds of ECG signal per channel. Serial Port Interface: This circuit is built around the MAX Serial Interface IC. This circuit is used to send the recorded data to the PC. This circuit also is used to program the on board. x LCD: This is a x Graphical LCD display based on the KS00 controller. This displays the recorded ECG waveform as well as other information like Channel number, Timebase and calculated Heart rate.

3 Project Id H0 H: The Heart of the is the H controller from Renesas. The controller performs the following operations.. Accepts the Analog signal from the ECG Amp and digitizes it and stores it in the RAM.. Reads the Keyboard and performs the requested operations like Record, Select Channel, Select Time-base, Scroll the ECG signal on screen and Send Data to PC etc.. It generates the -D data bus for the RAM and LCD display.. It generates CS, CS, CS, CS, LCD_E, LCD_RESET signals for controlling the LCD.. It generates A0-A, CS0, RD, WR signals to control the RAM.. It communicates through the MAX to send the recorded data to PC. The Keyboard Panel: Operation and Control:. Channel Select Key: This key is used to select the channel to which the ECG data has to be recorded. Pressing this key changes the Channel number from to. After, the number loops back to.. Time-base Select Key: This key is used to select the time-base (time / pixel). This is useful to study the recorded waveform in detail. This can be compared to Zoom in and Zoom out functions. Pressing this key changes the Time-base between ms, ms, ms, 0ms and 0ms.. Scroll Left Key: This key is used to scroll the displayed waveform to the Left.. Scroll Right Key: This key is used to scroll the displayed waveform to the Right.. Start/Stop Recording: This key is used to start recording the ECG data to the selected channel.. Send to PC: This key is used to send the recorded data to the PC. Operation: Stick the GND electrode either to the right forearm or right leg. Stick the negative electrode to the right chest. Stick the positive electrode to the left chest at the desired location. The positive electrode can be shifted to places and different waveforms can be recorded. Select the Channel number using the Channel Select key. The selected channel number is displayed on the screen. Press the Start/Stop Recording Key. The controller displays "Recording" on top half of the screen while recording takes place. After. seconds (After samples), the recording is completed and the recorded wave is displayed on top half of the LCD Screen. The waveform can be viewed using the Scroll Left and Right keys. If you want to view the details of a single beat, then position the beat pulse at the Left of the Screen using the Scroll keys and then using the Time-base Select Key, change the time-base to ms, ms or ms to Zoom into the beat pattern. The default time-base is 0ms. Now stick the positive electrode to other locations on the left chest and selecting the Channel Record the other waveforms too. When all the channels have been recorded, pressing the Channel Select key will display the respective waveform and will also display the calculated Heart beat rate. Now connect the monitor to the PC and start the Program. Press the Send to PC key. The monitor prompts "Sending Data To PC" at the bottom of the display. When the data transmission is complete, the ECG waveforms of all the channels are displayed on the PC Screen.

4 Project Id H0 Code Snippet: The following part of code does the recording of ECG wave to the RAM. On completion, the waveform is displayed on the LCD. // If recording has been started, check for ADC complete flag. // If ADC result is available, then write to RAM if (Flags & FlagRecording) if (AdcCompleteFlag) // Is result available AdcCompleteFlag = ClearCompleteFlag; // Clear ADC flag AdcResult = WindowIntegrator((AdcRegisterA>>),); // If the last RAM page location has not been reached, write to RAM if (Offset < ) WriteToRam((unsigned char)adcresult,(offsetrampageaddress)); Offset; // If RAM Page is full, then clear the Recording flag and display // the recorded ECG data on screen else if (Offset >= ) Flags &= ~FlagRecording; // Clear Recording Flag TimerStop = ; TimerEnable = 0; // Stop the Timer Offset = 0; // Initialize RAM Page offset address DisplayEcg(); // Display the recorded ECG data

5 Project Id H0

6 Project Id RESET C 0.UF A0 A A A A A A A A A A0 A A A A RD WR CS0 JP HEADER D N 0 0 U C PF A0 A A A A A A A A A A0 A A A A OE WE CS R M KEY KEY KEY KEY KEY KEY C PF X 0MHz X.KHz D D D D D D D D D D D D D D JP X.K RESISTOR PACK VECG RESET C 0.UF A0 A A A 0 U HF PB/AN PB/AN AVcc X X VCL RES TEST Vss OSC OSC Vcc P0/WKP0 P/WKP P P A KEY P PB/ AN CS0 KEY P PB/ AN A KEY P/ WKP PB0/ AN0 A 0 KEY P/ WKP PB/ AN A 0 KEY P/ WKP PB/ AN A KEY P/ WKP/ ADTRG PB/ AN A P0/ TMOW P0 A P/ PWM P A0 P P A A P/ SDA P A P/ SCL P/ IRQ/ TRGV CS P/ TMRIV P/ IRQ LCDRESET P/ TMCIV P/ IRQ/ TMIB 0 P/ TMOV P/ IRQ0 0 CS P P/ TXD_ D CS P/ FTIO P/ RXD_ P0/SCK_ P P/TXD P/RXD P0/SCK P P P P/FTIOD P/FTIOC P/FTIOB P/FTIOA P0/FTIOA0 NMI P/FTIOB0 P/FTIOC0 TD TXD C 0UF/V 0 0 CS WR TXD RXD RD LCDRW LCDRS LCDE D C 0UF/V C 0UF/V D D D D D U MAX R IN R IN T IN T IN C C - V V- GND VR 0K R OUT R OUT T OUT T OUT C C - LCDRW LCDRESET D D D D CS CS RXD RD JP 0 0 LCD CONNECTOR R 0E C 0UF/V LCDRS LCDE D D D CS CS JP BACKLIGHT JP DB

7 Project Id C 0UF/V C 0UF/V BR W0 IN(TAB) OUT GND U 0 IN OUT GND U 0 C0 0UF/V C 0UF/V C 0.UF JP HEADER VIN VIN- RG RG REF VOUT U INAP R 0K R K R0 K C 0.0UF R M JP PROBE R.M C 0.UF R 00K R K VR 00K VECG C 0.UF R 00K R 00K VR 0K UA TL0 UB TL0 UA TL0 R 00K R 00K

STM32 microcontroller core ECG acquisition Conditioning System. LIU Jia-ming, LI Zhi

STM32 microcontroller core ECG acquisition Conditioning System. LIU Jia-ming, LI Zhi International Conference on Computer and Information Technology Application (ICCITA 2016) STM32 microcontroller core ECG acquisition Conditioning System LIU Jia-ming, LI Zhi College of electronic information,

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

Name Kyla Jackson, Todd Germeroth, Jake Spooler Date May 5, 2010 Lab 3E Group 3 Experiment Title Project Deliverable 3

Name Kyla Jackson, Todd Germeroth, Jake Spooler Date May 5, 2010 Lab 3E Group 3 Experiment Title Project Deliverable 3 Name Kyla Jackson, Todd Germeroth, Jake Spooler Date May 5, 2010 Lab 3E Group 3 Experiment Title Project Deliverable 3 Objective The objective of this project was to design and construct an ECG measurement

More information

EMG click PID: MIKROE-2621

EMG click PID: MIKROE-2621 EMG click PID: MIKROE-2621 EMG click measures the electrical activity produced by the skeletal muscles. It carries MCP609 operational amplifier and MAX6106 micropower voltage reference. EMG click is designed

More information

Brief Manual of HERA Application Board. with MiDAS Family. V2.0 March 2006

Brief Manual of HERA Application Board. with MiDAS Family. V2.0 March 2006 MiDAS HERA Family BM-HERA-V2. Brief Manual of HERA Application Board with MiDAS Family V2. March 26 CORERIVER Semiconductor reserves the right to make corrections, modifications, enhancements, improvements,

More information

3.3V regulator. JA H-bridge. Doc: page 1 of 7

3.3V regulator. JA H-bridge. Doc: page 1 of 7 Cerebot Reference Manual Revision: February 9, 2009 Note: This document applies to REV B-E of the board. www.digilentinc.com 215 E Main Suite D Pullman, WA 99163 (509) 334 6306 Voice and Fax Overview The

More information

5 TIPS FOR GETTING THE MOST OUT OF Your Function Generator

5 TIPS FOR GETTING THE MOST OUT OF Your Function Generator 5 TIPS FOR GETTING THE MOST OUT OF Your Function Generator Introduction Modern function/waveform generators are extremely versatile, going well beyond the basic sine, square, and ramp waveforms. Function

More information

2F. No.25, Industry E. 9 th Rd., Science-Based Industrial Park, Hsinchu, Taiwan Application Note of OGM220, AN001 V1.8

2F. No.25, Industry E. 9 th Rd., Science-Based Industrial Park, Hsinchu, Taiwan Application Note of OGM220, AN001 V1.8 Application Note of OGM220, AN001 V1.8 1.0 Introduction OGM220 series is a dual channels NDIR module having a digital output directly proportional to CO2 concentration. OGM220 is designed for multi-dropped

More information

Dual Channel PWM Controller with SCP / DTC Function

Dual Channel PWM Controller with SCP / DTC Function Dual Channel PWM Controller with SCP / DTC Function General Description The FP545A is a dual channel PWM buck controller with short circuit protection (SCP) and adjustable maximum duty control (DTC) function.

More information

AC Current click PID: MIKROE Weight: 27 g

AC Current click PID: MIKROE Weight: 27 g AC Current click PID: MIKROE-2523 Weight: 27 g AC Current click can measure alternating currents up to 30A and it features the MCP3201 ADC (analog to digital) converter and the MCP607 CMOS Op Amp, both

More information

Model : KY202M. Module Features. Heart Rate Variability Processing Module

Model : KY202M. Module Features. Heart Rate Variability Processing Module Module Features Weight : 0.88 g Dimension : 17mm x 20mm UART link ( TTL level Tx / Rx / GND ) Easy PC or Micro Controller Interface Time and Frequency Domain Analysis of Heart Rate Variability Instantaneous

More information

The ST7528 is a driver & controller LSI for 16-level gray scale graphic dot-matrix liquid crystal display systems. It contains

The ST7528 is a driver & controller LSI for 16-level gray scale graphic dot-matrix liquid crystal display systems. It contains Sitronix ST ST7528 16 Gray Scale Dot Matrix LCD Controller/Driver INTRODUCTION The ST7528 is a driver & controller LSI for 16-level gray scale graphic dot-matrix liquid crystal display systems. It contains

More information

GC221-SO16IP. 8-bit Turbo Microcontroller

GC221-SO16IP. 8-bit Turbo Microcontroller Total Solution of MCU GC221-SO16IP 8-bit Turbo Microcontroller CORERIVER Semiconductor reserves the right to make corrections, modifications, enhancements, improvements, and other changes to its products

More information

Portable, Low Cost, Low Power Cardiac Interpreter

Portable, Low Cost, Low Power Cardiac Interpreter Portable, Low Cost, Low Power Cardiac Interpreter Avishek Paul Department of Applied Electronics and Instrumentation Engineering RCC Institute of Information Technology, Kolkata, West Bengal, India Jahnavi

More information

A radiation tolerant, low-power cryogenic capable CCD readout system:

A radiation tolerant, low-power cryogenic capable CCD readout system: A radiation tolerant, low-power cryogenic capable CCD readout system: Enabling focal-plane mounted CCD read-out for ground or space applications with a pair of ASICs. Overview What do we want to read out

More information

Analog Circuits and Systems

Analog Circuits and Systems Analog Circuits and Systems Prof. K Radhakrishna Rao Lecture 3 Role of Analog Signal Processing in Electronic Products Part 11 1 Cell Phone o The most dominant product of present day world o Its basic

More information

Lab: Using filters to build an electrocardiograph (ECG or EKG)

Lab: Using filters to build an electrocardiograph (ECG or EKG) Page 1 /6 Lab: Using filters to build an electrocardiograph (ECG or EKG) Goal: Use filters and amplifiers to build a circuit that will sense and measure a heartbeat. You and your heartbeat Did you know

More information

ADC Board 4 Channel Notes September 29, DRAFT - May not be correct

ADC Board 4 Channel Notes September 29, DRAFT - May not be correct ADC Board 4 Channel Notes September 29, 2006 - DRAFT - May not be correct Board Features 4 Chan - 130MSPS 16 bit ADCs LTC2208 - Data clocked into 64k Sample FIFOs 1 buffered clock input to CPLD 1 buffered

More information

µpad: Proto Base Manual

µpad: Proto Base Manual µpad: Proto Base Manual Last Updated May 13, 2015 Table of Contents WARNING: READ BEFORE PROCEDING!... 7 Overview... Error! Bookmark not defined. µpad Base Connection... 8 Analog... 8 Amplifier Circuit...

More information

CHAPTER 6 IMPLEMENTATION OF FPGA BASED CASCADED MULTILEVEL INVERTER

CHAPTER 6 IMPLEMENTATION OF FPGA BASED CASCADED MULTILEVEL INVERTER 8 CHAPTER 6 IMPLEMENTATION OF FPGA BASED CASCADED MULTILEVEL INVERTER 6.1 INTRODUCTION In this part of research, a proto type model of FPGA based nine level cascaded inverter has been fabricated to improve

More information

*Notebook is excluded

*Notebook is excluded Biomedical Measurement Training System This equipment is designed for students to learn how to design specific measuring circuits and detect the basic physiological signals with practical operation. Moreover,

More information

Electronics front-end for sensors and signal transmission

Electronics front-end for sensors and signal transmission Electronics front-end for sensors and signal transmission Course on Analog Electronic Systems and Sensors Laurea Magistrale Ingegneria Elettronica Università di Firenze A.A. 2015-2016 Teacher: Prof Ing

More information

SD3004. Energy Measurement SOC. Features. General Description. Ordering Information. Pin Diagram and Descriptions

SD3004. Energy Measurement SOC. Features. General Description. Ordering Information. Pin Diagram and Descriptions Energy Measurement SOC Features High precision energy measurement Provide RMS voltage and RMS current Calculates active power and power factor Calculates AC frequency High frequency CF pulse for calibration

More information

Design and Implementation of Digital Stethoscope using TFT Module and Matlab Visualisation Tool

Design and Implementation of Digital Stethoscope using TFT Module and Matlab Visualisation Tool World Journal of Technology, Engineering and Research, Volume 3, Issue 1 (2018) 297-304 Contents available at WJTER World Journal of Technology, Engineering and Research Journal Homepage: www.wjter.com

More information

PROMAG RWM600A. ISO/IEC15693 Advanced Reader Module. Overview. Features. Application. Specifications. Application Circuit

PROMAG RWM600A. ISO/IEC15693 Advanced Reader Module. Overview. Features. Application. Specifications. Application Circuit Overview ISO569 reader module works with smart label, based on transponders with an operating frequency of.56mhz (e.g. I-CODE SL, Tag-It HF-I etc.), based on TI-RFID technology. Depending on the size of

More information

Non-Synchronous PWM Boost Controller

Non-Synchronous PWM Boost Controller Non-Synchronous PWM Boost Controller FP58 General Description The FP58 is a boost switching regulator controller IC for battery-used applications. The FP58 includes a totem-pole output stage for driving

More information

ENGR 40M Project 4: Electrocardiogram. Prelab due 24 hours before your section, August Lab due 11:59pm, Saturday, August 19

ENGR 40M Project 4: Electrocardiogram. Prelab due 24 hours before your section, August Lab due 11:59pm, Saturday, August 19 ENGR 40M Project 4: Electrocardiogram Prelab due 24 hours before your section, August 14 15 Lab due 11:59pm, Saturday, August 19 1 Introduction In this project, we will build an electrocardiogram (ECG

More information

Techcode TD8215. Step-up DC/DC Controller. General Description. Features. Applications. Pin Configurations DATASHEET TD8215 INV SCP VDD CTL

Techcode TD8215. Step-up DC/DC Controller. General Description. Features. Applications. Pin Configurations DATASHEET TD8215 INV SCP VDD CTL General Description Features The is a single PWM, step up DC DC controller with low operating voltage application integrating softstart and short circuit detection function. The oscillator switching frequency

More information

KS SEG / 129 COM DRIVER & CONTROLLER FOR 4 GRAY SCALE STN LCD. February Ver Prepared by: Hyung-Suk, Kim.

KS SEG / 129 COM DRIVER & CONTROLLER FOR 4 GRAY SCALE STN LCD. February Ver Prepared by: Hyung-Suk, Kim. KS0741 128 SEG / 129 COM DRIVER & CONTROLLER FOR 4 GRAY SCALE STN LCD February 8. 2000. Ver. 1.2 Prepared by: HyungSuk, Kim highndry@samsung.co.kr Contents in this document are subject to change without

More information

Frequency Synthesizer Project ECE145B Winter 2011

Frequency Synthesizer Project ECE145B Winter 2011 Frequency Synthesizer Project ECE145B Winter 2011 The goal of this last project is to develop a frequency synthesized local oscillator using your VCO from Lab 2. The VCO will be locked to a stable crystal

More information

Keywords Graphic LCD, Electrocardiograph, IC-LM35, AD620 Instrumentation Amplifier, High pass and Low Pass Filter, Fig. 1. Example of an ECG Signal

Keywords Graphic LCD, Electrocardiograph, IC-LM35, AD620 Instrumentation Amplifier, High pass and Low Pass Filter, Fig. 1. Example of an ECG Signal Volume 5, Issue 5, May 2015 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com AT89C51 Microcontroller

More information

R2868 Flame Detector Driver Board Usage (ACM A)

R2868 Flame Detector Driver Board Usage (ACM A) R88 Flame Detector Driver Board Usage (ACM-9--A) Technical Specifications: Operating Voltage: DC.V~0V Operating Current: ma~0ma Max (Always On Condition) Power Safe Mode:.mA (When sensing circuit is off)

More information

ECE 363 FINAL (F16) 6 problems for 100 pts Problem #1: Fuel Pump Controller (18 pts)

ECE 363 FINAL (F16) 6 problems for 100 pts Problem #1: Fuel Pump Controller (18 pts) ECE 363 FINAL (F16) NAME: 6 problems for 100 pts Problem #1: Fuel Pump Controller (18 pts) You are asked to design a high-side switch for a remotely operated fuel pump. You decide to use the IRF9520 power

More information

SD Diff Channels ADC SOC with RTC and 24*4 LCD

SD Diff Channels ADC SOC with RTC and 24*4 LCD 2 Diff Channels ADC SOC with RTC and 24*4 LCD Features High precision ADC, ENOB=18.8bits@8sps, 2 differential or 4 single-ended inputs Low noise, high input impedance preamplifier with selectable gain:

More information

EVAL-ADM8843. Evaluation Board for Charge Pump Driver for LCD White LED Backlights. Preliminary Technical Data

EVAL-ADM8843. Evaluation Board for Charge Pump Driver for LCD White LED Backlights. Preliminary Technical Data Evaluation Board for Charge Pump Driver for LCD White LED Backlights EVAL-ADM8843 FEATURES ADM8843 drives 4 white LEDs from a 2.6V to 5.5V (li-ion) input supply 1x/1.5x/2x Fractional Charge Pump to maximize

More information

Connecting a Neuron 5000 Processor to an External Transceiver

Connecting a Neuron 5000 Processor to an External Transceiver @ Connecting a Neuron 5000 Processor to an External Transceiver March 00 LonWorks Engineering Bulletin The Echelon Neuron 5000 Processor provides a media-independent communications port that can be configured

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

Lecture 4: Basic Electronics. Lecture 4 Brief Introduction to Electronics and the Arduino

Lecture 4: Basic Electronics. Lecture 4 Brief Introduction to Electronics and the Arduino Lecture 4: Basic Electronics Lecture 4 Page: 1 Brief Introduction to Electronics and the Arduino colintan@nus.edu.sg Lecture 4: Basic Electronics Page: 2 Objectives of this Lecture By the end of today

More information

OP5340-1/OP USER GUIDE

OP5340-1/OP USER GUIDE OP5340-1/OP5340-2 USER GUIDE Analog to Digital Converter Module www.opal-rt.com Published by OPAL-RT Technologies, Inc. 1751 Richardson, suite 2525 Montréal (Québec) Canada H3K 1G6 www.opal-rt.com 2014

More information

Bio-Potential Amplifiers

Bio-Potential Amplifiers Bio-Potential Amplifiers Biomedical Models for Diagnosis Body Signal Sensor Signal Processing Output Diagnosis Body signals and sensors were covered in EE470 The signal processing part is in EE471 Bio-Potential

More information

EG medlab. Three Lead ECG OEM board. Version Technical Manual. Medlab GmbH Three Lead ECG OEM Module EG01010 User Manual

EG medlab. Three Lead ECG OEM board. Version Technical Manual. Medlab GmbH Three Lead ECG OEM Module EG01010 User Manual Medlab GmbH Three Lead ECG OEM Module EG01010 User Manual medlab Three Lead ECG OEM board EG01010 Technical Manual Copyright Medlab 2008-2016 Version 1.03 1 Version 1.03 28.04.2016 Medlab GmbH Three Lead

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

REAL-TIME WIRELESS ECG AND ITS SIGNAL DISPLAY ON LABVIEW

REAL-TIME WIRELESS ECG AND ITS SIGNAL DISPLAY ON LABVIEW REAL-TIME WIRELESS ECG AND ITS SIGNAL DISPLAY ON LABVIEW 1 POOJA AIYAPPA K, 2 SEETHAMMA M.G, 3 BHAUSHI AIYAPPA C 1,2 Dept. of ECE,CIT, Ponnampet, Karnataka, 3 Assistant Professor, Dept. of ECE, CIT, Ponnampet,

More information

Electrocardiogram (ECG)

Electrocardiogram (ECG) Vectors and ECG s Vectors and ECG s 2 Electrocardiogram (ECG) Depolarization wave passes through the heart and the electrical currents pass into surrounding tissues. Small part of the extracellular current

More information

RL78 Motor Control. YRMCKITRL78G14 Starter Kit. Renesas Electronics Europe. David Parsons Application Engineering Industrial Business Group.

RL78 Motor Control. YRMCKITRL78G14 Starter Kit. Renesas Electronics Europe. David Parsons Application Engineering Industrial Business Group. RL78 Motor Control YRMCKITRL78G14 Starter Kit Renesas Electronics Europe David Parsons Application Engineering Industrial Business Group July 2012 Renesas MCU for 3-phase Motor Control Control Method Brushless

More information

S6A0093 Specification Revision History

S6A0093 Specification Revision History Crystalfontz Thiscontrolerdatasheetwasdownloadedfrom htp:/wwwcrystalfontzcom/controlers/ S6A0093 80 SEG / 26 COM DRIVER & CONTROLLER FOR STN LCD March 2001 Ver 06 Contents in this document are subject

More information

ZKit-ARM-1769, ARM Dev. Kit

ZKit-ARM-1769, ARM Dev. Kit ZKitARM769, ARM Dev. Kit User Manual 0., May 03 ZKitARM769, ARM Dev. Kit User Manual Rev. 0. This work is licensed under the Creative Commons AttributionShare Alike.5 India License. To view a copy of this

More information

EECE Circuits and Signals: Biomedical Applications. Lab ECG I The Instrumentation Amplifier

EECE Circuits and Signals: Biomedical Applications. Lab ECG I The Instrumentation Amplifier EECE 150 - Circuits and Signals: Biomedical Applications Lab ECG I The Instrumentation Amplifier Introduction: As discussed in class, instrumentation amplifiers are often used to reject common-mode signals

More information

LO terminator Dick Plambeck, 1/9/2004 Version 2, 4/17/04 Version 3, 10/27/04

LO terminator Dick Plambeck, 1/9/2004 Version 2, 4/17/04 Version 3, 10/27/04 LO terminator Dick Plambeck, /9/00 Version, /7/0 Version, 0/7/0 Function: Provides 00-0 MHz phaselock reference signal (LO ref) at each antenna. Incorporates fiber directional coupler to send echo signal

More information

NJM2379 PWM SWITCHING REGULATOR CONTROL IC FOR SLAVE TYPE

NJM2379 PWM SWITCHING REGULATOR CONTROL IC FOR SLAVE TYPE PWM SWITCHING REGULATOR CONTROL IC FOR SLAVE TYPE GENERAL DESCRIPTION The NJM2379 is a high speed switching regulator control IC, and directly drive an external power MOS-FET to use internal totempole

More information

COG (Chip-On-Glass) Liquid Crystal Display Module

COG (Chip-On-Glass) Liquid Crystal Display Module NHD-C12864CR-FSW-GBW COG (Chip-On-Glass) Liquid Crystal Display Module NHD- Newhaven Display C12864-128 x 64 pixels CR- Model F- Transflective SW- Side White LED backlight G- STN - Gray B- 6:00 view W-

More information

NJU6655. Preliminary. 64-common X 160-segment + 1-icon common Bitmap LCD Driver ! GENERAL DESCRIPTION ! PACKAGE OUTLINE ! FEATURES

NJU6655. Preliminary. 64-common X 160-segment + 1-icon common Bitmap LCD Driver ! GENERAL DESCRIPTION ! PACKAGE OUTLINE ! FEATURES Crystalfontz Thiscontrolerdatasheetwasdownloadedfrom htp/www.crystalfontz.com/controlers/ NJU6655 Preliminary 64-common X 6-segment -icon common Bitmap LCD Driver! GENERAL DESCRIPTION The NJU6655 is a

More information

NTE1786 Integrated Circuit Frequency Lock Loop (FLL) Tuning & Control Circuit

NTE1786 Integrated Circuit Frequency Lock Loop (FLL) Tuning & Control Circuit NTE1786 Integrated Circuit Frequency Lock Loop (FLL) Tuning & Control Circuit Description: The NTE1786 is an integrated circuit in a 24 Lead DIP type package that provides closed loop digital tuning of

More information

FP5139. Technology BOOST CONVERT CONTROL IC GENERAL DESCRIPTION FEATURES TYPICAL APPLICATION

FP5139. Technology BOOST CONVERT CONTROL IC GENERAL DESCRIPTION FEATURES TYPICAL APPLICATION BOOST CONVERT CONTROL IC GENERAL DESCRIPTION The is a boost topology switching regulator control IC for battery-used applications field. The includes a totem-pole single output stage for driving NPN transistor

More information

INA3221 Breakout Board

INA3221 Breakout Board Product Specification Features and Benefits:! The is an easy to use 3 Channel Current / Voltage I2C Monitor. The monitors both shunt voltage drops and bus supply voltages in addition to having programmable

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

MICROCONTROLLER BASED PULSE GENERATOR

MICROCONTROLLER BASED PULSE GENERATOR ECTRONICS 00 0 September, Sozopol, BULGARIA MICROCONTROLR BASED PULSE GENERATOR FOR NEURO-STIMULATION PURPOSES Sever Paşca, Istvan Sztojanov Department of Applied Electronics and Information Engineering,

More information

HT162X HT1620 HT1621 HT1622 HT16220 HT1623 HT1625 HT1626 COM

HT162X HT1620 HT1621 HT1622 HT16220 HT1623 HT1625 HT1626 COM RAM Mapping 328 LCD Controller for I/O C Features Operating voltage: 2.7V~5.2V Built-in RC oscillator 1/4 bias, 1/8 duty, frame frequency is 64Hz Max. 328 patterns, 8 commons, 32 segments Built-in internal

More information

Designated client product

Designated client product Designated client product This product will be discontinued its production in the near term. And it is provided for customers currently in use only, with a time limit. It can not be available for your

More information

IZ602 LCD DRIVER Main features: Table 1 Pad description Pad No Pad Name Function

IZ602 LCD DRIVER Main features: Table 1 Pad description Pad No Pad Name Function LCD DRIVER The IZ602 is universal LCD controller designed to drive LCD with image element up to 128 (32x4). Instruction set makes IZ602 universal and suitable for applications with different types of displays.

More information

QUICK START GUIDE FOR DEMONSTRATION CIRCUIT BIT DIFFERENTIAL INPUT DELTA SIGMA ADC LTC DESCRIPTION

QUICK START GUIDE FOR DEMONSTRATION CIRCUIT BIT DIFFERENTIAL INPUT DELTA SIGMA ADC LTC DESCRIPTION LTC2433-1 DESCRIPTION Demonstration circuit 745 features the LTC2433-1, a 16-bit high performance Σ analog-to-digital converter (ADC). The LTC2433-1 features 0.12 LSB linearity, 0.16 LSB full-scale accuracy,

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

UHF RFID Reader/Writer Module Specification

UHF RFID Reader/Writer Module Specification UHF RFID Reader/Writer Module Specification Rev.2.0.0 2017-11-29 Contents Revision History... 3 1 Overview... 4 2 Electrical Specification... 5 2.1 Absolute Maximum Ratings... 5 2.2 Functional specification...

More information

Digital I/O. A/D Converters. PWM Outputs

Digital I/O. A/D Converters. PWM Outputs FEATURES Micro-module mounts to user PC boards 72 Digital I/O 12 Analog Inputs 12 PWM Outputs Dedicated Digital Inputs for CAN Node Address CAN Bit-rate 2 Outputs for CAN Status LED drive CAN & RS-232

More information

Package Type. 6800, 8080, 4-Line, 3-Line interface (without IIC interface)

Package Type. 6800, 8080, 4-Line, 3-Line interface (without IIC interface) Sitronix INTRODUCTION ST ST7541 4 Gray Scale Dot Matrix LCD Controller/Driver ST7541 is a driver & controller LSI for 4-level gray scale graphic dot-matrix liquid crystal display systems. This chip can

More information

UNISONIC TECHNOLOGIES CO., LTD

UNISONIC TECHNOLOGIES CO., LTD UNISONIC TECHNOLOGIES CO., LTD VOLTAGE MODE PWM CONTROL CIRCUIT DESCRIPTION The UTC TL494 incorporates all the functions required in the construction of a pulse-width modulation switching circuit. Designed

More information

Florida Atlantic University Biomedical Signal Processing Lab Experiment 2 Signal Transduction: Building an analog Electrocardiogram (ECG)

Florida Atlantic University Biomedical Signal Processing Lab Experiment 2 Signal Transduction: Building an analog Electrocardiogram (ECG) Florida Atlantic University Biomedical Signal Processing Lab Experiment 2 Signal Transduction: Building an analog Electrocardiogram (ECG) 1. Introduction: The Electrocardiogram (ECG) is a technique of

More information

DASL 120 Introduction to Microcontrollers

DASL 120 Introduction to Microcontrollers DASL 120 Introduction to Microcontrollers Lecture 2 Introduction to 8-bit Microcontrollers Introduction to 8-bit Microcontrollers Introduction to 8-bit Microcontrollers Introduction to Atmel Atmega328

More information

Crystal oscillator Phase accumulator Look-up table D/A converter

Crystal oscillator Phase accumulator Look-up table D/A converter Direct Digital Synthesis (DDS) is one of the more prevalent methods used to generate a frequency agile signal today. The material in the following explanation was taken from www.ehb.itu. edu.tr/~eepazarc/ddstu

More information

Built-in LCD display RAM Built-in RC oscillator

Built-in LCD display RAM Built-in RC oscillator PAT No. : TW 099352 RAM Mapping 488 LCD Controller for I/O MCU Technical Document Application Note Features Operating voltage: 2.7V~5.2V Built-in LCD display RAM Built-in RC oscillator R/W address auto

More information

R/W address auto increment External Crystal kHz oscillator

R/W address auto increment External Crystal kHz oscillator RAM Mapping 328 LCD Controller for I/O MCU PATENTED PAT No. : 099352 Features Operating voltage: 2.7V~5.2V R/W address auto increment External Crystal 32.768kHz oscillator Two selectable buzzer frequencies

More information

Microprocessor & Interfacing Lecture Programmable Interval Timer

Microprocessor & Interfacing Lecture Programmable Interval Timer Microprocessor & Interfacing Lecture 30 8254 Programmable Interval Timer P A R U L B A N S A L A S S T P R O F E S S O R E C S D E P A R T M E N T D R O N A C H A R Y A C O L L E G E O F E N G I N E E

More information

DEVKIT-S12ZVC QUICK START GUIDE (QSG)

DEVKIT-S12ZVC QUICK START GUIDE (QSG) DEVKIT-S12ZVC QUICK START GUIDE (QSG) ULTRA-RELIABLE MCUS FOR INDUSTRIAL AND AUTOMOTIVE EXTERNAL USE Get to know the DEVKIT-S12ZVC The DEVKIT-S12ZVC is an ultra-low-cost development platform for S12 Microcontrollers.

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

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

QUICK START GUIDE FOR DEMONSTRATION CIRCUIT 1339 LOW NOISE, 500KSPS, 12-BIT ADC

QUICK START GUIDE FOR DEMONSTRATION CIRCUIT 1339 LOW NOISE, 500KSPS, 12-BIT ADC LTC0 DESCRIPTION Demonstration circuit features the LTC0 low noise, 00ksps, -Bit, ADC. The LTC0 has an SPI compatible serial interface that can be used to select channel polarity and unipolar or bipolar

More information

IMPROVEMENTS IN ELECTROCARDIOGRAPHY SMOOTHENING AND AMPLIFICATION

IMPROVEMENTS IN ELECTROCARDIOGRAPHY SMOOTHENING AND AMPLIFICATION IMPROVEMENTS IN ELECTROCARDIOGRAPHY SMOOTHENING AND AMPLIFICATION Manan Joshi, Sarosh Patel, Dr. Lawrence Hmurcik Electrical Engineering Department University of Bridgeport Bridgeport, CT 06604 Abstract

More information

S-RockMite QRP Kit User Manual. Welcome to visit the home page to obtain the latest data. 1 / 23. Revision V161101

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

More information

HT162X HT1620 HT1621 HT1622 HT16220 HT1623 HT1625 HT1626 COM

HT162X HT1620 HT1621 HT1622 HT16220 HT1623 HT1625 HT1626 COM RAM Mapping 328 LCD Controller for I/O MCU PATENTED PAT No. : 099352 Technical Document Application Note Features Operating voltage: 2.7V~5.2V Built-in RC oscillator 1/4 bias, 1/8 duty, frame frequency

More information

AP1513. PWM Control 2A Step-Down Converter. Features. General Description. Applications. Pin Descriptions. Pin Assignments

AP1513. PWM Control 2A Step-Down Converter. Features. General Description. Applications. Pin Descriptions. Pin Assignments Features Input voltage: 3.6V to 18V. voltage: 0.8V to V CC. Duty ratio: 0% to 100% PWM control Oscillation frequency: 300KHz typ. Softstart, Current limit, Enable function Thermal Shutdown function Builtin

More information

PATENTED. PAT No. : HT1622/HT1622G RAM Mapping 32 8 LCD Controller for I/O MCU. Features. General Description.

PATENTED. PAT No. : HT1622/HT1622G RAM Mapping 32 8 LCD Controller for I/O MCU. Features. General Description. RAM Mapping 328 LCD Controller for I/O MCU PATENTED PAT No. : 099352 Features Operating voltage: 2.7V~5.2V Built-in RC oscillator 1/4 bias, 1/8 duty, frame frequency is 64Hz Max. 328 patterns, 8 commons,

More information

CMP 200 FUNCTIONAL DRAWINGS. DC Bus and Power Distribution

CMP 200 FUNCTIONAL DRAWINGS. DC Bus and Power Distribution CPI Canada Inc Functional Drawing Index CMP 00 FUNCTIONAL DRAWINGS DESCRIPTION DC Bus and Power Distribution System ON Room Interface XRay Exposure Radiographic kv Control and Feedback Filament Drive and

More information

Key Specifications f CLK e 8 MHz L f CLK e 6 MHz. Y Resolution 12-bit a sign or 8-bit a sign. Y 13-bit conversion time 5 5 ms 7 3 ms (max)

Key Specifications f CLK e 8 MHz L f CLK e 6 MHz. Y Resolution 12-bit a sign or 8-bit a sign. Y 13-bit conversion time 5 5 ms 7 3 ms (max) LM12434 LM12 L 438 12-Bit a Sign Data Acquisition System with Serial I O and Self-Calibration General Description The LM12434 and LM12 L 438 are highly integrated Data Acquisition Systems Operating on

More information

TRANSDUCER INTERFACE APPLICATIONS

TRANSDUCER INTERFACE APPLICATIONS TRANSDUCER INTERFACE APPLICATIONS Instrumentation amplifiers have long been used as preamplifiers in transducer applications. High quality transducers typically provide a highly linear output, but at a

More information

Multiple Instrument Station Module

Multiple Instrument Station Module Multiple Instrument Station Module Digital Storage Oscilloscope Vertical Channels Sampling rate Bandwidth Coupling Input impedance Vertical sensitivity Vertical resolution Max. input voltage Horizontal

More information

High-Speed Serial Interface Circuits and Systems

High-Speed Serial Interface Circuits and Systems High-Speed Serial Interface Circuits and Systems Design Exercise4 Charge Pump Charge Pump PLL ɸ ref up PFD CP LF VCO down ɸ out ɸ div Divider Converts PFD phase error pulse (digital) to charge (analog).

More information

NF1011 Frequency Translator and Jitter Attenuator

NF1011 Frequency Translator and Jitter Attenuator NF1011 Frequency Translator and Jitter Attenuator 2111 Comprehensive Drive Aurora, Illinois 60505 Phone: 630-851- 4722 Fax: 630-851- 5040 www.conwin.com P R O D U C T General Description The NF1011 is

More information

MLX90255 Linear Optical Array

MLX90255 Linear Optical Array Application Note: MLX90 Demo Board The demo board described in this document facilitates the evaluation of the MLX90xx Linear Optical Arrays. The board provides the necessary timing and clock signals to

More information

Asynchronous Boost Controller

Asynchronous Boost Controller Asynchronous Boost Controller FP59 General Description The FP59 is a boost topology switching regulator control IC for battery-powered applications. The FP59 includes a totem-pole single output stage for

More information

Electrocardiogram (EKG) Data Acquisition and Wireless Transmission

Electrocardiogram (EKG) Data Acquisition and Wireless Transmission Electrocardiogram (EKG) Data Acquisition and Wireless Transmission PATRICK O. BOBBIE CHAUDARY ZEESHAN ARIF HEMA CHAUDHARI SAGAR PUJARI Southern Polytechnic State University School of Computing and Software

More information

Apr - 12, 05. Most recent REV DATE : page #

Apr - 12, 05. Most recent REV DATE : page # Customer : P.O. number : Dewar number : Job Order number : Quote number : Components : GUMP Preamp, configured for 2 channels, includes external Analog, Digital and Power Supply cables Most recent REV

More information

The rangefinder can be configured using an I2C machine interface. Settings control the

The rangefinder can be configured using an I2C machine interface. Settings control the Detailed Register Definitions The rangefinder can be configured using an I2C machine interface. Settings control the acquisition and processing of ranging data. The I2C interface supports a transfer rate

More information

Block Diagram , E I F = O 4 ) + J H 6 E E C + E H? K E J +,, H E L A H * E = I + E H? K E J + + % 8,, % 8 +, * * 6 A. H A G K A? O

Block Diagram , E I F = O 4 ) + J H 6 E E C + E H? K E J +,, H E L A H * E = I + E H? K E J + + % 8,, % 8 +, * * 6 A. H A G K A? O PAT No. : 099352 RAM Mapping 488 LCD Controller for I/O MCU Technical Document Application Note Features Operating voltage: 2.7V~5.2V Built-in LCD display RAM Built-in RC oscillator R/W address auto increment

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

GAUSS High Power UHF Radio

GAUSS High Power UHF Radio [] Table of contents Table of contents... 1 1. Introduction... 3 Features... 4 Block Diagram... 6 2. Pinouts... 7 3. Absolute Maximum Ratings... 9 4. General Recommended Operating Conditions... 10 5. RF

More information

S3C9442/C9444/F9444/C9452/C9454/F9454

S3C9442/C9444/F9444/C9452/C9454/F9454 PRODUCT OVERVIEW 1 PRODUCT OVERVIEW SAM88RCRI PRODUCT FAMILY Samsung's SAM88RCRI family of 8-bit single-chip CMOS microcontrollers offers a fast and efficient CPU, a wide range of integrated peripherals,

More information

SPECIFICATION OF LCD MODULE

SPECIFICATION OF LCD MODULE PAGE 1/21 SPECIFICATION OF LCD MODULE MODULE NO: AFY240320A0-2.8N6NTN-R Customer Approval: Accept Reject FUTURE FOCUS SIGNATURE DATE PREPARED BY CHECKED BY APPROVED BY PAGE 2/21 Sample Version Doc. Version

More information

LoadCell Board Application Note

LoadCell Board Application Note LoadCell Board Application Note 1. What is loadcell 1.1. Loadcell Loadcell is one kind of bridge sensor. Loadcell is a passtive resistant sensor. The resistance varies for the change of the force. The

More information

EM Arduino 4-20mA Shield Documentation. Version 1.5.0

EM Arduino 4-20mA Shield Documentation. Version 1.5.0 EM Arduino 4-20mA Shield Documentation Version 1.5.0 Erdos Miller October 22, 2014 1 Contents 1 Power... 3 2 Connecting Sensors... 3 3 Scaling ADC Readings to Current in ma... 4 4 Using with a 3.3V Arduino...

More information

HT1620 HT1621 HT1622 HT16220 HT1623 HT1625 HT1626 HT1627 HT16270 COM

HT1620 HT1621 HT1622 HT16220 HT1623 HT1625 HT1626 HT1627 HT16270 COM RAM Mapping 48 16 LCD Controller for I/O µc LCD Controller Product Line Selection Table HT162X HT1620 HT1621 HT1622 HT16220 HT1623 HT1625 HT1626 HT1627 HT16270 COM 4 4 8 8 8 81 16 16 16 SEG 32 32 32 32

More information