SlideShare a Scribd company logo
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 07 | July 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2227
IOT Based Soldier Position Tracking and Health Monitoring System
Pavan Mankal1, Sushmita2, Ummeaiman3, Shweta.W4
1Asst.professor, Dept. of Electronics and communication, GND Engg. College, Bidar, India.
2,3,4Student, Dept. of Electronics and communication, GND Engg. College, Bidar, India.
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract – The Indian army is the land-based branch and
it is the largest component of Indian Army. It will be
beneficial for our country's safety if we try to provide them
better advanced technology equipment. Internet of Things
(IOT) is a new and fast growing technology in which
everything (smart objects andsmartdevices)areconnected
to the internet for effective communication between these
connected things. We can check the health based issuesand
a lost soldier within a fraction of seconds through a app
called ThingView. This consistingofwearablephysiological
equipment and transmission modules which are mounted
inside the jacket for communication between soldier and
base station or between soldier and soldier. Hence, it is
possible to implement a low cost mechanism to protect the
valuable human life on the battlefield.
Key Words: Arduino Board, GPS, GSM module,
Temperature sensor, M-Health.
1. INTRODUCTION
In this project we have explained how totrack thelocationa
of the soldier with the help of GPS and also we will be able
to monitor health parameters such as pulse rate and body
temperature. The measured parameters will be sent to the
control room with the help of GSM module to know the
condition of the soldier. If the soldier is injured the
fluctuations with the pulse rate will be measured and will
inform the military base station and through GPS we can
locate the wounded soldiers. we can provide the needed
medication for the harmed one with the location provided
by the GPS. In this project the exact location and the health
status parameters of the soldier can be sent to the base
station in real time so that the appropriate actions can be
taken in case of crisis. This technologyhelpstominimizethe
rescue, time and search operation effort of army rescue
control unit. This is a wearable technology which is the
most important factor of this project.
The soldier must be integrated with advanced healthcare
monitoring, real time GPS (Global Positioning System) and
data communications to send and receive information
to/from the control unit Apart from the nation’s security,
the soldier must need safety by protecting himself with
advanced weapons and also it is necessary for the army
control unit to monitor the health status of the soldier.
Fig1 : Block Diagram
1.1 INTRODUCTION TO DOMAIN
Each day, our lives become more dependent on 'embedded
systems', digital information technology that is embedded
in our environment. More than 98% of processors applied
today are in embedded systems, and are no longervisible to
the customer as 'computers' in the ordinary sense.
Embedded computing systems generally exhibit rich
functionality—complex functionality is usually the reason
for introducing CPUs into the design. However, they also
exhibit many non-functional requirements that make the
task especially challenging:
• Real-time deadlines that will cause system failure if not
met;
• Multi-rate operation;
• In many cases, low power consumption;
• Low manufacturing cost, which often means limited code
size.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 07 | July 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2228
Fig2 :Overview of an Embedded System Architecture
1.2 Hardware components
The requiredhardwarecomponentsare:ArduinoUno,16X2
LCD display, GSM module, temperature sensor(LM35),
Esp8266, pulse sensor.
Arduino Uno
The Arduino is a family of microcontroller boards to
simplify electronic design, prototyping and experimenting
for artists, hackers, hobbyists, but also many professionals.
People use it as brains for their robots, to build new digital
music instruments, or to build a system that letsyourhouse
plants tweet you when they’re dry. Arduinos (we use the
standard Arduino Uno) are built around an ATmega
microcontroller essentially a complete computer with CPU,
RAM, Flash memory, and input/output pins, all on a single
chip.Unlike, say, a Raspberry Pi, it’s designed to attach all
kinds of sensors, LEDs, small motors and speakers, servos,
etc. directly to these pins, which can read in or output
digital or analog voltages between 0 and 5 volts. The
Arduino connects to your computer via USB, where you
program it in a simple language (C/C++, similar to Java)
from inside the free Arduino IDE by uploading your
compiled code to the board.
Fig3: Arduino Board
16X2 LCD display
Fig4: 16X2 LCD display
Liquid Crystal Display, which we are usingin ourproject is
16*2 LCD. This display consists of 16 columns and 2 rows.
This is programmed using the library <LiquidCrystal.h>
LCD stands for Liquid Crystal Display that uses a plane
panel display technology, used in screens of computer
monitors & TVs, smartphones, tablets, mobile devices.
Temperature sensor:
Temperature is the most often-measured environmental
quantity. This might be expected since most physical,
electronic, chemical, mechanical, andbiological systemsare
affected by temperature. Certain chemical reactions,
biological processes, and even electronic circuits perform
best within limited temperature ranges.
Fig5: Temperature sensor
Esp8266:
The ESP8266 WiFi Module is a self contained SOC with
integrated TCP/IP protocol stack that can give any
microcontroller access to your WiFi network. The
ESP8266 is capable of either hosting an application or
offloading all WiFi networking functions from another
application processor.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 07 | July 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2229
Fig6:Esp8266
GSM MODULE: GSM (Global System for Mobile
communications) originally from special mobile Group, is
the most general standard for mobile telephony systems in
the world. Everywhere it achieved international nomadic
preparations between mobile phone operatives, allowing
subscribers to use their phones in everywhere in theworld.
It was everywhere in the implementation of the GSM
standard feature for both customers, who may take
advantage from the skill to travel and change carriers
without changing phones, and network operatives as well.
Fig7: GSM Module
Pulse sensor: Pulse Sensor is a well-designed plug-and-
play heart-rate sensor for Arduino. It can be used by
students, artists, athletes, makers, and game & mobile
developers who want to easily incorporate live heartrate
data into their projects. The sensor clips onto a fingertip or
earlobe and plugs right into Arduino with some jumper
cables. It also includes an open-source monitoring app that
graphs your pulse in real time.
Fig8: Pulse sensor
1.3 Software Requirements
Download arduino software
You’ll need to download the Arduino Software package for
your operating system from the arduino download page.
When you’ve downloaded and opened the application you
should see something like this:
Fig9:This is where you type the code you want to compile
and send to the Arduino board.
The Code : The code you write for your Arduino are
known as sketches. They are written in C++.
Every sketch needs two void type functions,setup(), and
loop(), A void type function doesn’t return any value. The
setup()method is ran once at the just after the Arduino is
powered up and the loop()method is ran continuously
afterwards. The setup()is where you want to do any
initialization steps, and in loop() you want to run the code
you want to run over and over again.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 07 | July 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2230
Fig10: Code in software
2. Results and Discussion
The circuit diagram of a Real Time Tracking and Health
Monitoring System for Soldier is shown The heart of this
circuit is a Programmable interface controller PIC 18F452.
Other important components used in this circuit are LM35,
Easy Pulse v1.1, GSM module, GPS modem,keypad,LCDand
some discrete components. Finally, at base station, the text
message containing calculated data is received on base
station using GSM. This is then displayed on pc or laptop
using android pc suit.
For communication system, we used GSM module
(SIM900D) in our project. GSM networks operate in a
number of different carrier frequency bands. Most 2G GSM
networks operating in the 900 MHz or 1800 MHz bands.
Where already been assigned to these bands, it was used
850 MHz and 1900 MHz bands instead. In occasional cases
it is set ranges of 400 and 450 MHz in some countries
because it was previously used for first-generation system.
2.1About app
Using a ThingView app we can see the parameters like,
temperature and pulse rate of the wounded soldier so that
immediate action will be taken by the base station. The App
display is given below so we add a multiple channel to it.
The variation are like in the form of graphs.
Fig 11: ThingView App display
2.2 Source code
https://docs.google.com/document/d/1d68MUC8aC2KvfC
Tb6rbt4fsbPqT6G4nl_r3saaf692E/edit?usp=drivesdk
2.3 Hardware model
Fig12: Hardware Kit
Chart 1: The temperature sensors have well known
applications in environmental and process control and also
in test, measurement and communications. A digital
temperature is a sensor, which provides 9-bit temperature
readings. Digital temperaturesensorsoffer excellentprecise
accuracy, these are designed to read from 0°C to 70°C and it
is possible to achieve ±0.5°C accuracy. These sensors
completely aligned with digital temperature readings in
degree Celsius.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 07 | July 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2231
Fig13: Temperature Graph
Chart 2: The sensor clips onto a fingertip or earlobe and
plugs right into Arduino with some jumper cables. It also
includes an open-source monitoring app that graphs your
pulse in real time.
Fig 14: Pulse Graph
2.4 Applications
 The communication between soldier to soldiercan
