SlideShare a Scribd company logo
1 of 5
Download to read offline
IOSR Journal of Electrical and Electronics Engineering (IOSR-JEEE)
e-ISSN: 2278-1676,p-ISSN: 2320-3331, Volume 8, Issue 1 (Nov. - Dec. 2013), PP 22-26
www.iosrjournals.org
www.iosrjournals.org 22 | Page
Measurement of Pulse rate and SPo2 using Pulse Oximeter
developed using LabVIEW
T.Bheema lingaiah1
, D.Hanumesh Kumar2
, C.Nagaraja2
1. Dept. of Biomedical Engineering, Jimma Institute of Technology, Jimma University, Jimma, ETHIOPIA,
2. Dept of Instrumentation, Sri Krishnadevaraya University, Anantapur, Andhra Pradesh, India.
Abstract: The objective of this study is to develop a pulse Oximeter for the determination of pulse rate and
percentage of oxygen in the blood of a patient. To determine these parameters the light is transmitted through
the fingertip using a photodiode as a sensor and two LED’S (RED & IR) as a light source. The photo diode
detects the light and the DAQ device outputs a voltage corresponding to the amount of light detected, and the
final signal is a pulse. To determine the pulse rate, first the time that elapses between two successive peaks must
be determined. Second to calculate the percentage of oxygen, AC & DC voltages must be determined. Based on
voltages the modulation ratio is calculated, which is the ratio of magnitude of RED waveform to that of IR
waveform.
Keywords: DAQ; sensor; signal processing;
I. INTRODUCTION
Pulse oximetery has been one of the most significant technological advances in clinical monitoring in
the last two decades. Pulse oximetery is a non-invasive photometric technique that provides information about
the arterial blood oxygen saturation (SpO2) and heart rate, and has widespread clinical applications. The use of
pulse oximeters has been described in many settings: hospital, outpatient, domiciliary use and in veterinary
clinics [6]
.
Pulse oximeters determine arterial blood oxygen saturation by measuring the light absorbance of tissue
at two different wavelengths and using the arterial blood pulsation to differentiate between absorbance of
arterial blood and other absorbers. A good choice of wavelength is where there are large differences in the
extinction coefficients of deoxyhaemoglobin and oxyhaemoglobin. Another criterion for the wavelength
selection is the relative flatness of the absorption spectra around the chosen wavelength. The two conventional
wavelengths used in pulse oximetery are 660 nm (red) and 940 nm (near infrared) [1, 2]
.
Fig1: Functional Block diagram of Pulse Oximeter
II. Instrumentation:
The block diagram of pulse Oximeter is shown in the fig 1. It consists of the following functional
blocks
1. Personal Computer
2. Constant current source
3. Finger probe
4. Signal conditioning unit
Measurement of Pulse rate and SPo2 using Pulse Oximeter developed using LabVIEW
www.iosrjournals.org 23 | Page
5. Active filter
6. DAQ
The functional approach to the system is described below. The constant current source section consists
of transistorized current source for illuminating RED and IR LED’s. The photo detector detects the intensity of
light transmitted through the finger. The output of the photo detector is amplified and processed by signal
conditioning unit. The signal conditioning unit consists of a voltage follower, 50 Hz noise filter and an amplifier
with an adjustable gain. The output of signal conditioning unit is applied to the active low pass filter which
eliminates the noises induced by the power supply as well as due to the operations of active components
involved in the circuit. The output of the filter is applied to the system for processing through LabVIEW [8]
and
to display the result through the DAQ.
The switching signal for the constant current source to select RED an IR LEDs will be generated
within the system using LabVIEW and sent to the source through the ports of DAQ.
The complete circuit diagram of pulse Oximeter is shown in fig 2.
Fig 2: Circuit diagram of Pulse Oximeter
III. Software Development:
Lab VIEW program is to calculate:
 Percent oxygenation
 Pulse rate
The percent oxygen [3, 5]
in the blood of a patient can be calculated by measuring the amount of light
that is transmitted through the fingertip using a photodiode as a sensor and two LEDs (red and IR) as the light
source. The photodiode detects the transmitted light and the DAQ device outputs a voltage that corresponds to
the amount of light detected. The final signal appears as the waveform of a pulse. There will be two
waveforms: one signal for the red LED and a second for the IR LED. Once these signals are generated using
the DAQ device, several measurements are made. First, the amount of time that elapses in between peaks will
be determined in order to calculate the pulse rate. Second, the AC and DC of the voltage signals will be
determined in order to calculate the percent of oxygenation. Once these values are found, the modulation ratio
[4]
is calculated. The modulation ratio is essentially the ratio of the magnitude of the red waveform to that of the
IR waveform [9]
.
To be able to record and calculate all of these measurements, the code is split into a series of events
that occur from left to right of our code.
The first event that occurs is turning ON the red LED by generating step voltage using the DAQ [7]
device, this is shown in the first frame of the flat sequence structure used to execute the developed code.
Then, the second event occurs which includes several steps:
 The RED LED is switched on.
 The light transmittance is detected by the photodiode and outputs as a voltage signal for 5 secs using DAQ
device input.
 The generated signal is cut into a section containing time between 3 secs to 8 seconds
 The DC (average) value between 3 to 8 secs is calculated
 The residual's peak to peak (AC) voltage value is found out.
 The time interval in between peaks is found.
 The peak to peak time interval obtained is divided by 60 in order to obtain the pulse rate.
