SlideShare une entreprise Scribd logo
1  sur  3
Télécharger pour lire hors ligne
IOSR Journal of Computer Engineering (IOSR-JCE)
e-ISSN: 2278-0661,p-ISSN: 2278-8727, Volume 17, Issue 5, Ver. IV (Sep. – Oct. 2015), PP 79-81
www.iosrjournals.org
DOI: 10.9790/0661-17547981 www.iosrjournals.org 79 | Page
Cloud Based Vital Health Stats Monitoring using IoT
Shanmuga Sundaram B1
M.Tech (Software Systems), Birla Institute of Technology and Science, Pilani, Rajasthan, India
Abstract : While there are lot of devices and applications available for monitoring the vital health statistics of
human beings, there is still room for enhancement and improvement. This paper’s intention is to address one of
those perspectives. There are a lot of elderly people, whose children live abroad or at a long distance due to
work and other priorities. Monitoring the health of the parents and having a keen eye on their health on a daily
basis is a real challenge for the children living away from them. This challenge includes both communication
regarding health and delay in regular vital checks. With this cloud based health monitoring, which employs
Internet of Things (IoT) as a concept, the distance and the communication barrier can be overcome. This can
enable people monitor their parents’ health from a longer distance with consistency and reliability.
Keywords: Cloud, SaaS, IoT – Internet of Things, PUT – Person Under Test, AWS- Amazon Web Services,
Vitals, RDS - Relational Database Service, Monitor.
I. Introduction
Cloud has changed the paradigm of computing, data manipulation and presentation. The efficiency of
cloud combined with the evolution of Internet of Things, can help in resolving lot of problems faced in real life
and to enhance the existing digital trends. This paper’s objective is to consider one such scenario of
implementation using IoT[1] as a concept with a cloud base, to provide efficient remote monitoring and
reporting of vital health stats of a person.
Vitals are measurements of human body’s basic functions. These include body temperature, pulse rate,
respiration rate and blood pressure.
1.1 PICTORIAL REPRESENTATION
II. Internet of Things
Most of us think about being connected in terms of computers, tablets and smart phones. IoT describes
a world where just about anything can be connected and communicate in an intelligent fashion. In other words,
with the Internet of Things, the physical world is becoming one big information system. Based on this concept,
we can visualize an intelligent connection among medical instruments used for monitoring health stats like
blood pressure monitor, thermometer etc.
Cloud Based Vital Health Stats Monitoring using IoT
DOI: 10.9790/0661-17547981 www.iosrjournals.org 80 | Page
III. Cloud Computing – Software As A Service
Software as a Service [2] is considered as the most complete cloud computing model, under which
platform and infrastructure are also provided as a service indirectly. SaaS provides software to the users in the
cloud, allowing them to use it as an application. This paper discusses the implementation of one such software,
which helps in aggregating and presenting the data collected from different digital instruments used for vital
statistics check.
In addition to that, the SaaS model discussed in this paper also includes communication to a database to
store, manipulate and retrieve the data collected. Since the data base implementation is outside the scope of this
document and we have many robust cloud based databases available, this paper assumes the usage of Amazon
RDS from the AWS infrastructure for this model.
IV. Data Flow and Functionality
The data flow and functionality of components across this proposed system can be separated into 4
modules for clarity in understanding.
1) IoT Interfacing
2) User Identification
3) Data Storage and Retrieval
4) Test Reminders
1) IoT Interfacing
The devices participating in the system like thermometer, pulse monitor, respiration rate monitor and
blood pressure monitor, all have to be digital instruments and it is a prerequisite. These devices communicate to
the cloud database via a smart phone to transmit their readings for a particular user. The information flows from
the devices to the smart phone, gets aggregated there and then transmitted to the cloud database.
The communication between an IoT device and the smart phone is out of scope of this document. More
over there are well established communication models based on blue tooth and wireless technologies for any
device as an endpoint of a network. This paper assumes that one of those established technologies are
implemented to transmit the readings from the instrument to the smart phone.
Every device registered with the cloud is assigned a unique device id. These device ids will be the
column name in the cloud database table. Any information (the readings) transmitted by the devices to the cloud
will be identified by the sender id and stored against the particular row in the table.
So, at any instance, a value transmitted by a blood pressure monitor will not be inserted into the pulse
rate column. Mapping the sender id specific information to the column names, enables the user the take the
readings without any particular order.
2) User Identification
A smart phone acts as the interface between the devices and the cloud. An interface of this kind is
required for 3 reasons,
1. To reduce the complexity involved in connecting an IoT directly to the cloud. Having a smart phone in
between the IoT and cloud can make things easier.
2. To enable multiple users use the same intermediate managing device and to facilitate segregation
among data from different users.
3. A smart phone is a very common device nowadays and its less complex usability makes life easier for
the user in this context.
Like the devices, every user should also be registered with the cloud. Every user is assigned a unique ID
when he registers with the cloud. This id will serve as the primary key in the database. Before taking the
measurements, the user logs in to the application (a software as a service mentioned in Section III of this
document) running in the smart phone with the unique ID assigned to him. Only after the user logs in, the
application initiates the daemons responsible for pairing with the measuring devices. Once the services are
enabled, the user can initiate test session with the instruments.
The readings received from the devices for this session are mapped against the particular user id. The
incoming readings arrive at the smart phone with the sender device id and the reading value as an ordered pair
(IoT ID, Measurement Value). Ordered pairs from different devices are received in the smart phone one by one.
This information is aggregated and then transmitted from the smart phone to the cloud DB as a triplet (User ID,
IoT ID, and Measurement Value). With the help of this, the identification becomes easier, the first level being
the user segregation and the second level being device specific info
Cloud Based Vital Health Stats Monitoring using IoT
DOI: 10.9790/0661-17547981 www.iosrjournals.org 81 | Page
3) Data Storage and Retrieval
As discussed, the smart phone serves as the interface between the measuring devices and the cloud.
Data insertion to the cloud data base from the smart phone can be implemented using existing interfaces
provided by the cloud infrastructure deployed. In this case, the stock interfaces present in the AWS cloud RDS
can be used to insert the data to the cloud from the mobile application.
Similarly the other end point of this model, the monitors (person interested in monitoring the health
stats of the PUTs) can also use the interfaces in cloud RDS to retrieve the data. Essentially, these smart phones
used by the monitors will also be running the application and will be a member of the cloud. Only difference
being, they will not be uploading test results to the system.
Apart from retrieval, the system will have options to automatically push daily test results of the PUTs
to all registered monitors. In addition to this, aggregate data on weekly and monthly basis, providing average
values for all readings in table as well as graphical format can also be supported, enabling an easy analysis of
the recorded statistics.
4) Test Reminders
Any scheduled monitoring system is not complete without a reminder. A daemon running in the
background (scheduler) will expect a test to be conducted at a pre-entered time on a regular basis. This daemon
will be sending reminders to all the users in the cloud (both the person under test and the remote monitors) on
the scheduled time. These schedules need to be fed to the SaaS at the time of PUT registration to the cloud.
The point behind sending reminders to all the users is, if a PUT decides to ignore the reminders and skip the
regular check, the monitor could very well be aware of it, reach out to them and ask them to have the vitals
checked. The reminder for a PUT on any particular day will stop only after all vital stats are uploaded to the
cloud
V. Conclusion
This model when implemented according to the guidelines, can serve as an effective tool to monitor the
health stats of a person from remote location. From sending reminders to aggregating the average data on a
periodical basis, this can prove to be very efficient.
The system can be still more enhanced for including medications, other major tests done at a hospital
like ECG, Echo on a bi-annual basis and adding a doctor to a family cloud making the monitoring process more
effective. Technical implementation details of interfaces, procedures and libraries are not detailed in this paper,
since the objective is to provide an overview of the system as a whole.
References
Websites:
[1] https://www.techopedia.com/definition/28247/internet-of-things-iot
Books:
[2] Dinakar Sitaram, Geetha Manjunath, Moving to the Cloud (Syngress, Elsevier 2011).