be established.
 The betterment of base station unit can also be
done by making proper GUI at base station PC and
officials at base station can also send feedback or
any order to soldiers via base unit.
 By use of this system, we can condense casualties
of battle.
 It assists to give critical information’s and cautions
to soldiers so that they can survive for long and
aim of war or secret operation can be obtained.
 This system gives strength to the defense system
to country. So, we can accomplish that these types
of strategies are very supportive for certifying
security of the soldier.
Fig 15: soldier unit
3. CONCLUSION
As this is IoT based project Due to high speed internet
access and advanced sensor technology it is possible to
track human and other objects. Through the GPS as we
connected in our project we can locate the lost soldier by
means of messaging. It is in the form of link we can check it
through a google maps with the help of GSM module. As
discussed above the health parameters are seen in the app
called ThingView which is available in the playstore in
androids or any other smartphones.
References:
[1] Brown, Eric "Who Needs the Internet of Things?".
Linux.com. 13 September 2016
[2] Ramakrishnan Iyer, Radharaman Mishra, “Building
Intelligent Internet of Things Applications using
Microsoft Stream lnsight”, IGATE Global Solution, pp
1-7, April 2014.
[3] T. J. McCue,” $117 billion market forInternetofthings
in healthcare by 2020”, [Online].
Available:http://www.forbes.com/sites/tjmccue/201
5/04/22/117-billionmarket-for-internetof-things-in-
healthcareby-2020/#58d793712471
[4] James Manyika, Michael Chui, “the internet of things:
mapping the value beyond the hype”, June 2015.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 07 | July 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2232
[5] James Manyika,” Companies moving quickly on the
Internet of Things can benefit now even if the
economy has to wait”, [Online] Available:
https://www.linkedin.com/pulse/companies-
movingquickly-internet-things-can-benefit-
nowmanyika
[6] Cyril Cecchinel, Matthieu Jimenez, S´ebastien Mosser,
Michel Riveill , ”An Architecture to Support the
Collection of Big Data in the Internet of Things”, IEEE
10th World Congress on Services 2014.
[7] D. Evans, “The Internet of Things How the Next
Evolution of the Internet The Internet of Things How
the Next Evolution of the Internet Is Changing
Everything,” no. April, 2011.
[8] Shivayogi Hiremath, Geng Yang, Kunal Mankodiya
“Wearable Internet of Things :Concept, Architectural
Components and Promises for Person-Centered
Healthcare” ICST, 2014
[9] Jeong Gil Ko, Chenyang Lu, Mani B. Srivastava,
“WirelessSensorNetworksforHealthcare”IEEE2010
[10] Xu Xingmei, Zhou Jing,Wang He,” Research on the
Basic Characteristics, the Key