All the above steps are performed by the sub diagram placed in the second frame of the flat sequence
structure.
1
2
R2
R1
1
2
3
R7
R6
R5
R4
R3
Q1
C3
C2
C1
R11
R10
R8
R9
Q3
Q2
+
-
U3
3
2
6
74
+
-
U1
3
2
6
74
+
-
U5
3
2
6
74
+
-
U4
3
2
6
74
U2
1
3 4
5
8 VS
-V FDB
OUT
COM
+
-
U63
2
6
74
D1
D2
DAQ OUTPUT
DAQ INPUT
A
B
J1
J2
Measurement of Pulse rate and SPo2 using Pulse Oximeter developed using LabVIEW
www.iosrjournals.org 24 | Page
The third event turns on the IR LED and turns off the Red LED by generating step voltage using the DAQ
device; this is shown in the third frame of the flat sequence structure.
The fourth event includes is a repeat of the second step, however all values will be found for the IR signal
instead of the red LED signal. Also, it is unnecessary to find the peak to peak time interval for the IR signal
because the pulse rate should be the same for both LED signals, and therefore, calculating pulse rate from the
red LED only is sufficient. This is performed by the sub diagram placed in the fourth frame of the flat sequence
structure.
The fifth event turns off both Red and IR LEDs.
After these values are determined, the modulation ratio can be calculated by using the equation R = (AC/DC)
RED / (AC/DC) IR. Then, the empirical data is referenced in order to find the percentage of oxygenation.
Y= - 10.291 * X * X – 27.865 * X + 117.93
Fig 3(a): VI Block diagram of Pulse Oximeter for Turning on RED LED ON and OFF
Fig 3(b): VI Block diagram of Pulse Oximeter for turning IR LED ON and OFF
Measurement of Pulse rate and SPo2 using Pulse Oximeter developed using LabVIEW
www.iosrjournals.org 25 | Page
Fig 3(c): VI Block diagram of Pulse Oximeter for calculating percentage of oxygen
Fig 4: Front panel of Pulse Oximeter
Fig 4.10(c): Measurement of SPO2
IV. Results:
The measurements which were carried out on the system is in agreement with values measured with
standard BPL pulse Oximeter. The measurements were carried out on all age groups. The total measurements
calibrated with an accuracy of 98%. The error was not allowed beyond 2%. The sampled and measured data is
compared with the standard instrument. As the readings are in good agreement with standard instrument, the
Measurement of Pulse rate and SPo2 using Pulse Oximeter developed using LabVIEW
www.iosrjournals.org 26 | Page
measurements have been recorded on LabVIEW and displayed on the front panel shown in fig 4. Hence
Measurement of SPO2 using LabVIEW is also a part of integrated instrumentation system for patient’s
monitoring.
REFERENCES
Journal Papers:
[1]. Tytler JA, Seeley HF. The Nellcor N-101 pulse oximeter. A clinical evaluation in anaesthesia and intensive care. Anaesthesia 41:
302–305, 1986.
[2]. Matthes, K., Untersuchungen uber die sauerstoffsattigungen menschlichen arterienblutes, Arc. Exp. Pathol. Parmakol. 179, 689,
1935.
[3]. Wood, E. and Geraci, J.E., Photoelectric determination of arterial oxygen saturation in man, J. Lab Clin. Med., 34, 387, 1949.
[4]. Tytler JA, Seeley HF. The Nellcor N-101 pulse oximeter. A clinical evaluation in anaesthesia and intensive care. Anesthesia 41:
302–305, 1986.
Books:
[5]. Merrick, E.B. and T.J. Hayes, continuous, non invasive measurements of arterial blood oxygen level, Hewlett-Packard J., p 2
Oct.1976.
[6]. J Aoyagi, T., Kishi,T., Yamaguchi, K., and Watanabe,S., Improvement of ear piece oximator,in Proc. 13th Japan. Medical
Electronics and Biological Engineering Conf., Osaka 90,1974.
[7]. Technical Manual from National Instruments. www.NI.com
[8]. Virtual Instrumentation Using LabVIEW- Jovitha Jerome
Theses:
[9]. Yun-Thai Li, “ Pulse Oximetry “,Department of Electronic Engineering, University of Surrey, Guildford, GU2 7XH

More Related Content

What's hot

IRJET- Design and Implementation of Health Monitoring System
IRJET-  	  Design and Implementation of Health Monitoring SystemIRJET-  	  Design and Implementation of Health Monitoring System
IRJET- Design and Implementation of Health Monitoring SystemIRJET Journal
 
PATIENT HEALTH MONITORING SYSTEM USING IOT AND ANDROID
PATIENT HEALTH MONITORING SYSTEM USING IOT AND ANDROIDPATIENT HEALTH MONITORING SYSTEM USING IOT AND ANDROID
PATIENT HEALTH MONITORING SYSTEM USING IOT AND ANDROIDJournal For Research
 
Implementation Of Real Time IoT Based Health monitoring system
Implementation Of Real Time IoT Based Health monitoring systemImplementation Of Real Time IoT Based Health monitoring system
Implementation Of Real Time IoT Based Health monitoring systemkchakrireddy
 
Implementation Of Real Time IoT Based Health monitoring system
Implementation Of Real Time IoT Based Health monitoring systemImplementation Of Real Time IoT Based Health monitoring system
Implementation Of Real Time IoT Based Health monitoring systemkchakrireddy
 
IRJET - An Efficient Approach for Monitoring the Patient’s Condition usin...
IRJET -  	  An Efficient Approach for Monitoring the Patient’s Condition usin...IRJET -  	  An Efficient Approach for Monitoring the Patient’s Condition usin...
IRJET - An Efficient Approach for Monitoring the Patient’s Condition usin...IRJET Journal
 
IRJET- Design and Implementation of IOT Based Health Monitoring System Using ...
IRJET- Design and Implementation of IOT Based Health Monitoring System Using ...IRJET- Design and Implementation of IOT Based Health Monitoring System Using ...
IRJET- Design and Implementation of IOT Based Health Monitoring System Using ...IRJET Journal
 
Real Time ECG and Saline Level Monitoring System Using Arduino UNO Processor
Real Time ECG and Saline Level Monitoring System Using Arduino UNO ProcessorReal Time ECG and Saline Level Monitoring System Using Arduino UNO Processor
Real Time ECG and Saline Level Monitoring System Using Arduino UNO ProcessorAssociate Professor in VSB Coimbatore
 
IRJET- Patient Healthcare System using IoT
IRJET- Patient Healthcare System using IoTIRJET- Patient Healthcare System using IoT
IRJET- Patient Healthcare System using IoTIRJET Journal
 