Contenu connexe

Tendances

Tendances (20)

verifiable and multi-keyword searchable attribute-based encryption scheme for...
verifiable and multi-keyword searchable attribute-based encryption scheme for...verifiable and multi-keyword searchable attribute-based encryption scheme for...
verifiable and multi-keyword searchable attribute-based encryption scheme for...
 
IRJET - Centralized Data for Transport Automation System using Android St...
IRJET -  	  Centralized Data for Transport Automation System using Android St...IRJET -  	  Centralized Data for Transport Automation System using Android St...
IRJET - Centralized Data for Transport Automation System using Android St...
 
Health care application system using io t
Health care application system using io tHealth care application system using io t
Health care application system using io t
 
IRJET- Authorization for Wearable Biomedical Gadgets Monitoring System
IRJET- Authorization for Wearable Biomedical Gadgets Monitoring SystemIRJET- Authorization for Wearable Biomedical Gadgets Monitoring System
IRJET- Authorization for Wearable Biomedical Gadgets Monitoring System
 
NECK MOVEMENT BASED WHEELCHAIR TO ASSIST THE PHYSICALLY CHALLENGED
NECK MOVEMENT BASED WHEELCHAIR TO ASSIST  THE PHYSICALLY CHALLENGEDNECK MOVEMENT BASED WHEELCHAIR TO ASSIST  THE PHYSICALLY CHALLENGED
NECK MOVEMENT BASED WHEELCHAIR TO ASSIST THE PHYSICALLY CHALLENGED
 
