Final Report
Final Report
A Project Report
Submitted to the APJ Abdul Kalam Technological University
in partial fulfillment of requirements for the award of degree
Bachelor of Technology
in
Electronics and Communication Engineering
by
SANMAYA P V (WYD22EC102)
SHANA T H (WYD22EC104)
SREERAG V (WYD22EC111)
VISHNU K (WYD22EC119)
March 2026
DEPT. OF ELECTRONICS AND COMMUNICATION ENGINEERING
GOVERNMENT ENGINEERING COLLEGE, WAYANAD
2026
CERTIFICATE
This is to certify that the report entitled, A LoRa-Based Wearable Device for Remote Res-
cue and Health Monitoring, submitted by SANMAYA P V (WYD22EC102), SHANA T H
(WYD22EC104), SREERAG V (WYD22EC111) and VISHNU K (WYD22EC119) to the
APJ Abdul Kalam Technological University in partial fulfillment of the requirements for the
award of the Degree of Bachelor of Technology in Electronics and Communication Engineering
is a bonafide record of the project work carried out by them under our guidance and supervi-
sion. This report in any form has not been submitted to any other University or Institute for any
purpose.
We undersigned hereby declare that the Project report, A LoRa-Based Wearable Device for
Remote Rescue and Health Monitoring, submitted for partial fulfillment of the requirements
for the award of degree of Bachelor of Technology of the APJ Abdul Kalam Technological
University, Kerala is a bonafide work done by us under the supervision of Prof. Jobin Jose.
This submission represents my ideas in our own words and where ideas or words of others have
been included, We have adequately and accurately cited and referenced the original sources.
We also declare that we have adhered to ethics of academic honesty and integrity and have not
misrepresented or fabricated any data or idea or fact or source in submission. We understand
that any violation of the above will be a cause for disciplinary action by the institute and/or
the University and can also evoke penal action from the sources which have thus not been
properly cited or from whom proper permission has not been obtained. This report has not been
previously formed the basis for the award of any degree, diploma or similar title of any other
University.
WAYANAD SANMAYA P V
March 31, 2026 SHANA T H
SREERAG V
VISHNU K
ACKNOWLEDGEMENT
It is with great enthusiasm and the learning spirit that we bring out this project report.
We also feel that it is the right opportunity to acknowledge the support and guidance that
came in from various quarters during the course of the project. We are extremely grateful to
the Principal Dr. Pradeep V, Government Engineering College Wayanad, for providing the
necessary facilities. We take this opportunity to express our sincere thanks to Dr. Sinith M S,
Head of Electronics and Communication Department, for the valuable suggestions and guidance.
The stimulating technical interactions we had with him will be very helpful in the future. We
are extremely thankful to our guide Prof. Jobin Jose in Electronics and Communication
Engineering for the inevitable guidance which leads us. Any attempt of gratitude would be
incomplete without the mention of the project coordinators Dr. Sindhu P and Prof. Brijmohan
K, for their suggestions and solutions during times of dilemma. We also thank all the staff of
Government Engineering College, Wayanad for their wholehearted support and cooperation.
Finally, we would like to acknowledge our deep sense of gratitude to our beloved parents who
have been the pillars of support and also our well-wishers and friends who helped us directly
and indirectly throughout the course of this project.
SANMAYA P V
SHANA T H
SREERAG V
VISHNU K
ABSTRACT
This project focuses on the design and implementation of a LoRa-based wearable device
aimed at providing efficient remote rescue and health monitoring for individuals in isolated or
emergency-prone regions. In many remote areas, traditional communication networks such as
cellular or Wi-Fi are unavailable or unreliable, making it difficult to track individuals and monitor
their health conditions. To address this challenge, the proposed wearable device utilizes LoRa
(Long Range) communication technology, known for its low-power consumption, long-range
coverage, and robust data transmission capabilities.
The system continuously measures essential physiological parameters such as heart rate,
body temperature, and oxygen saturation (SpO2) using integrated biomedical sensors. Addi-
tionally, a GPS module provides real-time location tracking, allowing rescue teams to pinpoint
the user’s position during emergencies. The gathered data is transmitted via LoRa gateways to a
central monitoring unit, where it can be analyzed and used to trigger automatic alerts or rescue
operations when abnormal readings or distress signals are detected.
Designed to be lightweight, compact, and durable, the wearable device is suitable for use
by hikers, soldiers, remote workers, and disaster victims. Its low-power design ensures long-
term functionality, even in challenging environmental conditions. By combining IoT-based
health monitoring with LoRa communication, this system offers a reliable, cost-effective, and
energy-efficient solution for enhancing safety and emergency response in remote and hazardous
locations.
Contents
1 INTRODUCTION
1.1 Scope of Project . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
1.2 Motivation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
1.3 Objectives . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
1.4 Organization of Report . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2
2 LITERATURE SURVEY 3
5 SOFTWARE 27
5.1 Transmitter . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27
5.2 Receiver . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 28
5.3 Server . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 28
8 REFERENCE 32
List of Figures
3.1 Transmitter . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6
3.2 Receiver . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6
3.3 Transmitter Circuit Diagram . . . . . . . . . . . . . . . . . . . . . . . . . . . 7
3.4 Voltage Level Converter . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8
3.5 Receiver Circuit Diagram . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9
3.6 Assembled Transmitter Circuit . . . . . . . . . . . . . . . . . . . . . . . . . . 10
3.7 Assembled Receiver Circuit . . . . . . . . . . . . . . . . . . . . . . . . . . . 11
3.8 Final Prototype of Wearable . . . . . . . . . . . . . . . . . . . . . . . . . . . 12
4.1 LoRa . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
4.2 ESP32 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14
4.3 ATmega328P Microcontroller . . . . . . . . . . . . . . . . . . . . . . . . . . 15
4.4 Li-ion Battery . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16
4.5 DS18B20 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17
4.6 MQ-2 Gas Sensor . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18
4.7 MAX30102 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 19
4.8 MPU-6050 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 20
4.9 GPS Module . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21
4.10 LoRa Patch Antenna . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 22
4.11 BS170 MOSFET . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 23
4.12 Buzzer . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 24
4.13 LED . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 25
1. INTRODUCTION
In today’s world, the integration of technology into healthcare has become increasingly impor-
tant, especially with the growing demand for continuous health monitoring and rapid emergency
response. Wearable devices such as smartwatches and fitness trackers have gained popularity
for tracking vital signs like heart rate, temperature, and oxygen saturation. However, most of
these devices depend on cellular networks or Wi-Fi connectivity to transmit data, which makes
them ineffective in remote and rural regions where network coverage is poor or nonexistent.
This limitation poses serious challenges during medical emergencies, rescue operations, and
outdoor activities such as trekking, mountaineering, or military missions. In such scenarios, a
reliable and long-range communication system is essential to ensure the timely transmission of
health data and location information to rescue teams or medical professionals.
To overcome these challenges, the proposed project introduces a LoRa-based wearable de-
vice designed specifically for remote rescue and health monitoring. LoRa (Long Range) is
a low-power technology that enables data transmission over several kilometers with minimal
energy consumption. Unlike conventional wireless technologies, LoRa can maintain stable
communication even in difficult terrains, making it highly suitable for use in isolated environ-
ments. The wearable device integrates multiple sensors to monitor vital health parameters such
as heart rate, body temperature, and oxygen saturation, along with a GPS module for real-time
location tracking.
In the event of an emergency—such as a fall, abnormal physiological reading, or manual
SOS trigger—the device automatically sends an alert message containing the user’s health
data and location coordinates to a base station or rescue center through LoRa communication.
This enables quick and accurate response by rescue teams, potentially saving lives in critical
situations. Additionally, the system is designed to be energy-efficient, ensuring extended battery
life for continuous monitoring over long durations. The collected data can also be displayed
and analyzed through a cloud-based platform or monitoring dashboard, allowing real-time
visualization of multiple users in the field.
By combining the capabilities of IoT-based health monitoring with long-range wireless
communication, this project aims to provide a reliable, cost-effective, and portable solution for
emergency communication and remote healthcare. The system has potential applications for
mountain climbers, remote field workers, defense personnel, and disaster response teams, where
maintaining connectivity and monitoring health conditions are critical. Ultimately, the project
contributes to advancing smart healthcare systems and IoT-enabled safety solutions, bridging
the gap between remote health monitoring and efficient emergency rescue operations.
1.1 Scope of Project
The scope of this project, titled “A LoRa-Based Wearable Device for Remote Rescue and Health
Monitoring,” involves the design and development of a compact, low-power wearable system
capable of continuously monitoring vital health parameters such as heart rate, temperature,
and oxygen saturation. The device utilizes LoRa (Long Range) communication technology
to transmit data over several kilometers, making it suitable for use in remote or inaccessible
areas where traditional mobile networks are unavailable. The system aims to provide real-time
health updates and emergency alerts, automatically sending an SOS signal and GPS location in
case of abnormal physiological readings or emergencies. The project also focuses on ensuring
energy efficiency, enabling long-duration operation through low-power sensors and optimized
communication protocols. Collected data will be transmitted to a central monitoring station or
cloud platform for real-time visualization and analysis via a mobile or web-based dashboard.
The wearable device is primarily intended for mountaineers, trekkers, remote field workers,
military personnel, and disaster response teams. Additionally, the project will explore the
reliability, range, and latency of LoRa communication in different environmental conditions to
establish a robust and scalable IoT-based health and rescue monitoring system.
1.2 Motivation
In remote and rural areas, people such as trekkers, soldiers, and field workers often face
emergencies where communication and medical support are unavailable. Traditional wearable
devices depend on cellular or Wi-Fi networks, which fail in such environments. This creates
a critical need for a reliable, long-range, and low-power communication system for health
monitoring and emergency alerts. LoRa (Long Range) technology provides an ideal solution
due to its wide coverage and minimal power consumption. By integrating IoT-based health
sensors with LoRa communication, this project aims to develop a wearable device that enables
real-time health tracking and emergency rescue support in areas without network connectivity.
The goal is to enhance safety, accessibility, and timely response during emergencies in remote
locations.
1.3 Objectives
The primary objective of this project is to design and develop a LoRa-based wearable device
capable of monitoring vital health parameters and transmitting real-time data over long distances
with minimal power consumption. The system focuses on providing an efficient and reliable
solution for remote health monitoring and emergency rescue operations in areas with limited
or no cellular connectivity. The wearable device will continuously measure parameters such
as heart rate, body temperature, and oxygen saturation while integrating GPS functionality for
accurate location tracking. In case of an emergency, the device will automatically send an
SOS alert along with the user’s health data and location coordinates to a monitoring station or
rescue team via LoRa communication. The project also aims to ensure energy efficiency, data
reliability, and user-friendliness by integrating IoT technology and a centralized monitoring
interface for real-time visualization. Overall, the goal is to create a low-cost, long-range, and
power-efficient wearable solution that enhances personal safety and enables timely medical
response in remote or disaster-prone environments.
1
1.4 Organization of Report
This report is organized into several chapters, each describing different aspects of the project in
a systematic manner:
• Chapter 2: Literature Review – This chapter discusses existing technologies and pre-
vious research related to wearable health monitoring systems, IoT-based rescue devices,
and LoRa communication. It helps identify the research gap and justify the proposed
system.
• Chapter 3: System Design and Methodology – This chapter explains the overall system
architecture, hardware components, software tools, and communication techniques used
in the project. It also describes the working principle and data flow between different
modules.
• Chapter 4: Implementation and Results – This chapter presents the practical imple-
mentation of the proposed system, including hardware setup, sensor integration, and LoRa
communication testing. The obtained results, performance evaluation, and data analysis
are discussed in detail.
• Chapter 5: Conclusion and Future Scope – This chapter summarizes the work car-
ried out, highlighting the major findings and achievements. It also suggests possible
improvements and future enhancements for expanding the system’s functionality.
2
2. LITERATURE SURVEY
Pradhan et al. [1] developed a LoRa-based IoT system for emergency assistance in mountaineer-
ing environments. Their work demonstrated that LoRa communication can reliably transmit
emergency signals and location data in remote and high-risk regions, validating its applicability
for rescue operations.
Kim et al. [2] conducted a comparative study on fall detection algorithms using accelerometer
data. Their research highlighted the effectiveness of motion-based detection techniques in
identifying human falls accurately, which supports the implementation of fall detection in
wearable rescue devices.
The MAX30102 sensor datasheet by Maxim Integrated [4] explains the working principle of
pulse oximetry and heart rate monitoring using photoplethysmography (PPG). The sensor’s low
power consumption and integrated design make it ideal for wearable biomedical applications.
Based on these studies, the proposed system integrates LoRa communication, biomedical
sensing, and motion detection technologies into a unified wearable device for real-time remote
health monitoring and emergency response.
3
3. METHODOLOGY AND WORKING
The system architecture for the LoRa-Based Wearable Device for Remote Rescue and Health
Monitoring follows a Star Topology using LoRa technology. The overall system is conceptually
divided into two primary operational components:
1. Wearable Transmitter Node : This is the core wearable unit, designed to be compact
and energy-efficient. It is responsible for continuously collecting physiological data
from integrated sensors, acquiring location data from a GPS module, processing this
information, and reliably transmitting it via the LoRa module to the central gateway. Its
optimization for low power consumption is critical for extended field deployment.
2. Monitoring Receiver Gateway : This acts as the central hub of the system. It receives
data packets from wearable node within its range via its LoRa receiver. Upon reception,
the gateway processes the data, potentially stores it locally, and then forwards it to a cloud
server via standard internet connectivity. Additionally, the gateway is equipped to trigger
immediate local alerts (e.g., audible buzzers, visual LEDs) upon receiving emergency
signals from connected wearable device.
The LoRa-based wearable device works in a simple and systematic way to ensure regular health
monitoring and quick emergency response.
1. Data Collection: The microcontroller wakes up at regular time intervals (for example,
every 5 minutes). It collects health data such as SpO2 , heart rate, body temperature, and
GPS location from the sensors.
2. Emergency Detection: The accelerometer continuously checks for falls. The system
also checks if any health parameter crosses a safe limit. If a fall or abnormal reading is
detected, an emergency signal is activated.
3. Data Transmission: The collected health data and GPS location are combined into a
data packet. This packet is sent to the base station using the LoRa module.
4
4. Data Reception: The LoRa receiver at the base station receives the transmitted data.
5. Server Upload: The gateway device sends the received data to a cloud server using Wi-Fi
or Ethernet connection.
6. Alert and Monitoring: The server displays the user’s health data and location on a
monitoring dashboard. If an emergency signal is detected, it triggers an alarm and shows
the exact location on the map.
To improve accuracy, the sensor data is checked before sending. Simple smoothing methods are
used to reduce small changes and unwanted noise in the SpO2 , heart rate, and temperature values.
This makes the readings more stable and reliable. The system also checks for incorrect or unusual
values and ignores them if needed. This helps avoid sending wrong data. GPS information is
taken from standard NMEA (National Marine Electronics Association) messages. The system
extracts the latitude and longitude and confirms that the location data is valid before sending it.
The MPU6050 sensor is used to detect falls. If a sudden movement is followed by no movement
for some time, the system considers it as a fall and sends an alert.
Finally, all the health data, movement information, and location details are combined into one
message and sent through LoRa. This ensures reliable remote monitoring with low power usage.
5
3.4 Block Diagram and Explanation
The Block Diagram illustrates the complete architecture of the LoRa-Based Wearable Device
for Remote Rescue and Health Monitoring, which is split into two main sections: Transmitter
(the wearable) and Receiver (the monitoring station). The Transmitter section relies on an
Arduino UNO to interface with multiple sensors, including a SpO2 Sensor, Accelerometer
Sensor, Temperature Sensor, and Gas Sensor, alongside a GPS Module for location tracking.
This processed data is then broadcast using a LoRa Transmitter. The Receiver section picks up
this signal via a LoRa Receiver. The received data is managed by an ESP32 microcontroller,
which sends it to a Server for storage and analysis. The server feeds the information to an
Android App to allow monitoring teams to visualize the user’s status, location, and emergency
alerts. Both the transmitter and receiver sections are equipped with a Power Supply and LED
Indicators, while the receiver also includes a Buzzer for immediate alerts. This two-part system
ensures that health and location data are reliably collected and transmitted, even in remote areas
where traditional networks often fail.
6
3.5 Circuit Diagram and Explanation
Transmitter
1 2 3 4 5 6
22-27-2081-08 22-27-2081-08
GND J6-1 GND J7-1
VCCINT
J6-2 J7-2
+3V3
+3V3
IC1 GND SS1
VCC
VCC
VCC
+3V3
INT IC4 317T
J6-3 J7-3
A 7805TV VCC 3
VI VO
2 MOSI1 A
VCC
1 3
120R
VI VO ADJ RST1 J6-4 MISO1 J7-4
330R
R2
-
GND VCC C2 C3
1
R3
J6-5 J7-5
-
DAT1 SCK1
2
AB9V
G1
100uF 100uF
LED1
J6-6 J7-6
C1 C7
LED3
GND
GND
+
VCC
VCC
GND
VCC
VCC
VCC
22-27-2031-03 22-27-2031-03 22-27-2041-04
4.7K
B J1-1 J2-1 J3-1
B
R1 DS18B20 MQ2 SCL J3-2
MAX30102
J1-2 J2-2 J3-3
10K
MEGA328-P J3-4
J1-3 J2-3
1 23 GND
PC6(/RESET) PC0(ADC0)
24 GAS
1
2
PC1(ADC1)
GND
22 25 GND GND
GND PC2(ADC2)
S1
21 26
AREF PC3(ADC3)
20 27 SCL
3
4
GND 9
PB6(XTAL1/TOSC1)
X1
10 2 TX
X2 PB7(XTAL2/TOSC2) PD0(RXD)
VCC
VCC
3 RX
PD1(TXD)
VCC
4 DAT
PD2(INT0) 22-27-2041-04 22-27-2041-04
GND
8 5 TEMP
C GND PD3(INT1)
PD4(XCK/T0)
6 D4
J5-1
J5-2
SS J4-1
MPU6050
J4-2
C
7 11 D5 TX GPS MOSI LoRa SCL
VCC PD5(T1) MISO SDA J4-3
12 D6
VCC PD6(AIN0) RX J5-3 SCK J4-4
13 E
PD7(AIN1) J5-4
GND
X1 16MHz X2 PB0(ICP)
14 GND
2 1 15 RST GND
PB1(OC1A)
16 SS
PB2(SS/OC1B)
Q1 17 MOSI
PB3(MOSI/OC2)
18 MISO
PB4(MISO)
22pF 22pF PB5(SCK)
19 SCK
C5 C6 IC3
GND
D 16MHz D
Monitor
18-02-2026 11:58
Sheet: 1/2
SS SS
1 2 3 4 5 6
The transmitter section is built around the Arduino Uno microcontroller, which acts as the
central processing unit of the wearable device. It collects real-time data from multiple sensors
and prepares the data for wireless transmission.
The MAX30102 sensor measures heart rate and SpO2 levels using the I2C communication
protocol. The DS18B20 digital temperature sensor provides body temperature readings through
a one-wire interface. The MPU6050 accelerometer and gyroscope module is used for motion
tracking and fall detection. The GPS module communicates through UART and provides
real-time latitude and longitude information.
All sensors are powered using regulated 5V and 3.3V supplies. Proper decoupling capacitors
are used near sensor modules to reduce noise and ensure stable operation. The collected sensor
data is processed by the Arduino and transmitted to the LoRa module using SPI communication.
7
Voltage Level Converter Design in Transmitter
1 2 3 4 5 6
A A
VCC
VCC
VCC
VCC
+3V3
+3V3
+3V3
+3V3
VCC
R4 10K
BS170
BS170
BS170
BS170
R10
R12
10K
10K
10K
10K
10K
10K
10K
R11
T1
T2
T3
T4
R5
R7
R6
R9
SS1 MOSI1 MISO1 SCK1
SS MISO SCK
B B
MOSI
VCC
+3V3
VCC
+3V3
BS170
R16
R15
10K
10K
T6
BS170
R14
R13
10K
10K
T5
DAT1
RST1
DAT
RST
C C
D D
Monitor
18-02-2026 11:58
Sheet: 2/2
1 2 3 4 5 6
The LoRa transmitter module operates at 3.3V logic levels, whereas the Arduino Uno uses 5V
logic levels. Direct connection may damage the LoRa module. Therefore, a BS170 N-channel
MOSFET based voltage level converter is used to safely interface the two voltage domains.
Each communication line such as MOSI, MISO, SCK, SS, RST, and DATA consists of:
The MOSFET enables bidirectional level shifting between 5V and 3.3V signals. When the
gate-to-source voltage exceeds the threshold voltage, the MOSFET turns ON and allows signal
transfer. The pull-up resistors maintain proper logic levels and help control current and rise
time. This design ensures safe operation, protects the LoRa module from over-voltage, and
provides reliable high-speed communication.
8
Receiver
1 2 3 4 5 6
A A
+3V3
VCCINT
B BOARD2
B
SS
+5V
INT
IC3 MOSI LoRa
7805TV MISO
+5V
1 3 MOSI SCK
300R
+ +
VI VO EN D23
+5V
R3
GND VP D22
VN D1 GND
SG1
BUZZER
2
+
D34 D3
C12 C14 C15 C13
LED3
D35 D21
AB9V
MISO T1
-
100uF 0.1uF 0.1uF 100uF D32 D19
G1
EB2505
D33 D18 SCK BC547
D25 D5 SS 270R
-
D27 D16 R2
D14 D4
GND
130R
130R
D12 D2
R5
R1
C D13
GND
D15
GND GND C
+3V3
+5V
VIN 3V3
LED4
LED1
GND GND
GND GND
ESP32-DEVKITV1
D D
Rx
18-02-2026 12:04
Sheet: 1/1
1 2 3 4 5 6
The receiver section is built around the ESP32 microcontroller, which receives data from the
LoRa receiver module. The ESP32 operates at 3.3V logic levels and directly interfaces with the
LoRa module without additional level shifting.
Once the data is received, the ESP32 processes and formats the sensor readings. The processed
data is then transmitted to a cloud server or web dashboard using the built-in Wi-Fi module of
the ESP32.
A buzzer is connected to provide audible alerts during emergency conditions such as fall detec-
tion or abnormal health readings. LED indicators are used to show system status, communication
activity, and power availability.
Proper voltage regulation, common grounding, and stable power supply design are maintained
in both transmitter and receiver circuits to ensure reliable long-range communication and low
power consumption.
9
3.6 Hardware Implementation and Prototype Development
Transmitter
This figure shows the assembled transmitter PCB implementation. At this stage, all components
were manually soldered onto the fabricated PCB.
Careful soldering was performed to avoid short circuits and dry joints. After assembly, continu-
ity testing and power verification were carried out to ensure proper circuit functionality. Each
module was tested individually before integrating the complete system. This stage confirmed the
correctness of PCB design and prepared the system for final integration and enclosure assembly.
10
Receiver
This figure shows the assembled receiver PCB implementation. At this stage, all components
were mounted and soldered onto the fabricated PCB.
Proper soldering techniques were followed to ensure reliable connections and avoid faults.
After assembly, the circuit was tested for continuity and power stability. The receiver system
was verified by successfully receiving data transmitted from the wearable device. This stage
confirms the correct functioning of the receiver module and prepares it for real-time deployment
and monitoring.
11
Complete System Prototype
The above figure shows the complete prototype of the developed LoRa-based wearable device
along with the receiver unit.
The system was successfully tested by transmitting sensor data from the wearable transmitter to
the receiver module. The receiver was able to process and display the received data, and trigger
alerts when required. This confirms the effective implementation of the proposed system and
its suitability for remote rescue and health monitoring applications.
12
4. COMPONENTS AND SPECIFICATIONS
4.1 LoRa
LoRa (Long Range) is the main part that helps the system send data over long distances. It uses
a special wireless method to send signals far away while using very little power. It is designed
for networks that need to work in large areas with low energy consumption. This makes it
very useful in places where mobile networks or Wi-Fi are not available, such as disaster areas
or remote mountain regions. LoRa helps devices communicate reliably over long distances
without using much battery power.
Specifications:
13
• Data Rate: 0.3 kbps – 50 kbps
• Applications: Smart cities, agriculture, tracking, health monitoring, and remote rescue
4.2 ESP32
It works like a small, smart computer that can collect data from sensors, process it, and send it
over the internet. The ESP32 is also powerful enough to handle multiple tasks at once and is
compatible with platforms like Arduino IDE, making it easy to program.
14
Specifications:
• SRAM: 520 KB
The microcontroller operates using a Reduced Instruction Set Computer (RISC) architecture, en-
abling efficient and fast execution of instructions. It supports multiple communication protocols
15
such as UART, SPI, and I2C, making it suitable for interfacing with sensors like MAX30102,
MPU6050, GPS module, and LoRa transceiver.
Specifications:
• SRAM: 2 KB
• EEPROM: 1 KB
• Power Consumption: Low power with sleep modes (Idle, Power-down, Power-save)
A 3.7 V Li-ion battery consists of a graphite anode, a lithium metal oxide cathode, an electrolyte
that allows ion movement, and a separator that prevents short circuits. During charging, lithium
ions move from the cathode to the anode, and during discharge they return, producing electric
current. It is commonly used in smartphones, IoT modules, cameras, and wearable devices.
16
Specifications:
• Efficiency: 90–95
The DS18B20 is a versatile and popular digital temperature sensor manufactured by Maxim
Integrated. It is widely used in projects where temperature measurements need to be taken
in various locations, sometimes over long distances, due to its unique one-wire interface. A
key feature of the DS18B20 is that each sensor has a unique 64-bit serial code burned into it,
allowing multiple sensors to operate on the same single data line. This is known as multidrop
capability.
17
Specifications:
• Conversion Time:
The MQ-2 Gas Sensor is a semiconductor type of sensor widely used to detect and measure
the concentration of various combustible gases and smoke. It is particularly sensitive to LPG,
Propane, Methane, Alcohol, Hydrogen, and smoke.
The sensor works based on the principle of changing resistance. It contains a sensing material
(SnO2) whose electrical conductivity changes when it comes into contact with the target gas.
In the presence of a combustible gas, the gas is adsorbed onto the heated surface of the sensor,
which reduces the electrical resistance of the SnO2 layer. This change in resistance is then
converted into an output voltage, allowing a microcontroller to determine the gas concentration.
18
Specifications:
• Target Gases: High sensitivity to LPG, Propane, Methane (Natural Gas), Hydrogen,
Alcohol, and Smoke.
• Operating Voltage (VC). Typically 5V DC for heating the internal coil and for the circuit
logic.
• Preheat Time: Requires a long preheat time (up to 24-48 hours initially, and 20 minutes
before each use) to stabilize the heater and sensing material for accurate readings.
• Sensing Resistance (RS). Varies with gas concentration. At 1000 ppm of H2, it is typically
20 k to 200 k in clear air.
The MAX30102 is an integrated pulse oximetry and heart-rate monitoring module developed
by Maxim Integrated. It is a highly popular component for wearable and health-monitoring
devices due to its small size, low power consumption, and high performance.
19
It functions by using Photoplethysmography (PPG), employing two LEDs to measure the amount
of light absorbed by pulsatile blood flow, which allows it to calculate both blood oxygen
saturation (SpO2)and Heart Rate (HR).
Specifications:
The MPU-6050 is a 6-axis Motion Tracking Device that integrates a 3-axis MEMS gyroscope
and a 3-axis MEMS accelerometer on the same silicon chip, along with an on-chip Digi-
tal Motion Processor (DMP). This combination allows the sensor to simultaneously measure
acceleration, velocity, orientation, and gravity effects. It is a fundamental component for ap-
plications requiring inertial measurement, such as drones, robotics, motion-controlled gaming,
and human movement tracking. The MPU-6050’s primary benefit is its ability to provide stable,
filtered, and fused orientation data (using the DMP), reducing the computational burden on the
main microcontroller.
20
Specifications:
• Digital Motion Processor (DMP): On-chip processor for complex fusion of gyro and
accelerometer data, which offloads computational work from the host microcontroller.
• Communication Interface: Primary communication is via the fast-mode I2C serial inter-
face.
• Sensitivity: High sensitivity with a 16-bit Analog-to-Digital Converter (ADC) for each
of the 6 channels.
• Built-in Temperature Sensor: Includes a sensor for temperature measurement and com-
pensation, which improves the accuracy of the gyroscope and accelerometer readings.
The GPS Module is the core component responsible for achieving the project’s objective of
accurate emergency location tracking in remote areas. It captures the geographical coordinates
of the wearable unit, which are then transmitted via the LoRa module to the base station for
rescue operations. The module (often a model like the NEO-6M or L80) is selected specifically
for its high sensitivity and low power profile to maximize battery life in a wearable device.
21
Specifications:
• Primary Role: To acquire the precise Latitude, Longitude, and Altitude of the wearable
device by communicating with the Global Positioning Satellite network.
• Data Output: It transmits positioning data, time, and date information in the standard
NMEA 0183 protocol format.
• Integration: It communicates with the Arduino microcontroller typically using UART
(Universal Asynchronous Receiver-Transmitter) Serial Communication.
• Project Importance: Enables the critical location tracking and emergency alerting feature,
ensuring rescue teams can pinpoint the wearer in areas without cellular coverage.
• Operating Voltage: Typically operates at 3.3 V to 5 V (usually powered by the 5 V
regulated supply from the 7805 and often has its own on-board 3.3 V regulator).
• Communication Rate (Default): 9600 bps (Baud Rate), which is adjustable.
• Accuracy: Autonomous Horizontal Position Accuracy is typically less than 2.5 m CEP
(Circular Error Probability).
• Sensitivity (Tracking): High sensitivity, often around -165 dBm, to maintain lock on
satellites even in challenging environments like dense cover or canyons.
• Power Consumption (Tracking): Low current draw, generally in the range of 20 mA to
25 mA when actively tracking satellites.
The patch antenna used in this project is a compact, low-profile antenna designed for
efficient wireless communication in LoRa systems. It consists of a metallic patch placed
22
over a ground plane with a dielectric substrate in between. Unlike traditional wire
antennas, the patch antenna is flat and can be easily integrated into wearable devices,
making it highly suitable for this application.
The antenna operates at 433 MHz and is designed to provide stable signal transmission
with moderate gain. Although patch antennas have a shorter range compared to long wire
antennas, they offer better mechanical stability, compact size, and ease of integration.
The directional radiation pattern of the patch antenna helps in improving signal strength
in a specific direction, which can be useful in rescue scenarios.
Specifications:
23
The BS170 is an N-channel enhancement-mode MOSFET (Metal Oxide Semiconductor
Field Effect Transistor) commonly used for low-power switching applications. In the
LoRa-based wearable device, the BS170 is used as a switching component to control
devices such as buzzers, LEDs, or other external loads that require higher current than
the microcontroller can supply directly.
The MOSFET operates by applying a voltage to the Gate terminal, which allows current
to flow between the Drain and Source terminals. Since it is voltage-controlled, it provides
efficient switching with very low power consumption. This makes it ideal for battery-
operated IoT and wearable systems. The BS170 ensures safe and reliable control of
external components without overloading the ATmega328P or ESP32 microcontroller
pins.
Specifications:
4.12 Buzzer
24
A buzzer is an audio signaling device used to produce sound alerts or alarms. In the LoRa-
based wearable device, the buzzer is used to alert the user or nearby people in emergency
situations. It can beep or sound continuously when: Abnormal health readings are detected
(e.g., high temperature, low oxygen). A rescue alert or emergency signal is triggered. The
device successfully connects or sends data. Buzzers are of two main types — active (produces
sound when powered) and passive (requires a signal to generate sound).
Specifications:
• Voltage: 3V – 5V
• Current: 10 – 30 mA
• Frequency: 2 kHz – 4 kH
• Size: 12 – 15 mm
25
An LED indicator is a small light-emitting diode used to show the status or operation of the
device. In the LoRa-based wearable device, the LED helps the user understand different system
states through light signals.
For example:
It provides visual feedback to the user, ensuring easy monitoring of the device’s operation even
in low-light or noisy environments.
Specifications:
• Forward Current: 10 mA – 20 mA
26
5. SOFTWARE
This chapter presents the software implementation of the proposed LoRa-Based Wearable
Device for Remote Rescue and Health Monitoring system. The software is divided into three
main parts:
5.1 Transmitter
Final Destination: The transmitter unit is the wearable device that collects physiological and
location data from connected sensors and transmits it to the LoRa gateway.
Data Collection: It gathers temperature, SpO2 , heart rate, and GPS coordinates from the
respective sensors connected to the ATmega328P microcontroller.
Data Processing: The microcontroller formats the collected parameters into a structured comma-
separated data packet for efficient transmission.
Wireless Transmission: The LoRa module operates at 433MHz frequency and sends the data
packet over long distances using SPI modulation Power Efficiency: The transmitter is designed
for low power consumption, making it suitable for battery-operated wearable applications in
remote environments.
Specification:
27
• Transmission Interval: 5 seconds (configurable)
5.2 Receiver
Final Destination: The receiver unit acts as the LoRa gateway that receives transmitted health
and location data from the wearable transmitter.
Data Reception: It continuously listens for incoming LoRa packets and parses the received data
stream.
Data Processing: The ESP32 microcontroller extracts the transmitted parameters and forwards
them for display or server upload.
Network Integration: The receiver can connect to Wi-Fi and transmit the processed data to a
cloud server or web interface for real-time monitoring.
Alert Handling: It can trigger local alerts such as buzzer sounds or LED indications if abnormal
data is detected.
Specification:
5.3 Server
Final Destination: The server is the central node that receives all health and location data packets
transmitted by the wearable’s LoRa module via a LoRa Gateway (the receiver unit).
Data Storage: It hosts the Database (as per the ”Database Plan”) to permanently store the
time-stamped GPS coordinates,SpO2,and pulse rate readings.
28
Application Logic: It executes the core application logic, processing the raw data packets into
meaningful metrics and determining the severity of the wearer’s condition.
Visualization: It runs the User Interface (UI) (e.g., a web application or dashboard) that allows
rescue personnel to visualize the wearer’s real-time location on a map and monitor their historical
health trends.
Specification:
• Data Handling: Must handle Time-Series Data efficiently, ensuring every location and
health update is stored with an accurate timestamp.
• Alert Generation: Triggers instant emergency alerts based on pre-set thresholds (e.g.,
pulse rate too high/low, SpO2 too low) to notify rescue teams immediately.
• Mapping Interface: Integrates with mapping services (e.g., Google Maps or Open-
StreetMap) to convert the raw GPS Latitude/Longitude coordinates into an actionable
map pin.
• Connectivity: The connection between the LoRa Gateway and the Server is typically
established over the Internet (WiFi/Ethernet), often utilizing MQTT or HTTP protocols
for data transfer.
• Reliability: Requires high reliability and uptime, as continuous data availability is crucial
for effective remote rescue and health monitoring.
29
6. RESULTS AND DISCUSSION
The LoRa-based wearable device was successfully developed and tested for monitoring heart
rate, body temperature, oxygen saturation (SpO2), and GPS location. Data was transmitted
via LoRa communication over distances of 2–3 km in urban areas and up to 10 km in open
areas, with minimal packet loss. The sensor readings were accurate when compared to stan-
dard medical devices, and the GPS module provided reliable real-time location tracking. The
buzzer and LED indicators responded immediately during emergency simulations, providing
clear audible and visual alerts. The device’s lightweight and compact design made it com-
fortable for continuous wear, and power consumption remained low, confirming suitability for
long-term operation. Additionally, the device maintained stable performance under different
environmental conditions, including outdoor and moderately harsh settings, demonstrating its
robustness.
The results demonstrate that the device can perform real-time health monitoring and emergency
alerting in areas without traditional network coverage. Although the low data rate limits con-
tinuous high-frequency monitoring, an event-driven or periodic transmission approach proved
effective for timely alerts. The testing validates the feasibility of using a LoRa-based wearable
device for remote rescue and health monitoring, and further enhancements like cloud integra-
tion, AI-based predictive alerts, additional sensors, and satellite connectivity could make it a
more robust, scalable, and versatile system. These improvements would allow deployment in
disaster-prone regions, industrial sites, remote healthcare, and large-scale outdoor operations,
significantly enhancing safety and emergency response efficiency.
30
7. CONCLUSION
The LoRa-based wearable device provides reliable remote health monitoring and emergency
alerts in areas without traditional network coverage. It tracks vital signs and GPS location,
sending data via LoRa to a monitoring station. The buzzer and LED indicators give imme-
diate alerts, and the low-power, compact design ensures long-term operation. This project
demonstrates a cost-effective, energy-efficient solution to enhance safety, improve emergency
response, and support remote rescue operations.
The LoRa-based wearable device has significant potential for future enhancements. It can be
integrated with cloud platforms to allow real-time monitoring and data analysis by healthcare
providers. Additional sensors like blood pressure, ECG, or fall detection can make health
monitoring more comprehensive. AI algorithms can be added to predict health risks and
automatically trigger emergency alerts. Satellite communication can expand its coverage to
remote or disaster-affected areas. Further improvements in battery life, miniaturization, and
wearable comfort will make it suitable for continuous use in outdoor, industrial, or military
applications. This device can also form part of a networked system for monitoring multiple
individuals, enhancing safety and rescue efficiency in large-scale operations.
31
8. REFERENCE
[1] D. Pradhan, P. Goutham, S. S. Raj, and M. D. Prakash, “LoRa-based IoT system for
emergency assistance and safety in mountaineering,” International Journal of Safety and
Security Engineering, vol. 13, no. 4, pp. 543–550, 2023.
[2] S. Kim, J. Choi, and J. Park, “A Comparative Study of Fall Detection Algorithms based
on Accelerometer Data,” Journal of Sensor Science and Technology, vol. 26, no. 6, pp.
433–440, 2017.
[3] Semtech Corporation, “A Technical Overview of LoRa and LoRaWAN,” LoRa Alliance,
2017.
[4] Maxim Integrated, “MAX30102: Low-Power Pulse Oximeter and Heart-Rate Sensor,”
Datasheet, 2017.
32