Survey of a Symptoms Monitoring System for Covid-19
Survey of a Symptoms Monitoring System for Covid-19Survey of a Symptoms Monitoring System for Covid-19
Survey of a Symptoms Monitoring System for Covid-19vivatechijri
 
Patient Health Monitoring System using IOT
Patient Health Monitoring System using IOTPatient Health Monitoring System using IOT
Patient Health Monitoring System using IOTIRJET Journal
 
Automatic and low cost saline level monitoring system using wireless bluetoot...
Automatic and low cost saline level monitoring system using wireless bluetoot...Automatic and low cost saline level monitoring system using wireless bluetoot...
Automatic and low cost saline level monitoring system using wireless bluetoot...eSAT Journals
 
IRJET - IoT based Health Monitoring System and Telemedicine
IRJET - IoT based Health Monitoring System and TelemedicineIRJET - IoT based Health Monitoring System and Telemedicine
IRJET - IoT based Health Monitoring System and TelemedicineIRJET Journal
 
IRJET- An Efficient Health Care System for Human Anatomy using IoT
IRJET- An Efficient Health Care System for Human Anatomy using IoTIRJET- An Efficient Health Care System for Human Anatomy using IoT
IRJET- An Efficient Health Care System for Human Anatomy using IoTIRJET Journal
 
Review: Wireless Biomedical Parameter Monitoring System
Review: Wireless Biomedical Parameter Monitoring SystemReview: Wireless Biomedical Parameter Monitoring System
Review: Wireless Biomedical Parameter Monitoring SystemIJERA Editor
 
Internet of things–based vital sign monitoring system
Internet of things–based vital sign monitoring system Internet of things–based vital sign monitoring system
Internet of things–based vital sign monitoring system IJECEIAES
 
IRJET- Development of Portable Device for Measurement of Blood Glucose, T...
IRJET-  	  Development of Portable Device for Measurement of Blood Glucose, T...IRJET-  	  Development of Portable Device for Measurement of Blood Glucose, T...
IRJET- Development of Portable Device for Measurement of Blood Glucose, T...IRJET Journal
 
Business Plan: Health Monitoring System
Business Plan: Health Monitoring SystemBusiness Plan: Health Monitoring System
Business Plan: Health Monitoring SystemSunil Kumar
 
Vital jacket a wearable monitoring system with sms facility
Vital jacket a wearable monitoring system with   sms facilityVital jacket a wearable monitoring system with   sms facility
Vital jacket a wearable monitoring system with sms facilityIAEME Publication
 

What's hot (20)

IRJET- Design and Implementation of Health Monitoring System
IRJET-  	  Design and Implementation of Health Monitoring SystemIRJET-  	  Design and Implementation of Health Monitoring System
IRJET- Design and Implementation of Health Monitoring System
 
New ppt
New pptNew ppt
New ppt
 
PATIENT HEALTH MONITORING SYSTEM USING IOT AND ANDROID
PATIENT HEALTH MONITORING SYSTEM USING IOT AND ANDROIDPATIENT HEALTH MONITORING SYSTEM USING IOT AND ANDROID
PATIENT HEALTH MONITORING SYSTEM USING IOT AND ANDROID
 
Implementation Of Real Time IoT Based Health monitoring system
Implementation Of Real Time IoT Based Health monitoring systemImplementation Of Real Time IoT Based Health monitoring system
Implementation Of Real Time IoT Based Health monitoring system
 
Implementation Of Real Time IoT Based Health monitoring system
Implementation Of Real Time IoT Based Health monitoring systemImplementation Of Real Time IoT Based Health monitoring system
Implementation Of Real Time IoT Based Health monitoring system
 
IRJET - An Efficient Approach for Monitoring the Patient’s Condition usin...
IRJET -  	  An Efficient Approach for Monitoring the Patient’s Condition usin...IRJET -  	  An Efficient Approach for Monitoring the Patient’s Condition usin...
IRJET - An Efficient Approach for Monitoring the Patient’s Condition usin...
 
IRJET- Design and Implementation of IOT Based Health Monitoring System Using ...
IRJET- Design and Implementation of IOT Based Health Monitoring System Using ...IRJET- Design and Implementation of IOT Based Health Monitoring System Using ...
IRJET- Design and Implementation of IOT Based Health Monitoring System Using ...
 
Real Time ECG and Saline Level Monitoring System Using Arduino UNO Processor
Real Time ECG and Saline Level Monitoring System Using Arduino UNO ProcessorReal Time ECG and Saline Level Monitoring System Using Arduino UNO Processor
Real Time ECG and Saline Level Monitoring System Using Arduino UNO Processor
 
Secured Smart Healthcare Monitoring System based on IOT
Secured Smart Healthcare Monitoring System based on IOTSecured Smart Healthcare Monitoring System based on IOT
Secured Smart Healthcare Monitoring System based on IOT
 
IRJET- Patient Healthcare System using IoT
IRJET- Patient Healthcare System using IoTIRJET- Patient Healthcare System using IoT
IRJET- Patient Healthcare System using IoT
 
Survey of a Symptoms Monitoring System for Covid-19
Survey of a Symptoms Monitoring System for Covid-19Survey of a Symptoms Monitoring System for Covid-19
Survey of a Symptoms Monitoring System for Covid-19
 
Patient Health Monitoring System using IOT
Patient Health Monitoring System using IOTPatient Health Monitoring System using IOT
Patient Health Monitoring System using IOT
 
Automatic and low cost saline level monitoring system using wireless bluetoot...
Automatic and low cost saline level monitoring system using wireless bluetoot...Automatic and low cost saline level monitoring system using wireless bluetoot...
Automatic and low cost saline level monitoring system using wireless bluetoot...
 
IRJET - IoT based Health Monitoring System and Telemedicine
IRJET - IoT based Health Monitoring System and TelemedicineIRJET - IoT based Health Monitoring System and Telemedicine
IRJET - IoT based Health Monitoring System and Telemedicine
 
IRJET- An Efficient Health Care System for Human Anatomy using IoT
IRJET- An Efficient Health Care System for Human Anatomy using IoTIRJET- An Efficient Health Care System for Human Anatomy using IoT
IRJET- An Efficient Health Care System for Human Anatomy using IoT
 