IRJET- Health Monitoring System using IoT using Arduino Uno Microcontroller
IRJET- Health Monitoring System using IoT using Arduino Uno MicrocontrollerIRJET- Health Monitoring System using IoT using Arduino Uno Microcontroller
IRJET- Health Monitoring System using IoT using Arduino Uno Microcontroller
 
EXTEMPORIZING HEALTHCARE USING SMART FABRIC
EXTEMPORIZING HEALTHCARE USING SMART FABRICEXTEMPORIZING HEALTHCARE USING SMART FABRIC
EXTEMPORIZING HEALTHCARE USING SMART FABRIC
 
IRJET - IoT based Asset Tracking System
IRJET - IoT based Asset Tracking SystemIRJET - IoT based Asset Tracking System
IRJET - IoT based Asset Tracking System
 
PATIENT DRIVEN ELECTRONIC HEALTH RECORD USING BLOCK CHAIN
PATIENT DRIVEN ELECTRONIC HEALTH RECORD  USING BLOCK CHAINPATIENT DRIVEN ELECTRONIC HEALTH RECORD  USING BLOCK CHAIN
PATIENT DRIVEN ELECTRONIC HEALTH RECORD USING BLOCK CHAIN
 
Interenet of Things Based Cloud for Healthcare Network
Interenet of Things Based Cloud for Healthcare NetworkInterenet of Things Based Cloud for Healthcare Network
Interenet of Things Based Cloud for Healthcare Network
 
IRJET- Body Sensor Network using Raspberry Pi3: IoT
IRJET- Body Sensor Network using Raspberry Pi3: IoTIRJET- Body Sensor Network using Raspberry Pi3: IoT
IRJET- Body Sensor Network using Raspberry Pi3: IoT
 
IRJET - Door Lock Control using Wireless Biometric
IRJET - Door Lock Control using Wireless BiometricIRJET - Door Lock Control using Wireless Biometric
IRJET - Door Lock Control using Wireless Biometric
 
Internet of Things Architecture Based Cloud for Healthcare
Internet of Things Architecture Based Cloud for HealthcareInternet of Things Architecture Based Cloud for Healthcare
Internet of Things Architecture Based Cloud for Healthcare
 
Log into android mobile to fetch the device oriented information using remote...
Log into android mobile to fetch the device oriented information using remote...Log into android mobile to fetch the device oriented information using remote...
Log into android mobile to fetch the device oriented information using remote...
 
Log into android mobile to fetch the device oriented information using remote...
Log into android mobile to fetch the device oriented information using remote...Log into android mobile to fetch the device oriented information using remote...
Log into android mobile to fetch the device oriented information using remote...
 
IRJET- Securing E-Medical Documents using QR Code
IRJET-  	  Securing E-Medical Documents using QR CodeIRJET-  	  Securing E-Medical Documents using QR Code
IRJET- Securing E-Medical Documents using QR Code
 
IRJET - Image Watermarking using QR Code
IRJET -  	  Image Watermarking using QR CodeIRJET -  	  Image Watermarking using QR Code
IRJET - Image Watermarking using QR Code
 
NEXTGEN’S HOSPILOGICS USING APACHE TOMCAT SERVER AND MYSQLDATABASE
NEXTGEN’S HOSPILOGICS USING APACHE TOMCAT  SERVER AND MYSQLDATABASENEXTGEN’S HOSPILOGICS USING APACHE TOMCAT  SERVER AND MYSQLDATABASE
NEXTGEN’S HOSPILOGICS USING APACHE TOMCAT SERVER AND MYSQLDATABASE
 