More Related Content

Similar to IOT Based Soldier Position Tracking and Health Monitoring System

IRJET - Smart Industrial Control and Safety System
IRJET - Smart Industrial Control and Safety SystemIRJET - Smart Industrial Control and Safety System
IRJET - Smart Industrial Control and Safety System
IRJET Journal
 
IRJET- A Paper on IoT based Digital Notice Board using Arduino ATMega 328
IRJET-  	  A Paper on IoT based Digital Notice Board using Arduino ATMega 328IRJET-  	  A Paper on IoT based Digital Notice Board using Arduino ATMega 328
IRJET- A Paper on IoT based Digital Notice Board using Arduino ATMega 328
IRJET Journal
 
IRJET- Low Powered Radio Frequency and PIR Sensor based Security Device
IRJET- Low Powered Radio Frequency and PIR Sensor based Security DeviceIRJET- Low Powered Radio Frequency and PIR Sensor based Security Device
IRJET- Low Powered Radio Frequency and PIR Sensor based Security Device
IRJET Journal
 
Office Automation System using Internet of Things
Office Automation System using Internet of ThingsOffice Automation System using Internet of Things
Office Automation System using Internet of Things
IRJET Journal
 
IRJET- Design and Development of IoT based Geiger Muller Counter
IRJET- Design and Development of IoT based Geiger Muller CounterIRJET- Design and Development of IoT based Geiger Muller Counter
IRJET- Design and Development of IoT based Geiger Muller Counter
IRJET Journal
 
IRJET- Rescue of Psycological Infirmity People using Wirless Network
IRJET- Rescue of Psycological Infirmity People using Wirless NetworkIRJET- Rescue of Psycological Infirmity People using Wirless Network
IRJET- Rescue of Psycological Infirmity People using Wirless Network
IRJET Journal
 
Industrial monitoring and control system using android application
Industrial monitoring and control system using android applicationIndustrial monitoring and control system using android application
Industrial monitoring and control system using android application
Avinash Vemula
 
Substation Monitoring and Control Based on Microcontroller Using IoT
Substation Monitoring and Control Based on Microcontroller Using IoTSubstation Monitoring and Control Based on Microcontroller Using IoT
Substation Monitoring and Control Based on Microcontroller Using IoT
IRJET Journal
 
IRJET- Centralised Status alert system for industrial machines
IRJET-  	  Centralised Status alert system for industrial machinesIRJET-  	  Centralised Status alert system for industrial machines
IRJET- Centralised Status alert system for industrial machines
IRJET Journal
 
IRJET- Portable Surveillance Robot using IoT
IRJET-  	  Portable Surveillance Robot using IoTIRJET-  	  Portable Surveillance Robot using IoT
IRJET- Portable Surveillance Robot using IoT
IRJET Journal
 
IRJET- Monitoring and Measurement of Solar Parameters using IoT
IRJET- Monitoring and Measurement of Solar Parameters using IoTIRJET- Monitoring and Measurement of Solar Parameters using IoT
IRJET- Monitoring and Measurement of Solar Parameters using IoT
IRJET Journal
 
IRJET- Smart Security System for Vehicles
IRJET- Smart Security System for VehiclesIRJET- Smart Security System for Vehicles
IRJET- Smart Security System for Vehicles
IRJET Journal
 