Review: Wireless Biomedical Parameter Monitoring System
Review: Wireless Biomedical Parameter Monitoring SystemReview: Wireless Biomedical Parameter Monitoring System
Review: Wireless Biomedical Parameter Monitoring System
 
Internet of things–based vital sign monitoring system
Internet of things–based vital sign monitoring system Internet of things–based vital sign monitoring system
Internet of things–based vital sign monitoring system
 
IRJET- Development of Portable Device for Measurement of Blood Glucose, T...
IRJET-  	  Development of Portable Device for Measurement of Blood Glucose, T...IRJET-  	  Development of Portable Device for Measurement of Blood Glucose, T...
IRJET- Development of Portable Device for Measurement of Blood Glucose, T...
 
Business Plan: Health Monitoring System
Business Plan: Health Monitoring SystemBusiness Plan: Health Monitoring System
Business Plan: Health Monitoring System
 
Vital jacket a wearable monitoring system with sms facility
Vital jacket a wearable monitoring system with   sms facilityVital jacket a wearable monitoring system with   sms facility
Vital jacket a wearable monitoring system with sms facility
 

Viewers also liked

Latest Developments in WirelessNetworking and Wireless Security
Latest Developments in WirelessNetworking and Wireless SecurityLatest Developments in WirelessNetworking and Wireless Security
Latest Developments in WirelessNetworking and Wireless SecurityIOSR Journals
 
An Effective Heuristic Approach for Hiding Sensitive Patterns in Databases
An Effective Heuristic Approach for Hiding Sensitive Patterns in  DatabasesAn Effective Heuristic Approach for Hiding Sensitive Patterns in  Databases
An Effective Heuristic Approach for Hiding Sensitive Patterns in DatabasesIOSR Journals
 
Supply Insensitivity Temperature Sensor for Microprocessor Thermal Monitoring...
Supply Insensitivity Temperature Sensor for Microprocessor Thermal Monitoring...Supply Insensitivity Temperature Sensor for Microprocessor Thermal Monitoring...
Supply Insensitivity Temperature Sensor for Microprocessor Thermal Monitoring...IOSR Journals
 
A Review on Image Inpainting to Restore Image
A Review on Image Inpainting to Restore ImageA Review on Image Inpainting to Restore Image
A Review on Image Inpainting to Restore ImageIOSR Journals
 
A Soft-Switching DC/DC Converter with High Voltage Gain
A Soft-Switching DC/DC Converter with High Voltage GainA Soft-Switching DC/DC Converter with High Voltage Gain
A Soft-Switching DC/DC Converter with High Voltage GainIOSR Journals
 
Impact of Insect Resistant Cotton
Impact of Insect Resistant CottonImpact of Insect Resistant Cotton
Impact of Insect Resistant CottonIOSR Journals
 
Efficient Forecasting of Exchange rates with Recurrent FLANN
Efficient Forecasting of Exchange rates with Recurrent FLANNEfficient Forecasting of Exchange rates with Recurrent FLANN
Efficient Forecasting of Exchange rates with Recurrent FLANNIOSR Journals
 
A New Single-Stage Multilevel Type Full-Bridge Converter Applied to closed lo...
A New Single-Stage Multilevel Type Full-Bridge Converter Applied to closed lo...A New Single-Stage Multilevel Type Full-Bridge Converter Applied to closed lo...
A New Single-Stage Multilevel Type Full-Bridge Converter Applied to closed lo...IOSR Journals
 
An Overview on Gene Expression Analysis
An Overview on Gene Expression AnalysisAn Overview on Gene Expression Analysis
An Overview on Gene Expression AnalysisIOSR Journals
 
Environmental health Effect and Air Pollution from cigarette smokers in Cross...
Environmental health Effect and Air Pollution from cigarette smokers in Cross...Environmental health Effect and Air Pollution from cigarette smokers in Cross...
Environmental health Effect and Air Pollution from cigarette smokers in Cross...IOSR Journals
 
Multi Wavelet for Image Retrival Based On Using Texture and Color Querys
Multi Wavelet for Image Retrival Based On Using Texture and  Color QuerysMulti Wavelet for Image Retrival Based On Using Texture and  Color Querys
Multi Wavelet for Image Retrival Based On Using Texture and Color QuerysIOSR Journals
 
Peer To Peer Content Sharing On Wi-Fi Network For Smart Phones
Peer To Peer Content Sharing On Wi-Fi Network For Smart PhonesPeer To Peer Content Sharing On Wi-Fi Network For Smart Phones
Peer To Peer Content Sharing On Wi-Fi Network For Smart PhonesIOSR Journals
 
A Greybox Hospital Information System in the Medical Center Tobruk Libya base...
A Greybox Hospital Information System in the Medical Center Tobruk Libya base...A Greybox Hospital Information System in the Medical Center Tobruk Libya base...
A Greybox Hospital Information System in the Medical Center Tobruk Libya base...IOSR Journals
 
Design of a micro device to electrically separate and count wbc from whole blood
Design of a micro device to electrically separate and count wbc from whole bloodDesign of a micro device to electrically separate and count wbc from whole blood
Design of a micro device to electrically separate and count wbc from whole bloodIOSR Journals
 
The Delivery of Web Mining in Healthcare System on Cloud Computing
The Delivery of Web Mining in Healthcare System on Cloud ComputingThe Delivery of Web Mining in Healthcare System on Cloud Computing
The Delivery of Web Mining in Healthcare System on Cloud ComputingIOSR Journals
 
Adjustment of Cost 231 Hata Path Model For Cellular Transmission in Rivers State
Adjustment of Cost 231 Hata Path Model For Cellular Transmission in Rivers StateAdjustment of Cost 231 Hata Path Model For Cellular Transmission in Rivers State
Adjustment of Cost 231 Hata Path Model For Cellular Transmission in Rivers StateIOSR Journals
 

Viewers also liked (20)