WARNING SYSTEM FROM THREAT OF WILD ANIMALS USING IOT
WARNING SYSTEM FROM THREAT OF WILD ANIMALS USING IOTWARNING SYSTEM FROM THREAT OF WILD ANIMALS USING IOT
WARNING SYSTEM FROM THREAT OF WILD ANIMALS USING IOT
 
SAFETY NOTIFICATION AND BUS MONITORING SYSTEM
SAFETY NOTIFICATION AND BUS MONITORING SYSTEMSAFETY NOTIFICATION AND BUS MONITORING SYSTEM
SAFETY NOTIFICATION AND BUS MONITORING SYSTEM
 

En vedette

Spectral Studies of Some Transition Metal Ion complexes with 4-[(E)-(Ferrocen...
Spectral Studies of Some Transition Metal Ion complexes with 4-[(E)-(Ferrocen...Spectral Studies of Some Transition Metal Ion complexes with 4-[(E)-(Ferrocen...
Spectral Studies of Some Transition Metal Ion complexes with 4-[(E)-(Ferrocen...
IOSR Journals
 
The Phase Theory towards the Unification of the Forces of Nature the Heart Be...
The Phase Theory towards the Unification of the Forces of Nature the Heart Be...The Phase Theory towards the Unification of the Forces of Nature the Heart Be...
The Phase Theory towards the Unification of the Forces of Nature the Heart Be...
IOSR Journals
 

En vedette (20)

K0536569
K0536569K0536569
K0536569
 
J010136172
J010136172J010136172
J010136172
 
Stress Analysis of Automotive Chassis with Various Thicknesses
Stress Analysis of Automotive Chassis with Various ThicknessesStress Analysis of Automotive Chassis with Various Thicknesses
Stress Analysis of Automotive Chassis with Various Thicknesses
 
Documentaries use for the design of learning activities
Documentaries use for the design of learning activitiesDocumentaries use for the design of learning activities
Documentaries use for the design of learning activities
 
Spectral Studies of Some Transition Metal Ion complexes with 4-[(E)-(Ferrocen...
Spectral Studies of Some Transition Metal Ion complexes with 4-[(E)-(Ferrocen...Spectral Studies of Some Transition Metal Ion complexes with 4-[(E)-(Ferrocen...
Spectral Studies of Some Transition Metal Ion complexes with 4-[(E)-(Ferrocen...
 
E010623639
E010623639E010623639
E010623639
 
F013153140
F013153140F013153140
F013153140
 
The Phase Theory towards the Unification of the Forces of Nature the Heart Be...
The Phase Theory towards the Unification of the Forces of Nature the Heart Be...The Phase Theory towards the Unification of the Forces of Nature the Heart Be...
The Phase Theory towards the Unification of the Forces of Nature the Heart Be...
 
M1302038192
M1302038192M1302038192
M1302038192
 
I012657382
I012657382I012657382
I012657382
 
J012665565
J012665565J012665565
J012665565
 
H0955158
H0955158H0955158
H0955158
 
B1304021217
B1304021217B1304021217
B1304021217
 
Gain Comparison between NIFTY and Selected Stocks identified by SOM using Tec...
Gain Comparison between NIFTY and Selected Stocks identified by SOM using Tec...Gain Comparison between NIFTY and Selected Stocks identified by SOM using Tec...
Gain Comparison between NIFTY and Selected Stocks identified by SOM using Tec...
 
M13030598104
M13030598104M13030598104
M13030598104
 
Data Security Model Enhancement In Cloud Environment
Data Security Model Enhancement In Cloud EnvironmentData Security Model Enhancement In Cloud Environment
Data Security Model Enhancement In Cloud Environment
 
Implementation of Mobile Banking in Bangladesh: Opportunities and Challenges
Implementation of Mobile Banking in Bangladesh: Opportunities and ChallengesImplementation of Mobile Banking in Bangladesh: Opportunities and Challenges
Implementation of Mobile Banking in Bangladesh: Opportunities and Challenges
 
Distributed Path Computation Using DIV Algorithm
Distributed Path Computation Using DIV AlgorithmDistributed Path Computation Using DIV Algorithm
Distributed Path Computation Using DIV Algorithm
 
A0550108
A0550108A0550108
A0550108
 
Increase In Electrical And Thermal Conductivities Of Doped Polymers Dependent...
Increase In Electrical And Thermal Conductivities Of Doped Polymers Dependent...Increase In Electrical And Thermal Conductivities Of Doped Polymers Dependent...
Increase In Electrical And Thermal Conductivities Of Doped Polymers Dependent...
 

Similaire à K017547981

seminar report iot based health monitoring system 2023.pdf
seminar report  iot based health monitoring system 2023.pdfseminar report  iot based health monitoring system 2023.pdf
seminar report iot based health monitoring system 2023.pdf
riddheshbore97
 

Similaire à K017547981 (20)

Iot and cloud computing on pervasive healthcare
Iot and cloud computing on pervasive healthcareIot and cloud computing on pervasive healthcare
Iot and cloud computing on pervasive healthcare
 
seminar report iot based health monitoring system 2023.pdf
seminar report  iot based health monitoring system 2023.pdfseminar report  iot based health monitoring system 2023.pdf
seminar report iot based health monitoring system 2023.pdf
 
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
 
A Review Paper on Emerging Areas and Applications of IoT
A Review Paper on Emerging Areas and Applications of IoTA Review Paper on Emerging Areas and Applications of IoT
A Review Paper on Emerging Areas and Applications of IoT
 
iot monitoring
iot monitoringiot monitoring
iot monitoring
 
IRJET- Health Monitoring system using IoT
IRJET- Health Monitoring system using IoTIRJET- Health Monitoring system using IoT
IRJET- Health Monitoring system using IoT
 
Analysis on Healthcare System using IoT
Analysis on Healthcare System using IoTAnalysis on Healthcare System using IoT
Analysis on Healthcare System using IoT
 
IRJET- A Comprehensive Survey on Smart Healthcare Monitoring of Patients usin...
IRJET- A Comprehensive Survey on Smart Healthcare Monitoring of Patients usin...IRJET- A Comprehensive Survey on Smart Healthcare Monitoring of Patients usin...
IRJET- A Comprehensive Survey on Smart Healthcare Monitoring of Patients usin...
 
Research Journal
Research JournalResearch Journal
Research Journal
 
peer reviewed journals
 peer reviewed journals  peer reviewed journals
peer reviewed journals
 
Paper Publication
Paper PublicationPaper Publication
Paper Publication
 
Designing an Architecture for Monitoring Patients at Home: Ontologies and We...
Designing an Architecture  for Monitoring Patients at Home: Ontologies and We...Designing an Architecture  for Monitoring Patients at Home: Ontologies and We...
Designing an Architecture for Monitoring Patients at Home: Ontologies and We...
 
Io t and cloud based computational framework, evolutionary approach in health...
Io t and cloud based computational framework, evolutionary approach in health...Io t and cloud based computational framework, evolutionary approach in health...
Io t and cloud based computational framework, evolutionary approach in health...
 
Depiction of Body area network in Cloud Environment
Depiction of Body area network in Cloud EnvironmentDepiction of Body area network in Cloud Environment
Depiction of Body area network in Cloud Environment
 
⭐⭐⭐⭐⭐ LECCIÓN SISTEMAS EMBEBIDOS, 2do Parcial (2020 PAO 1) C6
⭐⭐⭐⭐⭐ LECCIÓN SISTEMAS EMBEBIDOS, 2do Parcial (2020 PAO 1)  C6⭐⭐⭐⭐⭐ LECCIÓN SISTEMAS EMBEBIDOS, 2do Parcial (2020 PAO 1)  C6
⭐⭐⭐⭐⭐ LECCIÓN SISTEMAS EMBEBIDOS, 2do Parcial (2020 PAO 1) C6
 
Android Based Patient Health Monitoring System
Android Based Patient Health Monitoring SystemAndroid Based Patient Health Monitoring System
Android Based Patient Health Monitoring System
 
IRJET- Secrecy Preserving and Intrusion Avoidance in Medical Data Sharing...
IRJET-  	  Secrecy Preserving and Intrusion Avoidance in Medical Data Sharing...IRJET-  	  Secrecy Preserving and Intrusion Avoidance in Medical Data Sharing...
IRJET- Secrecy Preserving and Intrusion Avoidance in Medical Data Sharing...
 
The Internet Of Things UOP
The Internet Of Things UOPThe Internet Of Things UOP
The Internet Of Things UOP
 
IRJET- An Information Forwarder for Healthcare Service and analysis using Big...
IRJET- An Information Forwarder for Healthcare Service and analysis using Big...IRJET- An Information Forwarder for Healthcare Service and analysis using Big...
IRJET- An Information Forwarder for Healthcare Service and analysis using Big...
 
ealth Monitoring System in Emergency Using IoT: A Review
ealth Monitoring System in Emergency Using IoT: A Reviewealth Monitoring System in Emergency Using IoT: A Review
ealth Monitoring System in Emergency Using IoT: A Review
 

Plus de IOSR Journals

Plus de 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
 

Dernier

EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
Earley Information Science
 

Dernier (20)

Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Evaluating the top large language models.pdf
Evaluating the top large language models.pdfEvaluating the top large language models.pdf
Evaluating the top large language models.pdf
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 

K017547981

  • 1. IOSR Journal of Computer Engineering (IOSR-JCE) e-ISSN: 2278-0661,p-ISSN: 2278-8727, Volume 17, Issue 5, Ver. IV (Sep. – Oct. 2015), PP 79-81 www.iosrjournals.org DOI: 10.9790/0661-17547981 www.iosrjournals.org 79 | Page Cloud Based Vital Health Stats Monitoring using IoT Shanmuga Sundaram B1 M.Tech (Software Systems), Birla Institute of Technology and Science, Pilani, Rajasthan, India Abstract : While there are lot of devices and applications available for monitoring the vital health statistics of human beings, there is still room for enhancement and improvement. This paper’s intention is to address one of those perspectives. There are a lot of elderly people, whose children live abroad or at a long distance due to work and other priorities. Monitoring the health of the parents and having a keen eye on their health on a daily basis is a real challenge for the children living away from them. This challenge includes both communication regarding health and delay in regular vital checks. With this cloud based health monitoring, which employs Internet of Things (IoT) as a concept, the distance and the communication barrier can be overcome. This can enable people monitor their parents’ health from a longer distance with consistency and reliability. Keywords: Cloud, SaaS, IoT – Internet of Things, PUT – Person Under Test, AWS- Amazon Web Services, Vitals, RDS - Relational Database Service, Monitor. I. Introduction Cloud has changed the paradigm of computing, data manipulation and presentation. The efficiency of cloud combined with the evolution of Internet of Things, can help in resolving lot of problems faced in real life and to enhance the existing digital trends. This paper’s objective is to consider one such scenario of implementation using IoT[1] as a concept with a cloud base, to provide efficient remote monitoring and reporting of vital health stats of a person. Vitals are measurements of human body’s basic functions. These include body temperature, pulse rate, respiration rate and blood pressure. 1.1 PICTORIAL REPRESENTATION II. Internet of Things Most of us think about being connected in terms of computers, tablets and smart phones. IoT describes a world where just about anything can be connected and communicate in an intelligent fashion. In other words, with the Internet of Things, the physical world is becoming one big information system. Based on this concept, we can visualize an intelligent connection among medical instruments used for monitoring health stats like blood pressure monitor, thermometer etc.
  • 2. Cloud Based Vital Health Stats Monitoring using IoT DOI: 10.9790/0661-17547981 www.iosrjournals.org 80 | Page III. Cloud Computing – Software As A Service Software as a Service [2] is considered as the most complete cloud computing model, under which platform and infrastructure are also provided as a service indirectly. SaaS provides software to the users in the cloud, allowing them to use it as an application. This paper discusses the implementation of one such software, which helps in aggregating and presenting the data collected from different digital instruments used for vital statistics check. In addition to that, the SaaS model discussed in this paper also includes communication to a database to store, manipulate and retrieve the data collected. Since the data base implementation is outside the scope of this document and we have many robust cloud based databases available, this paper assumes the usage of Amazon RDS from the AWS infrastructure for this model. IV. Data Flow and Functionality The data flow and functionality of components across this proposed system can be separated into 4 modules for clarity in understanding. 1) IoT Interfacing 2) User Identification 3) Data Storage and Retrieval 4) Test Reminders 1) IoT Interfacing The devices participating in the system like thermometer, pulse monitor, respiration rate monitor and blood pressure monitor, all have to be digital instruments and it is a prerequisite. These devices communicate to the cloud database via a smart phone to transmit their readings for a particular user. The information flows from the devices to the smart phone, gets aggregated there and then transmitted to the cloud database. The communication between an IoT device and the smart phone is out of scope of this document. More over there are well established communication models based on blue tooth and wireless technologies for any device as an endpoint of a network. This paper assumes that one of those established technologies are implemented to transmit the readings from the instrument to the smart phone. Every device registered with the cloud is assigned a unique device id. These device ids will be the column name in the cloud database table. Any information (the readings) transmitted by the devices to the cloud will be identified by the sender id and stored against the particular row in the table. So, at any instance, a value transmitted by a blood pressure monitor will not be inserted into the pulse rate column. Mapping the sender id specific information to the column names, enables the user the take the readings without any particular order. 2) User Identification A smart phone acts as the interface between the devices and the cloud. An interface of this kind is required for 3 reasons, 1. To reduce the complexity involved in connecting an IoT directly to the cloud. Having a smart phone in between the IoT and cloud can make things easier. 2. To enable multiple users use the same intermediate managing device and to facilitate segregation among data from different users. 3. A smart phone is a very common device nowadays and its less complex usability makes life easier for the user in this context. Like the devices, every user should also be registered with the cloud. Every user is assigned a unique ID when he registers with the cloud. This id will serve as the primary key in the database. Before taking the measurements, the user logs in to the application (a software as a service mentioned in Section III of this document) running in the smart phone with the unique ID assigned to him. Only after the user logs in, the application initiates the daemons responsible for pairing with the measuring devices. Once the services are enabled, the user can initiate test session with the instruments. The readings received from the devices for this session are mapped against the particular user id. The incoming readings arrive at the smart phone with the sender device id and the reading value as an ordered pair (IoT ID, Measurement Value). Ordered pairs from different devices are received in the smart phone one by one. This information is aggregated and then transmitted from the smart phone to the cloud DB as a triplet (User ID, IoT ID, and Measurement Value). With the help of this, the identification becomes easier, the first level being the user segregation and the second level being device specific info
  • 3. Cloud Based Vital Health Stats Monitoring using IoT DOI: 10.9790/0661-17547981 www.iosrjournals.org 81 | Page 3) Data Storage and Retrieval As discussed, the smart phone serves as the interface between the measuring devices and the cloud. Data insertion to the cloud data base from the smart phone can be implemented using existing interfaces provided by the cloud infrastructure deployed. In this case, the stock interfaces present in the AWS cloud RDS can be used to insert the data to the cloud from the mobile application. Similarly the other end point of this model, the monitors (person interested in monitoring the health stats of the PUTs) can also use the interfaces in cloud RDS to retrieve the data. Essentially, these smart phones used by the monitors will also be running the application and will be a member of the cloud. Only difference being, they will not be uploading test results to the system. Apart from retrieval, the system will have options to automatically push daily test results of the PUTs to all registered monitors. In addition to this, aggregate data on weekly and monthly basis, providing average values for all readings in table as well as graphical format can also be supported, enabling an easy analysis of the recorded statistics. 4) Test Reminders Any scheduled monitoring system is not complete without a reminder. A daemon running in the background (scheduler) will expect a test to be conducted at a pre-entered time on a regular basis. This daemon will be sending reminders to all the users in the cloud (both the person under test and the remote monitors) on the scheduled time. These schedules need to be fed to the SaaS at the time of PUT registration to the cloud. The point behind sending reminders to all the users is, if a PUT decides to ignore the reminders and skip the regular check, the monitor could very well be aware of it, reach out to them and ask them to have the vitals checked. The reminder for a PUT on any particular day will stop only after all vital stats are uploaded to the cloud V. Conclusion This model when implemented according to the guidelines, can serve as an effective tool to monitor the health stats of a person from remote location. From sending reminders to aggregating the average data on a periodical basis, this can prove to be very efficient. The system can be still more enhanced for including medications, other major tests done at a hospital like ECG, Echo on a bi-annual basis and adding a doctor to a family cloud making the monitoring process more effective. Technical implementation details of interfaces, procedures and libraries are not detailed in this paper, since the objective is to provide an overview of the system as a whole. References Websites: [1] https://www.techopedia.com/definition/28247/internet-of-things-iot Books: [2] Dinakar Sitaram, Geetha Manjunath, Moving to the Cloud (Syngress, Elsevier 2011).