IRJET- IOT and RFID based shopping mall
IRJET- IOT and RFID based shopping mallIRJET- IOT and RFID based shopping mall
IRJET- IOT and RFID based shopping mall
IRJET Journal
 
IRJET - Boat Shrinking Alert System using IoT
IRJET -  	  Boat Shrinking Alert System using IoTIRJET -  	  Boat Shrinking Alert System using IoT
IRJET - Boat Shrinking Alert System using IoT
IRJET Journal
 
IRJET- Low Cost IoT based Remote Health Monitoring System
IRJET-  	  Low Cost IoT based Remote Health Monitoring SystemIRJET-  	  Low Cost IoT based Remote Health Monitoring System
IRJET- Low Cost IoT based Remote Health Monitoring System
IRJET Journal
 
Decibel meter using IoT with notice board
Decibel meter using IoT with notice boardDecibel meter using IoT with notice board
Decibel meter using IoT with notice board
IRJET Journal
 
Intelligent Industrial Helmet
Intelligent Industrial HelmetIntelligent Industrial Helmet
Intelligent Industrial Helmet
IRJET Journal
 
SMART LATHE MACHINE
SMART LATHE MACHINESMART LATHE MACHINE
SMART LATHE MACHINE
IRJET Journal
 
IRJET- Power Theft Detection and Monitoring using GSM Technology
IRJET-  	  Power Theft Detection and Monitoring using GSM TechnologyIRJET-  	  Power Theft Detection and Monitoring using GSM Technology
IRJET- Power Theft Detection and Monitoring using GSM Technology
IRJET Journal
 
IRJET- Smart Power Optimization with IoT
IRJET-  	  Smart Power Optimization with IoTIRJET-  	  Smart Power Optimization with IoT
IRJET- Smart Power Optimization with IoT
IRJET Journal
 

Similar to IOT Based Soldier Position Tracking and Health Monitoring System (20)

IRJET - Smart Industrial Control and Safety System
IRJET - Smart Industrial Control and Safety SystemIRJET - Smart Industrial Control and Safety System
IRJET - Smart Industrial Control and Safety System
 
IRJET- A Paper on IoT based Digital Notice Board using Arduino ATMega 328
IRJET-  	  A Paper on IoT based Digital Notice Board using Arduino ATMega 328IRJET-  	  A Paper on IoT based Digital Notice Board using Arduino ATMega 328
IRJET- A Paper on IoT based Digital Notice Board using Arduino ATMega 328
 
IRJET- Low Powered Radio Frequency and PIR Sensor based Security Device
IRJET- Low Powered Radio Frequency and PIR Sensor based Security DeviceIRJET- Low Powered Radio Frequency and PIR Sensor based Security Device
IRJET- Low Powered Radio Frequency and PIR Sensor based Security Device
 
Office Automation System using Internet of Things
Office Automation System using Internet of ThingsOffice Automation System using Internet of Things
Office Automation System using Internet of Things
 
IRJET- Design and Development of IoT based Geiger Muller Counter
IRJET- Design and Development of IoT based Geiger Muller CounterIRJET- Design and Development of IoT based Geiger Muller Counter
IRJET- Design and Development of IoT based Geiger Muller Counter
 
IRJET- Rescue of Psycological Infirmity People using Wirless Network
IRJET- Rescue of Psycological Infirmity People using Wirless NetworkIRJET- Rescue of Psycological Infirmity People using Wirless Network
IRJET- Rescue of Psycological Infirmity People using Wirless Network
 
Industrial monitoring and control system using android application
Industrial monitoring and control system using android applicationIndustrial monitoring and control system using android application
Industrial monitoring and control system using android application
 
Substation Monitoring and Control Based on Microcontroller Using IoT
Substation Monitoring and Control Based on Microcontroller Using IoTSubstation Monitoring and Control Based on Microcontroller Using IoT
Substation Monitoring and Control Based on Microcontroller Using IoT
 
IRJET- Centralised Status alert system for industrial machines
IRJET-  	  Centralised Status alert system for industrial machinesIRJET-  	  Centralised Status alert system for industrial machines
IRJET- Centralised Status alert system for industrial machines
 
IRJET- Portable Surveillance Robot using IoT
IRJET-  	  Portable Surveillance Robot using IoTIRJET-  	  Portable Surveillance Robot using IoT
IRJET- Portable Surveillance Robot using IoT
 
IRJET- Monitoring and Measurement of Solar Parameters using IoT
IRJET- Monitoring and Measurement of Solar Parameters using IoTIRJET- Monitoring and Measurement of Solar Parameters using IoT
IRJET- Monitoring and Measurement of Solar Parameters using IoT
 
IRJET- Smart Security System for Vehicles
IRJET- Smart Security System for VehiclesIRJET- Smart Security System for Vehicles
IRJET- Smart Security System for Vehicles
 
