0% found this document useful (0 votes)
166 views12 pages

Pulse Oximeter Using Arduino

The document outlines the design and development of a pulse oximeter using Arduino, aimed at providing a low-cost solution for measuring oxygen saturation (SpO2) and pulse rate. It details the components used, including the MAX30100 sensor and Arduino Nano, and explains the working principle based on photoplethysmography. The project emphasizes the importance of monitoring oxygen levels in various medical scenarios and suggests future improvements for accuracy and portability.

Uploaded by

ammarslaier4455
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
166 views12 pages

Pulse Oximeter Using Arduino

The document outlines the design and development of a pulse oximeter using Arduino, aimed at providing a low-cost solution for measuring oxygen saturation (SpO2) and pulse rate. It details the components used, including the MAX30100 sensor and Arduino Nano, and explains the working principle based on photoplethysmography. The project emphasizes the importance of monitoring oxygen levels in various medical scenarios and suggests future improvements for accuracy and portability.

Uploaded by

ammarslaier4455
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 12

Pulse Oximeter using

Arduino
“Design and development of pulse oximeter”

SUBJECT : Physiology

UNIVERSITY: Mehran
University of Engineering and Presented by :
Technology 23bm041 [Areesha]
23bm042 [Ayat]
DEPARTMENT: Biomedical 23bm012 [Areej ]
Engineering. 23bm024 [Alishba ]
INTRODUCTION:
• "A pulse oximeter is a non-invasive medical device that measures the oxygen saturation level
(Sp02) by shining light through the Skin and detect how much Oxygen is in the Blood.”

• Purpose of the Project:


. "The purpose of this project is to design and build a pulse oximeter using Arduino to measure
Sp02 levels, providing a low-cost solution for health monitoring.“

• Why is it Important?
• "Monitoring oxygen saturation is crucial in detecting conditions like hypoxia, which can be
life-threatening. Pulse oximeters are used in hospitals, clinics, and even at home to monitor
patients with respiratory conditions, during surgery, or in emergencies."
OBJECTIVE:
• To design and build a pulse oximeter using the MAX30100 sensor, Arduino Nano, and a display to measure
oxygen saturation and pulse rate.
• The project aims to provide a compact, affordable, and functional prototype of a pulse oximeter.

Requirements (Components):
1. MAX30100 (Pulse Oximeter Sensor) : A sensor used to measure both oxygen saturation (Sp02) and pulse
rate (heart rate). It uses a combination of light emitters and detectors to estimate the levels of oxygen in the
blood.
2. Arduino Nano : A compact microcontroller board based on the ATmega328. It processes data from the
sensor and drives the output to the display. The Nano is ideal for small-scale projects due to its size and
versatility.
3. 0.96" OLED Display : A small, clear display used to show the pulse rate and oxygen saturation levels. It's
efficient and can easily fit within compact devices.
4. 4.7 kg Resistors : These resistors control the current flow in the circuit, ensuring that components like the
sensor and display receive the correct amount of power.
5. Breadboard : A platform used to build and test the circuit without soldering. It allows easy modifications
and connections between components.
• THEORY:
• Pulse Oximeter Working
Principle:
• A pulse oximeter is a non-invasive
device used to measure the oxygen
saturation (SpO2) level in the blood.
It works based on the principle of
photoplethysmography (PPG),
which measures the changes in
blood volume in the tissues using
light.
• Two types of light-red light
(around 660 nm) and infrared light
(around 940 nm)-are emitted by the
sensor, and their absorption by
oxygenated and deoxygenated
hemoglobin is measured.
Key Concepts:

• Oxygen Saturation (SpO2): It indicates the percentage of hemoglobin that is


oxygen-saturated in the blood.
• Photoplethysmography (PPG): This technique helps measure the volumetric
changes in blood through light absorption.
• Light Absorption: Oxygenated hemoglobin absorbs more infrared light, while
deoxygenated hemoglobin absorbs more red light.

In this project, the MAX30100 sensor is used to emit light and detect the
absorption levels, which the Arduino Nano processes to calculate the SpO2 and
display it on the LED screen.
TYPES OF OXIMETER:

• Transmission-Type Oximeter : Two LEDs (red and


infrared) on one side Sensor on the opposite side
• How It Works: Measures oxygen by shining light through
a thin body part
• (e.g ,finger tip)
• Uses: Common in hospitals and for home monitoring.
• Reflection-Type Oximeter : Two LEDs and sensor on
the same side
• How It Works: Measures oxygen by shining light on the
skin and detecting reflected light
• Uses: Often used in hospitals for patients who can’t use
their fingers
CIRCUIT DIAGRAM:
• The circuit diagram of the pulse oximeter shows the
connection between theMAX30100 sensor, Arduino Nano,
LED display, resistors, and breadboard.
• 1. MAX30100 Sensor
• • It is connected to the Arduino Nano using 12C
communication (SCL and SDA pins).
• 2. Resistors (4.7 kg):
• • Pull-up resistors are used on the 12C lines (SCL and
SDA).
• 3. Arduino Nano:
• • Powers and processes data from theMAX30100
sensor. It also sends the results to the display
• .4. 0.96" OLED Display:
• • Connected to the Arduino to display real-time SpO2,
and pulse rate data.
• 5. Breadboard:
• • Used to assemble the components together for easy
testing.
WORKING PRINCIPLE:
1. Sensor Operation:
• The MAX30100 emits two types of light (red and infrared) and detects
the amount absorbed by the blood.

2. Signal Processing:
• The Arduino Nano receives raw data from the MAX30100 sensor,
processes it using an algorithm, and computes the oxygen saturation
and pulse rate.

3. Display Output:
• The calculated values are then displayed on the OLED screen in real-
time, showing both SpO and pulse rate.
PROCEDURE:
• Connections:
• 1. MAX30100 to Arduino Nano:
• VIN (Power Input) of MAX30100 connects to 5V on the Arduino Nano.
• GND of MAX30100 connects to GND on the Arduino Nano.
• SCL (Clock) of MAX30100 connects to A5 (Analog Pin 5) on the Arduino
Nano.
• SDA (Data) of MAX30100 connects to A4 (Analog Pin 4) on the Arduino
Nano.
• Two 4.7kΩ resistors are used as pull-up resistors on the SCL and SDA
lines to ensure proper I2C communication.
2. OLED Display to Arduino Nano:

VCC (Power Input) of the OLED display connects to 5V on the Arduino Nano.

GND of the OLED display connects to GND on the Arduino Nano.

SCL (Clock) of the OLED display connects to A5 (Analog Pin 5) on the Arduino Nano.

SDA (Data) of the OLED display connects to A4 (Analog Pin 4) on the Arduino Nano.

12C Communication:
Both the MAX30100 sensor and theOLED display are using the same 12C communication pins (A4 for SDA
andA5 for SCL). The 2C bus allows multiple devices to share the same communication lines while using
different device addresses.

Power:
The entire circuit is powered through the Arduino Nano, which is supplied with 5V. The MAX30100 and OLED
display are both powered from the 5V line on the Arduino.
This setup allows the MAX30100 sensor to gather pulse oximetry data, which is processed by the Arduino
Nano and displayed on the OLED screen.
Results:
• The device should display a stable and accurate SpO2, and pulse rate, and it should respond
quickly to changes in oxygen levels or pulse rate during testing.• Any deviations from expected
values could indicate potential improvements in calibration or the need for more precise
components.

Conclusion:
• The pulse oximeter is an essential tool in modern healthcare for non-invasive monitoring of
oxygen saturation and heart rate.
• Through the integration of components like the MAX30100 sensor and Arduino Nano, we were
able to design a functional pulse oximeter that provides accurate, real-time data.• This project
demonstrates the potential for biomedical technology to improve patient care by offering
continuous and accessible monitoring options.
• Future improvements could involve enhancing the device's accuracy and portability, making it
even more reliable and user-friendly.
APPLICATION:
1. Respiratory Monitoring: Tracks oxygen levels conditions like COPD, asthma, and
pneumonia.
2. COVID-19: Monitors blood oxygen for early detection of silent hypoxia.

3. Anesthesia: Ensures safe oxygen levels during surgery.


4. Sleep Apnea: Helps diagnose and monitor sleep disorders.

5. Postoperative Recovery: Monitors oxygen levels after surgery.


6. Fitness and Sports: Used by athletes to track oxygen levels during exercise.
7. Neonatal Care: Monitors oxygen in premature and newborn babies.

8. Emergency Care: Provides quick oxygen data in critical situations.


9. Altitude Sickness: Prevents or manages oxygen deficiency at high altitudes.

10. Heart Conditions: Monitors oxygen in patients with chronic heart diseases.
11. Home Health: Used for regular at-home oxygen and heart rate monitoring.

You might also like