REAL TIME VITAL SIGN MONITORING USING NI LABVIEW
REAL TIME VITAL SIGN MONITORING USING NI LABVIEWREAL TIME VITAL SIGN MONITORING USING NI LABVIEW
REAL TIME VITAL SIGN MONITORING USING NI LABVIEW
 
Latest Developments in WirelessNetworking and Wireless Security
Latest Developments in WirelessNetworking and Wireless SecurityLatest Developments in WirelessNetworking and Wireless Security
Latest Developments in WirelessNetworking and Wireless Security
 
An Effective Heuristic Approach for Hiding Sensitive Patterns in Databases
An Effective Heuristic Approach for Hiding Sensitive Patterns in  DatabasesAn Effective Heuristic Approach for Hiding Sensitive Patterns in  Databases
An Effective Heuristic Approach for Hiding Sensitive Patterns in Databases
 
A01450131
A01450131A01450131
A01450131
 
Supply Insensitivity Temperature Sensor for Microprocessor Thermal Monitoring...
Supply Insensitivity Temperature Sensor for Microprocessor Thermal Monitoring...Supply Insensitivity Temperature Sensor for Microprocessor Thermal Monitoring...
Supply Insensitivity Temperature Sensor for Microprocessor Thermal Monitoring...
 
A Review on Image Inpainting to Restore Image
A Review on Image Inpainting to Restore ImageA Review on Image Inpainting to Restore Image
A Review on Image Inpainting to Restore Image
 
A Soft-Switching DC/DC Converter with High Voltage Gain
A Soft-Switching DC/DC Converter with High Voltage GainA Soft-Switching DC/DC Converter with High Voltage Gain
A Soft-Switching DC/DC Converter with High Voltage Gain
 
Impact of Insect Resistant Cotton
Impact of Insect Resistant CottonImpact of Insect Resistant Cotton
Impact of Insect Resistant Cotton
 
F0523840
F0523840F0523840
F0523840
 
Efficient Forecasting of Exchange rates with Recurrent FLANN
Efficient Forecasting of Exchange rates with Recurrent FLANNEfficient Forecasting of Exchange rates with Recurrent FLANN
Efficient Forecasting of Exchange rates with Recurrent FLANN
 
A New Single-Stage Multilevel Type Full-Bridge Converter Applied to closed lo...
A New Single-Stage Multilevel Type Full-Bridge Converter Applied to closed lo...A New Single-Stage Multilevel Type Full-Bridge Converter Applied to closed lo...
A New Single-Stage Multilevel Type Full-Bridge Converter Applied to closed lo...
 
An Overview on Gene Expression Analysis
An Overview on Gene Expression AnalysisAn Overview on Gene Expression Analysis
An Overview on Gene Expression Analysis
 
Environmental health Effect and Air Pollution from cigarette smokers in Cross...
Environmental health Effect and Air Pollution from cigarette smokers in Cross...Environmental health Effect and Air Pollution from cigarette smokers in Cross...
Environmental health Effect and Air Pollution from cigarette smokers in Cross...
 
Multi Wavelet for Image Retrival Based On Using Texture and Color Querys
Multi Wavelet for Image Retrival Based On Using Texture and  Color QuerysMulti Wavelet for Image Retrival Based On Using Texture and  Color Querys
Multi Wavelet for Image Retrival Based On Using Texture and Color Querys
 
K0956568
K0956568K0956568
K0956568
 
Peer To Peer Content Sharing On Wi-Fi Network For Smart Phones
Peer To Peer Content Sharing On Wi-Fi Network For Smart PhonesPeer To Peer Content Sharing On Wi-Fi Network For Smart Phones
Peer To Peer Content Sharing On Wi-Fi Network For Smart Phones
 
A Greybox Hospital Information System in the Medical Center Tobruk Libya base...
A Greybox Hospital Information System in the Medical Center Tobruk Libya base...A Greybox Hospital Information System in the Medical Center Tobruk Libya base...
A Greybox Hospital Information System in the Medical Center Tobruk Libya base...
 
Design of a micro device to electrically separate and count wbc from whole blood
Design of a micro device to electrically separate and count wbc from whole bloodDesign of a micro device to electrically separate and count wbc from whole blood
Design of a micro device to electrically separate and count wbc from whole blood
 
The Delivery of Web Mining in Healthcare System on Cloud Computing
The Delivery of Web Mining in Healthcare System on Cloud ComputingThe Delivery of Web Mining in Healthcare System on Cloud Computing
The Delivery of Web Mining in Healthcare System on Cloud Computing
 
Adjustment of Cost 231 Hata Path Model For Cellular Transmission in Rivers State
Adjustment of Cost 231 Hata Path Model For Cellular Transmission in Rivers StateAdjustment of Cost 231 Hata Path Model For Cellular Transmission in Rivers State
Adjustment of Cost 231 Hata Path Model For Cellular Transmission in Rivers State
 

Similar to Measurement of Pulse rate and SPo2 using Pulse Oximeter developed using LabVIEW

PulseOxymetry_AN_Finalv3p1
PulseOxymetry_AN_Finalv3p1PulseOxymetry_AN_Finalv3p1
PulseOxymetry_AN_Finalv3p1Ahmed Ghouri
 
B041221317
B041221317B041221317
B041221317IOSR-JEN
 
IRJET- R–Peak Detection of ECG Signal using Thresholding Method
IRJET- R–Peak Detection of ECG Signal using Thresholding MethodIRJET- R–Peak Detection of ECG Signal using Thresholding Method
IRJET- R–Peak Detection of ECG Signal using Thresholding MethodIRJET Journal
 
Development of a Respiration Rate Meter –A Low-Cost Design Approach
Development  of  a  Respiration Rate Meter –A Low-Cost Design ApproachDevelopment  of  a  Respiration Rate Meter –A Low-Cost Design Approach
Development of a Respiration Rate Meter –A Low-Cost Design Approachhiij
 
IRJET- R Peak Detection with Diagnosis of Arrhythmia using Adaptive Filte...
IRJET-  	  R Peak Detection with Diagnosis of Arrhythmia using Adaptive Filte...IRJET-  	  R Peak Detection with Diagnosis of Arrhythmia using Adaptive Filte...
IRJET- R Peak Detection with Diagnosis of Arrhythmia using Adaptive Filte...IRJET Journal
 
