Close
0%
0%

Raksh:The 25$ earworn child pneumonia monitor

Raksh, named after the Sanskrit word “safeguard,” is a low cost (25$) bluetooth-based, ear-worn multi-parameter monitoring platform.

Similar projects worth following
Pneumonia has been labeled as the single largest cause of child mortality for the children under five in developing countries around the world. We propose a novel method to continuously monitor parameters like Respiration Rate, Heart Rate, Blood Oxygenation (SpO2) and Body Temperature in a noninvasive and nonobtrusive manner behind the ear.

The data is streamed using WiFi/BLE to the parent’s smartphone or a smart gateway device which uploads it to a server. This project also explores the opportunities for presenting patient vital signs from such a device to the remote health care workers and doctors.
The device also enables doctors to track if medication is effective by seeing changes in the various physiological parameters. This will enable health workers in rural areas that are extremely understaffed to assist more children. The device would also have alarm modes to alert parents to sudden onset of fever or difficulty breathing.

The Problem:

Pneumonia has been the cause of death for over two million children below the age of five.
Most of these deaths occur in developing nations in South East Asia and Africa.
Delay in diagnosis and lack of continuous monitoring increase the risk and cost of treatment. Early detection and providing timely treatments can reduce the mortality rate of pneumonia .
Community healthcare workers face a huge challenge in assessing and treating children in low to medium income countries.

Existing Systems:

Primary method for diagnosing pneumonia is by assessing whether the child has an elevated respiration rate greater than or equal to 40 breaths/min. The NPB-290 Nellor pulse oximetry device is a low cost stationary pulse oximeter that is currently being used.
For respiration sensing chest based Impedance Pneumography method is used in conjuction with ECG monitoring systems. Nasal thermistor based systems along with Hot wire anemometers have been commercially been used to find respiration rate.

Background:

I, Vignesh am a final year engineering student from Chennai, India. I've always been into biomedical sensing and combining electronics and biomedical engineering.

Inspired after playing Deus Ex: Human Revolution as a 16 year old, My adolescent my mind was blown away by the possibilities in front of me. Reading about the work done by Dr.Hugh Herr at the Biomechatronics lab and Dr.Rosalind Packard at the Affective Computing lab MIT media lab. I realized I wanted to work on wearable sensors, After seeing the unbelievable progress in Machine Learning for the past few years empowering doctors with Machine Learning for diagnostics is my current goal.
Along the way I've read statistics on pneumonia and wanted to do my path, I've also been forming a team to aid us in this.

Solution:

There was a need for an inexpensive yet accurate wearable diagnostic device which can continuously monitor vital parameters like Respiration Rate, Heart Rate, Blood Oxygenation and Body temperature to accurately identify pneumonia and thus enabling timely treatment.
Providing timely aid can make the difference between life or death for the child. Human and monetary resource which is limited in LMIC can be conserved by facilitating remote monitoring, thus enabling healthcare workers to provide better care to the community.

We propose a novel, inexpensive ear-worn device which would noninvasively and nonobtrusively monitor vital parameters like Respiration Rate, SpO2 levels, Heart Rate, Body temperature of a child to enable rapid diagnosis wirelessly.


System Design:




Respiration Rate Sensing:

One of the most frequently used methods to sense breathing pattern is to detect airflow using a nasal thermistor or a thermocouple sensor. We have chosen to use an IR noncontact thermopile array to measure the variation of the nasal temperature accurately using the MLX90614 noncontact infrared temperature sensor(TMP007 would be used in final design) which is pointed to the nasal passage. The sensor is smaller in size and comfortable when compared to nasal thermistors. As the child exhales, the nasal temperature increases which are picked up by the Infrared (IR) temperature sensor. The data is read at high speeds by the Microcontroller over the I2C bus. The sensor also detects ambient temperature which is used for calibration to identify threshold. The samples are compared with each other and the peaks are found. The internal timer is triggered to find the peak to peak time duration from which the respiration rate can be accurately found.