IRJET- IOT and RFID based shopping mall
IRJET- IOT and RFID based shopping mallIRJET- IOT and RFID based shopping mall
IRJET- IOT and RFID based shopping mall
 
IRJET - Boat Shrinking Alert System using IoT
IRJET -  	  Boat Shrinking Alert System using IoTIRJET -  	  Boat Shrinking Alert System using IoT
IRJET - Boat Shrinking Alert System using IoT
 
IRJET- Low Cost IoT based Remote Health Monitoring System
IRJET-  	  Low Cost IoT based Remote Health Monitoring SystemIRJET-  	  Low Cost IoT based Remote Health Monitoring System
IRJET- Low Cost IoT based Remote Health Monitoring System
 
Decibel meter using IoT with notice board
Decibel meter using IoT with notice boardDecibel meter using IoT with notice board
Decibel meter using IoT with notice board
 
Intelligent Industrial Helmet
Intelligent Industrial HelmetIntelligent Industrial Helmet
Intelligent Industrial Helmet
 
SMART LATHE MACHINE
SMART LATHE MACHINESMART LATHE MACHINE
SMART LATHE MACHINE
 
IRJET- Power Theft Detection and Monitoring using GSM Technology
IRJET-  	  Power Theft Detection and Monitoring using GSM TechnologyIRJET-  	  Power Theft Detection and Monitoring using GSM Technology
IRJET- Power Theft Detection and Monitoring using GSM Technology
 
IRJET- Smart Power Optimization with IoT
IRJET-  	  Smart Power Optimization with IoTIRJET-  	  Smart Power Optimization with IoT
IRJET- Smart Power Optimization with IoT
 

More from IRJET Journal

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
IRJET Journal
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
IRJET Journal
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
IRJET Journal
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
IRJET Journal
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
IRJET Journal
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
IRJET Journal
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
IRJET Journal
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
IRJET Journal
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
IRJET Journal
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
IRJET Journal
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
IRJET Journal
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
IRJET Journal
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
IRJET Journal
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
IRJET Journal
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
IRJET Journal
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
IRJET Journal
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
IRJET Journal
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
IRJET Journal
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
IRJET Journal
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
IRJET Journal
 

More from IRJET Journal (20)

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
 

Recently uploaded

Immunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary AttacksImmunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary Attacks
gerogepatton
 
English lab ppt no titlespecENG PPTt.pdf
English lab ppt no titlespecENG PPTt.pdfEnglish lab ppt no titlespecENG PPTt.pdf
English lab ppt no titlespecENG PPTt.pdf
BrazilAccount1
 
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdfHybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
fxintegritypublishin
 
Hierarchical Digital Twin of a Naval Power System
Hierarchical Digital Twin of a Naval Power SystemHierarchical Digital Twin of a Naval Power System
Hierarchical Digital Twin of a Naval Power System
Kerry Sado
 
Final project report on grocery store management system..pdf
Final project report on grocery store management system..pdfFinal project report on grocery store management system..pdf
Final project report on grocery store management system..pdf
Kamal Acharya
 
ML for identifying fraud using open blockchain data.pptx
ML for identifying fraud using open blockchain data.pptxML for identifying fraud using open blockchain data.pptx
ML for identifying fraud using open blockchain data.pptx
Vijay Dialani, PhD
 
Basic Industrial Engineering terms for apparel
Basic Industrial Engineering terms for apparelBasic Industrial Engineering terms for apparel
Basic Industrial Engineering terms for apparel
top1002
 
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdfAKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
SamSarthak3
 
NUMERICAL SIMULATIONS OF HEAT AND MASS TRANSFER IN CONDENSING HEAT EXCHANGERS...
NUMERICAL SIMULATIONS OF HEAT AND MASS TRANSFER IN CONDENSING HEAT EXCHANGERS...NUMERICAL SIMULATIONS OF HEAT AND MASS TRANSFER IN CONDENSING HEAT EXCHANGERS...
NUMERICAL SIMULATIONS OF HEAT AND MASS TRANSFER IN CONDENSING HEAT EXCHANGERS...
ssuser7dcef0
 
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
zwunae
 
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Dr.Costas Sachpazis
 
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
obonagu
 
road safety engineering r s e unit 3.pdf
road safety engineering  r s e unit 3.pdfroad safety engineering  r s e unit 3.pdf
road safety engineering r s e unit 3.pdf
VENKATESHvenky89705
 
Forklift Classes Overview by Intella Parts
Forklift Classes Overview by Intella PartsForklift Classes Overview by Intella Parts
Forklift Classes Overview by Intella Parts
Intella Parts
 
Tutorial for 16S rRNA Gene Analysis with QIIME2.pdf
Tutorial for 16S rRNA Gene Analysis with QIIME2.pdfTutorial for 16S rRNA Gene Analysis with QIIME2.pdf
Tutorial for 16S rRNA Gene Analysis with QIIME2.pdf
aqil azizi
 
Cosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdfCosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdf
Kamal Acharya
 
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
bakpo1
 
Recycled Concrete Aggregate in Construction Part III
Recycled Concrete Aggregate in Construction Part IIIRecycled Concrete Aggregate in Construction Part III
Recycled Concrete Aggregate in Construction Part III
Aditya Rajan Patra
 
Building Electrical System Design & Installation
Building Electrical System Design & InstallationBuilding Electrical System Design & Installation
Building Electrical System Design & Installation
symbo111
 
Planning Of Procurement o different goods and services
Planning Of Procurement o different goods and servicesPlanning Of Procurement o different goods and services
Planning Of Procurement o different goods and services
JoytuBarua2
 

Recently uploaded (20)

Immunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary AttacksImmunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary Attacks
 
English lab ppt no titlespecENG PPTt.pdf
English lab ppt no titlespecENG PPTt.pdfEnglish lab ppt no titlespecENG PPTt.pdf
English lab ppt no titlespecENG PPTt.pdf
 
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdfHybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
 
Hierarchical Digital Twin of a Naval Power System
Hierarchical Digital Twin of a Naval Power SystemHierarchical Digital Twin of a Naval Power System
Hierarchical Digital Twin of a Naval Power System
 
Final project report on grocery store management system..pdf
Final project report on grocery store management system..pdfFinal project report on grocery store management system..pdf
Final project report on grocery store management system..pdf
 
ML for identifying fraud using open blockchain data.pptx
ML for identifying fraud using open blockchain data.pptxML for identifying fraud using open blockchain data.pptx
ML for identifying fraud using open blockchain data.pptx
 
Basic Industrial Engineering terms for apparel
Basic Industrial Engineering terms for apparelBasic Industrial Engineering terms for apparel
Basic Industrial Engineering terms for apparel
 
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdfAKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
 
NUMERICAL SIMULATIONS OF HEAT AND MASS TRANSFER IN CONDENSING HEAT EXCHANGERS...
NUMERICAL SIMULATIONS OF HEAT AND MASS TRANSFER IN CONDENSING HEAT EXCHANGERS...NUMERICAL SIMULATIONS OF HEAT AND MASS TRANSFER IN CONDENSING HEAT EXCHANGERS...
NUMERICAL SIMULATIONS OF HEAT AND MASS TRANSFER IN CONDENSING HEAT EXCHANGERS...
 
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
 
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
 
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
 
road safety engineering r s e unit 3.pdf
road safety engineering  r s e unit 3.pdfroad safety engineering  r s e unit 3.pdf
road safety engineering r s e unit 3.pdf
 
Forklift Classes Overview by Intella Parts
Forklift Classes Overview by Intella PartsForklift Classes Overview by Intella Parts
Forklift Classes Overview by Intella Parts
 
Tutorial for 16S rRNA Gene Analysis with QIIME2.pdf
Tutorial for 16S rRNA Gene Analysis with QIIME2.pdfTutorial for 16S rRNA Gene Analysis with QIIME2.pdf
Tutorial for 16S rRNA Gene Analysis with QIIME2.pdf
 
Cosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdfCosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdf
 
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
 
Recycled Concrete Aggregate in Construction Part III
Recycled Concrete Aggregate in Construction Part IIIRecycled Concrete Aggregate in Construction Part III
Recycled Concrete Aggregate in Construction Part III
 
Building Electrical System Design & Installation
Building Electrical System Design & InstallationBuilding Electrical System Design & Installation
Building Electrical System Design & Installation
 
Planning Of Procurement o different goods and services
Planning Of Procurement o different goods and servicesPlanning Of Procurement o different goods and services
Planning Of Procurement o different goods and services
 