A Wireless Physiological Monitoring System for Hyperbaric Oxygen Chamber
A Wireless Physiological Monitoring System for Hyperbaric Oxygen ChamberA Wireless Physiological Monitoring System for Hyperbaric Oxygen Chamber
A Wireless Physiological Monitoring System for Hyperbaric Oxygen ChamberIJRES Journal
 
A first response microcontroller based
A first response microcontroller basedA first response microcontroller based
A first response microcontroller basedIJCI JOURNAL
 
Pulse_Oximeter_SoC
Pulse_Oximeter_SoCPulse_Oximeter_SoC
Pulse_Oximeter_SoCTianhao Li
 
Patient Monitoring System
Patient Monitoring SystemPatient Monitoring System
Patient Monitoring SystemIJERA Editor
 
Design and development of electro optical system for acquisition of ppg signa...
Design and development of electro optical system for acquisition of ppg signa...Design and development of electro optical system for acquisition of ppg signa...
Design and development of electro optical system for acquisition of ppg signa...eSAT Publishing House
 
IRJET- Patient Monitoring System
IRJET- Patient Monitoring SystemIRJET- Patient Monitoring System
IRJET- Patient Monitoring SystemIRJET Journal
 
Automatic RR Interval Measurement from Noisy Heart Sound Signal Smart Stethos...
Automatic RR Interval Measurement from Noisy Heart Sound Signal Smart Stethos...Automatic RR Interval Measurement from Noisy Heart Sound Signal Smart Stethos...
Automatic RR Interval Measurement from Noisy Heart Sound Signal Smart Stethos...Editor IJMTER
 
E041203029033
E041203029033E041203029033
E041203029033IOSR-JEN
 
Design and Implementation of Real Time Remote Supervisory System
Design and Implementation of Real Time Remote Supervisory SystemDesign and Implementation of Real Time Remote Supervisory System
Design and Implementation of Real Time Remote Supervisory SystemIJERA Editor
 
Identification of Myocardial Infarction from Multi-Lead ECG signal
Identification of Myocardial Infarction from Multi-Lead ECG signalIdentification of Myocardial Infarction from Multi-Lead ECG signal
Identification of Myocardial Infarction from Multi-Lead ECG signalIJERA Editor
 
Cardio Logical Signal Processing for Arrhythmia Detection with Comparative An...
Cardio Logical Signal Processing for Arrhythmia Detection with Comparative An...Cardio Logical Signal Processing for Arrhythmia Detection with Comparative An...
Cardio Logical Signal Processing for Arrhythmia Detection with Comparative An...IRJET Journal
 
Ecg based heart rate monitoring system implementation using fpga for low powe...
Ecg based heart rate monitoring system implementation using fpga for low powe...Ecg based heart rate monitoring system implementation using fpga for low powe...
Ecg based heart rate monitoring system implementation using fpga for low powe...eSAT Journals
 

Similar to Measurement of Pulse rate and SPo2 using Pulse Oximeter developed using LabVIEW (20)

PulseOxymetry_AN_Finalv3p1
PulseOxymetry_AN_Finalv3p1PulseOxymetry_AN_Finalv3p1
PulseOxymetry_AN_Finalv3p1
 
B041221317
B041221317B041221317
B041221317
 
IRJET- R–Peak Detection of ECG Signal using Thresholding Method
IRJET- R–Peak Detection of ECG Signal using Thresholding MethodIRJET- R–Peak Detection of ECG Signal using Thresholding Method
IRJET- R–Peak Detection of ECG Signal using Thresholding Method
 
FinalReport
FinalReportFinalReport
FinalReport
 
Development of a Respiration Rate Meter –A Low-Cost Design Approach
Development  of  a  Respiration Rate Meter –A Low-Cost Design ApproachDevelopment  of  a  Respiration Rate Meter –A Low-Cost Design Approach
Development of a Respiration Rate Meter –A Low-Cost Design Approach
 
IRJET- R Peak Detection with Diagnosis of Arrhythmia using Adaptive Filte...
IRJET-  	  R Peak Detection with Diagnosis of Arrhythmia using Adaptive Filte...IRJET-  	  R Peak Detection with Diagnosis of Arrhythmia using Adaptive Filte...
IRJET- R Peak Detection with Diagnosis of Arrhythmia using Adaptive Filte...
 
A Wireless Physiological Monitoring System for Hyperbaric Oxygen Chamber
A Wireless Physiological Monitoring System for Hyperbaric Oxygen ChamberA Wireless Physiological Monitoring System for Hyperbaric Oxygen Chamber
A Wireless Physiological Monitoring System for Hyperbaric Oxygen Chamber
 
A first response microcontroller based
A first response microcontroller basedA first response microcontroller based
A first response microcontroller based
 
Pulse_Oximeter_SoC
Pulse_Oximeter_SoCPulse_Oximeter_SoC
Pulse_Oximeter_SoC
 
Patient Monitoring System
Patient Monitoring SystemPatient Monitoring System
Patient Monitoring System
 
IJET-V3I1P26
IJET-V3I1P26IJET-V3I1P26
IJET-V3I1P26
 
Oximeter
OximeterOximeter
Oximeter
 
Design and development of electro optical system for acquisition of ppg signa...
Design and development of electro optical system for acquisition of ppg signa...Design and development of electro optical system for acquisition of ppg signa...
Design and development of electro optical system for acquisition of ppg signa...
 
IRJET- Patient Monitoring System
IRJET- Patient Monitoring SystemIRJET- Patient Monitoring System
IRJET- Patient Monitoring System
 
Automatic RR Interval Measurement from Noisy Heart Sound Signal Smart Stethos...
Automatic RR Interval Measurement from Noisy Heart Sound Signal Smart Stethos...Automatic RR Interval Measurement from Noisy Heart Sound Signal Smart Stethos...
Automatic RR Interval Measurement from Noisy Heart Sound Signal Smart Stethos...
 