Heart Rate and Blood Oxygenation sensor:

Photoplethysmography (PPG) and Pulse Oximetry (SpO2) are carried out by a single sensor which is used to measure reflectance of three LEDs of different wavelengths. SpO2 is found by measuring the reflectance of 650 nm light in comparison with 940 nm light. Heart rate is measured by PPG wherein the change in blood volume is found by measuring reflectance of 850 nm light. The measurement of vital...

Read more »

  • 1 × Particle Photon or Redbear Duo ARM WIFI development board with the Broadcom BCM43438
  • 1 × MAX30100 Pulse Oximeter 4$ Magical accurate pulse oximeter sensor from maxim semiconductors thanks to the wearables revolution (http://goo.gl/JbpYi6)
  • 1 × MLX90614 IR temperature 4$ tiny IR non-contact temperature sensor for Respiration Sensing (http://goo.gl/NzXqyz)
  • 1 × LMT70 LMT70 accurate temperature sensor for measuring body temperature in earcanal
  • 1 × ADXL345 SPI accelerometer for actigraphy

View all 7 components

  • Prototype Version V1.0

    Vignesh Ravichandran09/19/2016 at 01:26 0 comments

    The prototype V1.0 is finally complete, Size was a chief concern for us and we put a low of effort to making it small to fit behind the ear. Use of Particle's Photon demanded more power use than any other BLE board, However thanks to the use of sleep modes we were able to make do with a 500mAh lipo battery for one day's battery life. As Photon needed a 5V power supply, For this the Pololu 5V Buck-Boost converter was used for increased efficiency.
    Not the best solder job I know, But hey it works :D.

    As for the sensors, V1.0 uses an MLX90614 IR temperature sensor to measure the nasal temperature for respiration sensing. Though I was working on porting the Si1143 to the Particle Photon, Deus-Ex Machina came in the form an chinese ebay parcel.
    The super cheap, teeny MAX30100 sensor had arrived (Glory be Flying Spaghetti Monster) after testing it with the kickass library written by oxullo in a Arduino Pro Mini, The sensor was providing excellent performance.
    Porting the library to the Particle Photon turned out to be a bit more difficult than I had assumed, A can of redbull helped me do the job. I've compiled the code natively using the Particle IDE(Based on Github Atom).

    The next few posts will be about getting a small 3d printed enclosure done for this and a post to walk through the code.
    I guess I also need to compare and validate the MAX30100 sensor against a clinical Pulse Oximetry sensor.



  • Pulse Oximetry & Heart Rate

    Vignesh Ravichandran09/07/2016 at 15:11 0 comments

    Photoplethysmography (PPG) and Pulse Oximetry (SpO2) are carried out by a single sensor which is used to measure reflectance of three LEDs of different wavelengths. SpO2 is found by measuring the reflectance of 650 nm light in comparison with 940 nm light. Heart rate is measured by PPG wherein the change in blood volume is found by measuring reflectance of 850 nm light. The measurement of vital signs by placing sensors and LEDs behind the earlobe has been validated by previous work.

    The Si1143 I2C light sensor was chosen for its small size and cost. The presence of an integrated amplifier and Analog to Digital Converter (ADC) has resulted in a lesser Bill of Materials (BOM). The Si1143 light sensor also has inbuilt LED drives which allow easy control over three LEDs. I'm currently toying with the MAX30100, Will post the results here shortly.

    Here is the heart rate data for 3 mins.


    Here is the SpO2 data for 3 mins

  • Pulse Oximetry & Heart Rate

    Vignesh Ravichandran09/07/2016 at 15:11 0 comments

    Photoplethysmography (PPG) and Pulse Oximetry (SpO2) are carried out by a single sensor which is used to measure reflectance of three LEDs of different wavelengths. SpO2 is found by measuring the reflectance of 650 nm light in comparison with 940 nm light. Heart rate is measured by PPG wherein the change in blood volume is found by measuring reflectance of 850 nm light. The measurement of vital signs by placing sensors and LEDs behind the earlobe has been validated by previous work.

    The Si1143 I2C light sensor was chosen for its small size and cost. The presence of an integrated amplifier and Analog to Digital Converter (ADC) has resulted in a lesser Bill of Materials (BOM). The Si1143 light sensor also has inbuilt LED drives which allow easy control over three LEDs. I'm currently toying with the MAX30100, Will post the results here shortly.

    Here is the heart rate data for 3 mins.


    Here is the SpO2 data for 3 mins

  • Respiration Sensing

    Vignesh Ravichandran09/07/2016 at 14:49 0 comments

    The variation of the nasal temperature is measured accurately using the MLX90614 noncontact infrared temperature sensor which is pointed to the nasal passage.

    The sensor is smaller in size and comfortable when compared to nasal thermistors. As the child exhales, the nasal temperature increases which are picked up by the Infrared (IR) temperature sensor. The data is read at high speeds by the Microcontroller over the I2C bus.

    The sensor also detects ambient temperature which is used for calibration to identify threshold. The samples are compared with each other and the peaks are found. The internal timer is triggered to find the peak to peak time duration from which the respiration rate can be accurately found.

    I've recorded some raw data from the MLX90614 sensor and had the data posted to plotly.
    Here is the raw respiration data I recorded for 3 mins.

  • First Prototype

    Vignesh Ravichandran09/04/2016 at 10:32 0 comments

    For the first prototype/ Proof of concept, I was not really worried about the size or power consumption and just wanted it to work properly.


    For this I decided to use a ESP8266 for the WIFI and cloud interfacing despite it's large power consumption.

    I chose the Cactus Micro R2 for it's price and small size(Needed to wear it behind the ear) and as it uses a Atmega 32u4, It was code compatible with the MLX90614 and Si1141 libraries. I will be posting logs on interfacing each sensor along with the data acquired.

    I used the Modern Devices Pulse Oximeter sensor for it's excellent documentation and ease of use. The sensor consists of an Si1143 ambient light sensor from Silicon Labs which measure the reflectance of 650nm,940nm and 850nm light.
    The aforementioned LED's are used along side it, The excellent feature of the sensor is it's inbuilt LED drivers and internal photodiode amp & ADC which makes the Pulse Oximeter small in size.


    For respiration sensing I used an MLX90614 IR noncontact sensor which sits below the nostril and monitors the change in nasal temperature.








  • Beginnings

    Vignesh Ravichandran08/28/2016 at 03:58 0 comments

    I grew up in the era of the IT boom in India. This gave us access to a wide range of information and opened our eyes to the many problems faced by kids our age in rural parts of India. I learnt that technology has an innate property for making lives better.

    I chanced to one day read the WHO study on mortality of children below the age of 5 and was learnt that Pneumonia was the largest cause of death.
    The mortality caused by pneumonia primarily affected developing countries like India, Nigeria and the lack of inexpensive adequate diagnosis tools for healthcare workers reduced the amount aid provided to these children.
    I then began doing some research on a low cost wearable multiparameter monitor to diagnose and track pneumonia in children.

    Design Sketch:






View all 6 project logs

Enjoy this project?

Share

Discussions

Prabhakar wrote 07/18/2021 at 09:28 point

Hi

Interesting project, have you done any work on HRV and early onset of aifb?

  Are you sure? yes | no

Pablogomez98 wrote 03/17/2021 at 11:57 point

Hello Raksh!! first of all congratulations for your project, It looks ver well done and for sure it will help the community. I'm working on a similar proejct using MLX90614 and MAX30100, but I'm not being able to get them work together...If you could be able to help me sometime It would be very greateful...Thank you so much!1 Best wishes

  Are you sure? yes | no

RohitX13 wrote 11/20/2019 at 08:08 point

Can i do this similar project for my final year? I'm from Odisha 

  Are you sure? yes | no

Similar Projects

Does this project spark your interest?

Become a member to follow this project and never miss any updates