IOT Based Soldier Position Tracking and Health Monitoring System

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 07 | July 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2227 IOT Based Soldier Position Tracking and Health Monitoring System Pavan Mankal1, Sushmita2, Ummeaiman3, Shweta.W4 1Asst.professor, Dept. of Electronics and communication, GND Engg. College, Bidar, India. 2,3,4Student, Dept. of Electronics and communication, GND Engg. College, Bidar, India. ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract – The Indian army is the land-based branch and it is the largest component of Indian Army. It will be beneficial for our country's safety if we try to provide them better advanced technology equipment. Internet of Things (IOT) is a new and fast growing technology in which everything (smart objects andsmartdevices)areconnected to the internet for effective communication between these connected things. We can check the health based issuesand a lost soldier within a fraction of seconds through a app called ThingView. This consistingofwearablephysiological equipment and transmission modules which are mounted inside the jacket for communication between soldier and base station or between soldier and soldier. Hence, it is possible to implement a low cost mechanism to protect the valuable human life on the battlefield. Key Words: Arduino Board, GPS, GSM module, Temperature sensor, M-Health. 1. INTRODUCTION In this project we have explained how totrack thelocationa of the soldier with the help of GPS and also we will be able to monitor health parameters such as pulse rate and body temperature. The measured parameters will be sent to the control room with the help of GSM module to know the condition of the soldier. If the soldier is injured the fluctuations with the pulse rate will be measured and will inform the military base station and through GPS we can locate the wounded soldiers. we can provide the needed medication for the harmed one with the location provided by the GPS. In this project the exact location and the health status parameters of the soldier can be sent to the base station in real time so that the appropriate actions can be taken in case of crisis. This technologyhelpstominimizethe rescue, time and search operation effort of army rescue control unit. This is a wearable technology which is the most important factor of this project. The soldier must be integrated with advanced healthcare monitoring, real time GPS (Global Positioning System) and data communications to send and receive information to/from the control unit Apart from the nation’s security, the soldier must need safety by protecting himself with advanced weapons and also it is necessary for the army control unit to monitor the health status of the soldier. Fig1 : Block Diagram 1.1 INTRODUCTION TO DOMAIN Each day, our lives become more dependent on 'embedded systems', digital information technology that is embedded in our environment. More than 98% of processors applied today are in embedded systems, and are no longervisible to the customer as 'computers' in the ordinary sense. Embedded computing systems generally exhibit rich functionality—complex functionality is usually the reason for introducing CPUs into the design. However, they also exhibit many non-functional requirements that make the task especially challenging: • Real-time deadlines that will cause system failure if not met; • Multi-rate operation; • In many cases, low power consumption; • Low manufacturing cost, which often means limited code size.
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 07 | July 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2228 Fig2 :Overview of an Embedded System Architecture 1.2 Hardware components The requiredhardwarecomponentsare:ArduinoUno,16X2 LCD display, GSM module, temperature sensor(LM35), Esp8266, pulse sensor. Arduino Uno The Arduino is a family of microcontroller boards to simplify electronic design, prototyping and experimenting for artists, hackers, hobbyists, but also many professionals. People use it as brains for their robots, to build new digital music instruments, or to build a system that letsyourhouse plants tweet you when they’re dry. Arduinos (we use the standard Arduino Uno) are built around an ATmega microcontroller essentially a complete computer with CPU, RAM, Flash memory, and input/output pins, all on a single chip.Unlike, say, a Raspberry Pi, it’s designed to attach all kinds of sensors, LEDs, small motors and speakers, servos, etc. directly to these pins, which can read in or output digital or analog voltages between 0 and 5 volts. The Arduino connects to your computer via USB, where you program it in a simple language (C/C++, similar to Java) from inside the free Arduino IDE by uploading your compiled code to the board. Fig3: Arduino Board 16X2 LCD display Fig4: 16X2 LCD display Liquid Crystal Display, which we are usingin ourproject is 16*2 LCD. This display consists of 16 columns and 2 rows. This is programmed using the library <LiquidCrystal.h> LCD stands for Liquid Crystal Display that uses a plane panel display technology, used in screens of computer monitors & TVs, smartphones, tablets, mobile devices. Temperature sensor: Temperature is the most often-measured environmental quantity. This might be expected since most physical, electronic, chemical, mechanical, andbiological systemsare affected by temperature. Certain chemical reactions, biological processes, and even electronic circuits perform best within limited temperature ranges. Fig5: Temperature sensor Esp8266: The ESP8266 WiFi Module is a self contained SOC with integrated TCP/IP protocol stack that can give any microcontroller access to your WiFi network. The ESP8266 is capable of either hosting an application or offloading all WiFi networking functions from another application processor.
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 07 | July 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2229 Fig6:Esp8266 GSM MODULE: GSM (Global System for Mobile communications) originally from special mobile Group, is the most general standard for mobile telephony systems in the world. Everywhere it achieved international nomadic preparations between mobile phone operatives, allowing subscribers to use their phones in everywhere in theworld. It was everywhere in the implementation of the GSM standard feature for both customers, who may take advantage from the skill to travel and change carriers without changing phones, and network operatives as well. Fig7: GSM Module Pulse sensor: Pulse Sensor is a well-designed plug-and- play heart-rate sensor for Arduino. It can be used by students, artists, athletes, makers, and game & mobile developers who want to easily incorporate live heartrate data into their projects. The sensor clips onto a fingertip or earlobe and plugs right into Arduino with some jumper cables. It also includes an open-source monitoring app that graphs your pulse in real time. Fig8: Pulse sensor 1.3 Software Requirements Download arduino software You’ll need to download the Arduino Software package for your operating system from the arduino download page. When you’ve downloaded and opened the application you should see something like this: Fig9:This is where you type the code you want to compile and send to the Arduino board. The Code : The code you write for your Arduino are known as sketches. They are written in C++. Every sketch needs two void type functions,setup(), and loop(), A void type function doesn’t return any value. The setup()method is ran once at the just after the Arduino is powered up and the loop()method is ran continuously afterwards. The setup()is where you want to do any initialization steps, and in loop() you want to run the code you want to run over and over again.
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 07 | July 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2230 Fig10: Code in software 2. Results and Discussion The circuit diagram of a Real Time Tracking and Health Monitoring System for Soldier is shown The heart of this circuit is a Programmable interface controller PIC 18F452. Other important components used in this circuit are LM35, Easy Pulse v1.1, GSM module, GPS modem,keypad,LCDand some discrete components. Finally, at base station, the text message containing calculated data is received on base station using GSM. This is then displayed on pc or laptop using android pc suit. For communication system, we used GSM module (SIM900D) in our project. GSM networks operate in a number of different carrier frequency bands. Most 2G GSM networks operating in the 900 MHz or 1800 MHz bands. Where already been assigned to these bands, it was used 850 MHz and 1900 MHz bands instead. In occasional cases it is set ranges of 400 and 450 MHz in some countries because it was previously used for first-generation system. 2.1About app Using a ThingView app we can see the parameters like, temperature and pulse rate of the wounded soldier so that immediate action will be taken by the base station. The App display is given below so we add a multiple channel to it. The variation are like in the form of graphs. Fig 11: ThingView App display 2.2 Source code https://docs.google.com/document/d/1d68MUC8aC2KvfC Tb6rbt4fsbPqT6G4nl_r3saaf692E/edit?usp=drivesdk 2.3 Hardware model Fig12: Hardware Kit Chart 1: The temperature sensors have well known applications in environmental and process control and also in test, measurement and communications. A digital temperature is a sensor, which provides 9-bit temperature readings. Digital temperaturesensorsoffer excellentprecise accuracy, these are designed to read from 0°C to 70°C and it is possible to achieve ±0.5°C accuracy. These sensors completely aligned with digital temperature readings in degree Celsius.
  • 5. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 07 | July 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2231 Fig13: Temperature Graph Chart 2: The sensor clips onto a fingertip or earlobe and plugs right into Arduino with some jumper cables. It also includes an open-source monitoring app that graphs your pulse in real time. Fig 14: Pulse Graph 2.4 Applications  The communication between soldier to soldiercan be established.  The betterment of base station unit can also be done by making proper GUI at base station PC and officials at base station can also send feedback or any order to soldiers via base unit.  By use of this system, we can condense casualties of battle.  It assists to give critical information’s and cautions to soldiers so that they can survive for long and aim of war or secret operation can be obtained.  This system gives strength to the defense system to country. So, we can accomplish that these types of strategies are very supportive for certifying security of the soldier. Fig 15: soldier unit 3. CONCLUSION As this is IoT based project Due to high speed internet access and advanced sensor technology it is possible to track human and other objects. Through the GPS as we connected in our project we can locate the lost soldier by means of messaging. It is in the form of link we can check it through a google maps with the help of GSM module. As discussed above the health parameters are seen in the app called ThingView which is available in the playstore in androids or any other smartphones. References: [1] Brown, Eric "Who Needs the Internet of Things?". Linux.com. 13 September 2016 [2] Ramakrishnan Iyer, Radharaman Mishra, “Building Intelligent Internet of Things Applications using Microsoft Stream lnsight”, IGATE Global Solution, pp 1-7, April 2014. [3] T. J. McCue,” $117 billion market forInternetofthings in healthcare by 2020”, [Online]. Available:http://www.forbes.com/sites/tjmccue/201 5/04/22/117-billionmarket-for-internetof-things-in- healthcareby-2020/#58d793712471 [4] James Manyika, Michael Chui, “the internet of things: mapping the value beyond the hype”, June 2015.
  • 6. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 07 | July 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2232 [5] James Manyika,” Companies moving quickly on the Internet of Things can benefit now even if the economy has to wait”, [Online] Available: https://www.linkedin.com/pulse/companies- movingquickly-internet-things-can-benefit- nowmanyika [6] Cyril Cecchinel, Matthieu Jimenez, S´ebastien Mosser, Michel Riveill , ”An Architecture to Support the Collection of Big Data in the Internet of Things”, IEEE 10th World Congress on Services 2014. [7] D. Evans, “The Internet of Things How the Next Evolution of the Internet The Internet of Things How the Next Evolution of the Internet Is Changing Everything,” no. April, 2011. [8] Shivayogi Hiremath, Geng Yang, Kunal Mankodiya “Wearable Internet of Things :Concept, Architectural Components and Promises for Person-Centered Healthcare” ICST, 2014 [9] Jeong Gil Ko, Chenyang Lu, Mani B. Srivastava, “WirelessSensorNetworksforHealthcare”IEEE2010 [10] Xu Xingmei, Zhou Jing,Wang He,” Research on the Basic Characteristics, the Key