E041203029033
E041203029033E041203029033
E041203029033
 
Design and Implementation of Real Time Remote Supervisory System
Design and Implementation of Real Time Remote Supervisory SystemDesign and Implementation of Real Time Remote Supervisory System
Design and Implementation of Real Time Remote Supervisory System
 
Identification of Myocardial Infarction from Multi-Lead ECG signal
Identification of Myocardial Infarction from Multi-Lead ECG signalIdentification of Myocardial Infarction from Multi-Lead ECG signal
Identification of Myocardial Infarction from Multi-Lead ECG signal
 
Cardio Logical Signal Processing for Arrhythmia Detection with Comparative An...
Cardio Logical Signal Processing for Arrhythmia Detection with Comparative An...Cardio Logical Signal Processing for Arrhythmia Detection with Comparative An...
Cardio Logical Signal Processing for Arrhythmia Detection with Comparative An...
 
Ecg based heart rate monitoring system implementation using fpga for low powe...
Ecg based heart rate monitoring system implementation using fpga for low powe...Ecg based heart rate monitoring system implementation using fpga for low powe...
Ecg based heart rate monitoring system implementation using fpga for low powe...
 

More from IOSR Journals (20)

A011140104
A011140104A011140104
A011140104
 
M0111397100
M0111397100M0111397100
M0111397100
 
L011138596
L011138596L011138596
L011138596
 
K011138084
K011138084K011138084
K011138084
 
J011137479
J011137479J011137479
J011137479
 
I011136673
I011136673I011136673
I011136673
 
G011134454
G011134454G011134454
G011134454
 
H011135565
H011135565H011135565
H011135565
 
F011134043
F011134043F011134043
F011134043
 
E011133639
E011133639E011133639
E011133639
 
D011132635
D011132635D011132635
D011132635
 
C011131925
C011131925C011131925
C011131925
 
B011130918
B011130918B011130918
B011130918
 
A011130108
A011130108A011130108
A011130108
 
I011125160
I011125160I011125160
I011125160
 
H011124050
H011124050H011124050
H011124050
 
G011123539
G011123539G011123539
G011123539
 
F011123134
F011123134F011123134
F011123134
 
E011122530
E011122530E011122530
E011122530
 
D011121524
D011121524D011121524
D011121524
 

Recently uploaded

Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Christo Ananth
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations120cr0395
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...ranjana rawat
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130Suhani Kapoor
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVRajaP95
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingrakeshbaidya232001
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile servicerehmti665
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxwendy cai
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxAsutosh Ranjan
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Dr.Costas Sachpazis
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxpranjaldaimarysona
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSSIVASHANKAR N
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 

Recently uploaded (20)

Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile service
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptx
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptx
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptxExploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
 

Measurement of Pulse rate and SPo2 using Pulse Oximeter developed using LabVIEW

  • 1. IOSR Journal of Electrical and Electronics Engineering (IOSR-JEEE) e-ISSN: 2278-1676,p-ISSN: 2320-3331, Volume 8, Issue 1 (Nov. - Dec. 2013), PP 22-26 www.iosrjournals.org www.iosrjournals.org 22 | Page Measurement of Pulse rate and SPo2 using Pulse Oximeter developed using LabVIEW T.Bheema lingaiah1 , D.Hanumesh Kumar2 , C.Nagaraja2 1. Dept. of Biomedical Engineering, Jimma Institute of Technology, Jimma University, Jimma, ETHIOPIA, 2. Dept of Instrumentation, Sri Krishnadevaraya University, Anantapur, Andhra Pradesh, India. Abstract: The objective of this study is to develop a pulse Oximeter for the determination of pulse rate and percentage of oxygen in the blood of a patient. To determine these parameters the light is transmitted through the fingertip using a photodiode as a sensor and two LED’S (RED & IR) as a light source. The photo diode detects the light and the DAQ device outputs a voltage corresponding to the amount of light detected, and the final signal is a pulse. To determine the pulse rate, first the time that elapses between two successive peaks must be determined. Second to calculate the percentage of oxygen, AC & DC voltages must be determined. Based on voltages the modulation ratio is calculated, which is the ratio of magnitude of RED waveform to that of IR waveform. Keywords: DAQ; sensor; signal processing; I. INTRODUCTION Pulse oximetery has been one of the most significant technological advances in clinical monitoring in the last two decades. Pulse oximetery is a non-invasive photometric technique that provides information about the arterial blood oxygen saturation (SpO2) and heart rate, and has widespread clinical applications. The use of pulse oximeters has been described in many settings: hospital, outpatient, domiciliary use and in veterinary clinics [6] . Pulse oximeters determine arterial blood oxygen saturation by measuring the light absorbance of tissue at two different wavelengths and using the arterial blood pulsation to differentiate between absorbance of arterial blood and other absorbers. A good choice of wavelength is where there are large differences in the extinction coefficients of deoxyhaemoglobin and oxyhaemoglobin. Another criterion for the wavelength selection is the relative flatness of the absorption spectra around the chosen wavelength. The two conventional wavelengths used in pulse oximetery are 660 nm (red) and 940 nm (near infrared) [1, 2] . Fig1: Functional Block diagram of Pulse Oximeter II. Instrumentation: The block diagram of pulse Oximeter is shown in the fig 1. It consists of the following functional blocks 1. Personal Computer 2. Constant current source 3. Finger probe 4. Signal conditioning unit
  • 2. Measurement of Pulse rate and SPo2 using Pulse Oximeter developed using LabVIEW www.iosrjournals.org 23 | Page 5. Active filter 6. DAQ The functional approach to the system is described below. The constant current source section consists of transistorized current source for illuminating RED and IR LED’s. The photo detector detects the intensity of light transmitted through the finger. The output of the photo detector is amplified and processed by signal conditioning unit. The signal conditioning unit consists of a voltage follower, 50 Hz noise filter and an amplifier with an adjustable gain. The output of signal conditioning unit is applied to the active low pass filter which eliminates the noises induced by the power supply as well as due to the operations of active components involved in the circuit. The output of the filter is applied to the system for processing through LabVIEW [8] and to display the result through the DAQ. The switching signal for the constant current source to select RED an IR LEDs will be generated within the system using LabVIEW and sent to the source through the ports of DAQ. The complete circuit diagram of pulse Oximeter is shown in fig 2. Fig 2: Circuit diagram of Pulse Oximeter III. Software Development: Lab VIEW program is to calculate:  Percent oxygenation  Pulse rate The percent oxygen [3, 5] in the blood of a patient can be calculated by measuring the amount of light that is transmitted through the fingertip using a photodiode as a sensor and two LEDs (red and IR) as the light source. The photodiode detects the transmitted light and the DAQ device outputs a voltage that corresponds to the amount of light detected. The final signal appears as the waveform of a pulse. There will be two waveforms: one signal for the red LED and a second for the IR LED. Once these signals are generated using the DAQ device, several measurements are made. First, the amount of time that elapses in between peaks will be determined in order to calculate the pulse rate. Second, the AC and DC of the voltage signals will be determined in order to calculate the percent of oxygenation. Once these values are found, the modulation ratio [4] is calculated. The modulation ratio is essentially the ratio of the magnitude of the red waveform to that of the IR waveform [9] . To be able to record and calculate all of these measurements, the code is split into a series of events that occur from left to right of our code. The first event that occurs is turning ON the red LED by generating step voltage using the DAQ [7] device, this is shown in the first frame of the flat sequence structure used to execute the developed code. Then, the second event occurs which includes several steps:  The RED LED is switched on.  The light transmittance is detected by the photodiode and outputs as a voltage signal for 5 secs using DAQ device input.  The generated signal is cut into a section containing time between 3 secs to 8 seconds  The DC (average) value between 3 to 8 secs is calculated  The residual's peak to peak (AC) voltage value is found out.  The time interval in between peaks is found.  The peak to peak time interval obtained is divided by 60 in order to obtain the pulse rate. All the above steps are performed by the sub diagram placed in the second frame of the flat sequence structure. 1 2 R2 R1 1 2 3 R7 R6 R5 R4 R3 Q1 C3 C2 C1 R11 R10 R8 R9 Q3 Q2 + - U3 3 2 6 74 + - U1 3 2 6 74 + - U5 3 2 6 74 + - U4 3 2 6 74 U2 1 3 4 5 8 VS -V FDB OUT COM + - U63 2 6 74 D1 D2 DAQ OUTPUT DAQ INPUT A B J1 J2
  • 3. Measurement of Pulse rate and SPo2 using Pulse Oximeter developed using LabVIEW www.iosrjournals.org 24 | Page The third event turns on the IR LED and turns off the Red LED by generating step voltage using the DAQ device; this is shown in the third frame of the flat sequence structure. The fourth event includes is a repeat of the second step, however all values will be found for the IR signal instead of the red LED signal. Also, it is unnecessary to find the peak to peak time interval for the IR signal because the pulse rate should be the same for both LED signals, and therefore, calculating pulse rate from the red LED only is sufficient. This is performed by the sub diagram placed in the fourth frame of the flat sequence structure. The fifth event turns off both Red and IR LEDs. After these values are determined, the modulation ratio can be calculated by using the equation R = (AC/DC) RED / (AC/DC) IR. Then, the empirical data is referenced in order to find the percentage of oxygenation. Y= - 10.291 * X * X – 27.865 * X + 117.93 Fig 3(a): VI Block diagram of Pulse Oximeter for Turning on RED LED ON and OFF Fig 3(b): VI Block diagram of Pulse Oximeter for turning IR LED ON and OFF
  • 4. Measurement of Pulse rate and SPo2 using Pulse Oximeter developed using LabVIEW www.iosrjournals.org 25 | Page Fig 3(c): VI Block diagram of Pulse Oximeter for calculating percentage of oxygen Fig 4: Front panel of Pulse Oximeter Fig 4.10(c): Measurement of SPO2 IV. Results: The measurements which were carried out on the system is in agreement with values measured with standard BPL pulse Oximeter. The measurements were carried out on all age groups. The total measurements calibrated with an accuracy of 98%. The error was not allowed beyond 2%. The sampled and measured data is compared with the standard instrument. As the readings are in good agreement with standard instrument, the
  • 5. Measurement of Pulse rate and SPo2 using Pulse Oximeter developed using LabVIEW www.iosrjournals.org 26 | Page measurements have been recorded on LabVIEW and displayed on the front panel shown in fig 4. Hence Measurement of SPO2 using LabVIEW is also a part of integrated instrumentation system for patient’s monitoring. REFERENCES Journal Papers: [1]. Tytler JA, Seeley HF. The Nellcor N-101 pulse oximeter. A clinical evaluation in anaesthesia and intensive care. Anaesthesia 41: 302–305, 1986. [2]. Matthes, K., Untersuchungen uber die sauerstoffsattigungen menschlichen arterienblutes, Arc. Exp. Pathol. Parmakol. 179, 689, 1935. [3]. Wood, E. and Geraci, J.E., Photoelectric determination of arterial oxygen saturation in man, J. Lab Clin. Med., 34, 387, 1949. [4]. Tytler JA, Seeley HF. The Nellcor N-101 pulse oximeter. A clinical evaluation in anaesthesia and intensive care. Anesthesia 41: 302–305, 1986. Books: [5]. Merrick, E.B. and T.J. Hayes, continuous, non invasive measurements of arterial blood oxygen level, Hewlett-Packard J., p 2 Oct.1976. [6]. J Aoyagi, T., Kishi,T., Yamaguchi, K., and Watanabe,S., Improvement of ear piece oximator,in Proc. 13th Japan. Medical Electronics and Biological Engineering Conf., Osaka 90,1974. [7]. Technical Manual from National Instruments. www.NI.com [8]. Virtual Instrumentation Using LabVIEW- Jovitha Jerome Theses: [9]. Yun-Thai Li, “ Pulse Oximetry “,Department of Electronic Engineering, University of Surrey, Guildford, GU2 7XH