Friday, 28 August 2026

Adaptive Self-Healing LoRa-Based Emergency Communication Network for Disaster Management


Based on your uploaded project concept, here is the complete implementation structure for the Adaptive Self-Healing LoRa-Based Emergency Communication Network for Disaster Management. The system uses ESP32 + LoRa disaster-sensing nodes, relay nodes, and an emergency control receiver.

1. Complete Project Units

Unit 1: Disaster Sensing / Transmitter Node

Function: Detect disaster conditions and transmit emergency data.

Components:

  • ESP32
  • SX1278 LoRa
  • MPU6050 vibration/earthquake sensor
  • Capacitive soil moisture sensor
  • BME280
  • Rain sensor
  • Water-level sensor
  • NEO-6M GPS
  • OLED display
  • SOS push button
  • Buzzer and LED
  • Battery supply

Working:

  1. ESP32 reads all sensors.
  2. Sensor values are compared with threshold values.
  3. GPS location is collected.
  4. If danger is detected, an emergency priority is assigned.
  5. ESP32 creates a data packet.
  6. LoRa transmits the packet to the nearest available node.

Example packet:

SRC:NODE1|TYPE:EMERGENCY|VIB:HIGH|SOIL:85|WATER:70|LAT:17.3850|LON:78.4867|HOP:0


2. Unit 2: LoRa Relay / Self-Healing Node

Components:

  • ESP32
  • SX1278 LoRa
  • OLED optional
  • Green/red LED
  • Buzzer optional

Working

The relay node:

  1. Receives the LoRa packet.
  2. Checks the packet ID to avoid duplicate forwarding.
  3. Checks whether the destination/control center is reachable.
  4. Forwards the packet to the next available route.
  5. Increases the hop count.
  6. If one route/node fails, forwards through another active relay.

Self-healing example

Normal:
NODE 1 → RELAY 1 → RELAY 2 → CONTROL CENTER

If RELAY 1 fails:
NODE 1 → RELAY 3 → RELAY 2 → CONTROL CENTER

This multi-hop alternate-path concept is the main innovation of the project.

Relay Node Software Logic

loop()
{
   checkIncomingLoRa();

   if(packetReceived)
   {
      if(packetNotPreviouslyReceived)
      {
         savePacketID();

         if(nextRouteAvailable)
         {
            forwardPacket();
         }
         else
         {
            selectAlternateRoute();
            forwardPacket();
         }
      }
   }

   sendHeartbeat();
   checkNeighbourStatus();
}


3. Unit 3: Emergency Control Receiver

Components:

  • ESP32
  • SX1278 LoRa
  • 16×2 LCD or OLED
  • Red LED
  • Green LED
  • Buzzer
  • Laptop/PC connection

Working

  1. Receiver continuously listens for LoRa packets.
  2. Receives disaster/emergency information.
  3. Displays node ID and emergency status.
  4. Activates red LED and buzzer for high-priority alerts.
  5. Sends the information to the PC dashboard through Wi-Fi/Serial/local network.
  6. Stores/display node status and routing information.

The receiver/control architecture in your project includes monitoring node status, emergency alerts, locations, and routing paths.


4. Unit 4: PC Emergency Monitoring Dashboard

The dashboard can display:

---------------------------------------------
 EMERGENCY COMMUNICATION CONTROL CENTER
---------------------------------------------
NODE ID       : NODE_01
STATUS        : EMERGENCY
VIBRATION     : HIGH
SOIL MOISTURE : 85 %
WATER LEVEL   : 72 %
TEMPERATURE   : 31.5 C
LOCATION      : GPS AVAILABLE
ROUTE         : N1 → R3 → R2 → CONTROL
HOP COUNT     : 3
LAST UPDATE   : ACTIVE
---------------------------------------------

Dashboard functions

  • Node online/offline status
  • Sensor monitoring
  • Emergency messages
  • GPS location
  • Route visualization
  • Relay node status
  • Packet/hop information
  • Emergency priority

5. Complete Step-by-Step Implementation

Step 1: First Test ESP32

Install ESP32 board support in Arduino IDE and upload a basic Blink program.

Step 2: Test SX1278 LoRa

Connect ESP32 and SX1278 using SPI.

Example wiring

SX1278 ESP32
VCC 3.3V
GND GND
SCK GPIO 18
MISO GPIO 19
MOSI GPIO 23
NSS GPIO 5
RST GPIO 14
DIO0 GPIO 26

Important: SX1278 must use 3.3V, not 5V.

Step 3: Test LoRa Transmitter and Receiver

First send a simple message:

HELLO FROM NODE 1

Then verify it at the receiver.

Step 4: Add MPU6050

Use the MPU6050 to measure:

  • Acceleration X
  • Acceleration Y
  • Acceleration Z

If vibration exceeds the selected threshold:

EARTHQUAKE ALERT

is generated.

Step 5: Add Soil Moisture Sensor

Read the analog value and convert it to percentage.

Possible use:

High soil moisture → Landslide risk indication

Step 6: Add Water-Level Sensor

Use it for flood detection.

Water level > threshold → FLOOD ALERT

Step 7: Add BME280

Measure:

  • Temperature
  • Humidity
  • Atmospheric pressure

Step 8: Add GPS

GPS provides:

Latitude
Longitude

The location is attached to every emergency packet.

Step 9: Add SOS Button

When pressed:

MANUAL SOS ALERT

is immediately transmitted with high priority.

Step 10: Combine All Sensors

ESP32 reads all sensor values and creates one structured packet.

NODE1,EMERGENCY,32.5,78,85,60,17.XXXX,78.XXXX

Step 11: Implement Relay Nodes

Build at least 2 relay nodes for a convincing demonstration.

Recommended prototype:

Sensor Node A ──┐
                ├── Relay Node 1 ── Receiver
Sensor Node B ──┘          │
                           X Failure

Alternative:
Sensor Node A → Relay Node 2 → Receiver

Step 12: Add Heartbeat Monitoring

Every node periodically sends:

NODE1,HEARTBEAT

If a heartbeat is not received for a specified time, the node is considered unavailable.

if(millis() - lastHeartbeat > TIMEOUT)
{
   nodeStatus = OFFLINE;
   selectAlternateRoute();
}

Step 13: Test Self-Healing

  1. Start all nodes.
  2. Send an emergency message.
  3. Confirm the normal route.
  4. Switch OFF one relay node.
  5. Send another emergency message.
  6. Demonstrate that another relay forwards the message.

This directly demonstrates the project's adaptive/self-healing functionality.


6. Software Code Structure

I recommend creating separate software for each unit.

Software 1

Disaster_Sensor_Node.ino

Read Sensors
     ↓
Check Thresholds
     ↓
Get GPS
     ↓
Generate Alert
     ↓
Create LoRa Packet
     ↓
Transmit

Software 2

LoRa_Relay_Node.ino

Receive Packet
     ↓
Check Packet ID
     ↓
Check Route
     ↓
Select Best Route
     ↓
Alternate Route if Required
     ↓
Forward Packet

Software 3

Emergency_Receiver.ino

Receive LoRa Data
     ↓
Decode Packet
     ↓
Display Information
     ↓
Emergency Alarm
     ↓
Send to Dashboard

Software 4

PC Dashboard

Receive ESP32 Data
     ↓
Update Node Status
     ↓
Display Sensor Data
     ↓
Show Emergency Message
     ↓
Display Route Information


7. Basic Transmitter ESP32 Software

#include <SPI.h>
#include <LoRa.h>

#define LORA_SS   5
#define LORA_RST  14
#define LORA_DIO0 26

#define SOIL_PIN 34
#define WATER_PIN 35
#define SOS_PIN 27

#define BUZZER 25
#define RED_LED 2

String nodeID = "NODE1";

void setup()
{
  Serial.begin(115200);

  pinMode(SOS_PIN, INPUT_PULLUP);
  pinMode(BUZZER, OUTPUT);
  pinMode(RED_LED, OUTPUT);

  SPI.begin(18, 19, 23, 5);

  LoRa.setPins(LORA_SS, LORA_RST, LORA_DIO0);

  if (!LoRa.begin(433E6))
  {
    Serial.println("LoRa initialization failed!");
    while (1);
  }

  Serial.println("Disaster Sensor Node Started");
}

void loop()
{
  int soilValue = analogRead(SOIL_PIN);
  int waterValue = analogRead(WATER_PIN);

  bool sos = digitalRead(SOS_PIN) == LOW;

  String status = "NORMAL";

  if (soilValue > 2500)
    status = "LANDSLIDE_RISK";

  if (waterValue > 2000)
    status = "FLOOD_ALERT";

  if (sos)
    status = "SOS_EMERGENCY";

  if (status != "NORMAL")
  {
    digitalWrite(RED_LED, HIGH);
    digitalWrite(BUZZER, HIGH);
  }
  else
  {
    digitalWrite(RED_LED, LOW);
    digitalWrite(BUZZER, LOW);
  }

  String packet =
    "SRC=" + nodeID +
    "|TYPE=" + status +
    "|SOIL=" + String(soilValue) +
    "|WATER=" + String(waterValue) +
    "|HOP=0";

  LoRa.beginPacket();
  LoRa.print(packet);
  LoRa.endPacket();

  Serial.println(packet);

  delay(5000);
}


8. Basic Relay Node Software

#include <SPI.h>
#include <LoRa.h>

#define LORA_SS   5
#define LORA_RST  14
#define LORA_DIO0 26

String relayID = "RELAY1";

void setup()
{
  Serial.begin(115200);

  SPI.begin(18, 19, 23, 5);

  LoRa.setPins(LORA_SS, LORA_RST, LORA_DIO0);

  if (!LoRa.begin(433E6))
  {
    while (1);
  }

  Serial.println("Relay Node Started");
}

void loop()
{
  int packetSize = LoRa.parsePacket();

  if (packetSize)
  {
    String received = "";

    while (LoRa.available())
    {
      received += (char)LoRa.read();
    }

    Serial.println("Received: " + received);

    received += "|VIA=" + relayID;

    delay(200);

    LoRa.beginPacket();
    LoRa.print(received);
    LoRa.endPacket();

    Serial.println("Forwarded: " + received);
  }
}


9. Basic Receiver Software

#include <SPI.h>
#include <LoRa.h>

#define LORA_SS   5
#define LORA_RST  14
#define LORA_DIO0 26

#define RED_LED 2
#define GREEN_LED 4
#define BUZZER 25

void setup()
{
  Serial.begin(115200);

  pinMode(RED_LED, OUTPUT);
  pinMode(GREEN_LED, OUTPUT);
  pinMode(BUZZER, OUTPUT);

  SPI.begin(18, 19, 23, 5);

  LoRa.setPins(LORA_SS, LORA_RST, LORA_DIO0);

  if (!LoRa.begin(433E6))
  {
    while (1);
  }

  Serial.println("Emergency Receiver Started");
}

void loop()
{
  int packetSize = LoRa.parsePacket();

  if (packetSize)
  {
    String message = "";

    while (LoRa.available())
    {
      message += (char)LoRa.read();
    }

    Serial.println(message);

    if (message.indexOf("EMERGENCY") >= 0 ||
        message.indexOf("ALERT") >= 0 ||
        message.indexOf("RISK") >= 0)
    {
      digitalWrite(RED_LED, HIGH);
      digitalWrite(GREEN_LED, LOW);
      digitalWrite(BUZZER, HIGH);

      delay(1000);

      digitalWrite(BUZZER, LOW);
    }
    else
    {
      digitalWrite(RED_LED, LOW);
      digitalWrite(GREEN_LED, HIGH);
    }
  }
}


Recommended Final Prototype

For the best final-year demonstration:

                    ┌──────────────────┐
                    │ SENSOR NODE 1    │
                    │ ESP32 + Sensors  │
                    └────────┬─────────┘
                             │
                           LoRa
                             │
                    ┌────────▼─────────┐
                    │ RELAY NODE 1     │
                    │ ESP32 + LoRa     │
                    └────────┬─────────┘
                             │
                    Normal Route
                             │
                    ┌────────▼─────────┐
                    │ CONTROL RECEIVER │
                    └──────────────────┘

       Alternative / Self-Healing Route
                    ┌──────────────────┐
                    │ RELAY NODE 2     │
                    │ ESP32 + LoRa     │
                    └──────────────────┘

Next development stage: the basic code above should be upgraded into a complete integrated system with MPU6050 + BME280 + GPS + water level + soil sensor, packet IDs, duplicate prevention, heartbeat monitoring, route tables, acknowledgements, and actual alternate-route selection. This matches the uploaded project's intended ESP32/LoRa sensing, multi-hop routing, and emergency-control architecture.

Thursday, 27 August 2026

Top Final Year Project Ideas for Electronics Engineering ECE and Telecommunication

The Major Projects for ECE Students Mainly includes based on IoT, Arduino, Raspberry Pi, Embedded System, Robotics along with Project Ideas.

IoT-Based Coal Mine Safety Monitoring System Using Zigbee and ESP8266 with ThingSpeak Cloud

https://www.youtube.com/watch?v=vpM1J1suKGE

 

Arduino Smart Accident🚗Detection System 🚨 | GPS🛰️+ GSM Instant SMS/Call📱Alerts for Emergency Rescue📍

https://www.youtube.com/watch?v=8RiVtf42kd0

 

An IoT-Based GPS/GSM Safety Bracelet for Women and Elderly with SOS & Real-Time Location Tracking

https://www.youtube.com/watch?v=mHx7xVBDEu0

 

IoT Based Vehicle🚗Accident Detection & Location📍Tracking🛰️System📱

https://www.youtube.com/watch?v=vTHXnjO5woQ

 

Health Monitoring System of Patient Based on IOT Using ESP8266 & Arduino

https://www.youtube.com/watch?v=moL_hz8dGzg

 

GPS + GSM Based Underground Cable Fault Detection with Arduino

https://www.youtube.com/watch?v=v0kskTbRx-8

 

Vehicle Accident 🚕 Alert System Using ESP32 SIM800L, GPS  Module & Traceable 📍 SMS Notification

https://www.youtube.com/watch?v=Y_t3AmJDR6Y

 

RFID SmartCart Using Arduino & ESP32 | Automated Billing, UPI Digital Payment & IoT Cloud Automation

https://www.youtube.com/watch?v=ZVtfOBXtT5E

 

Intelligent Vehicle Tracking & Anti-Theft Alert System Using GPS, GSM and Google Maps Integration

https://www.youtube.com/watch?v=jpz_WZbGpiQ

 

Design and Development of Automatic Cable Fault Distance Locator using Arduino, GSM, GPS

https://www.youtube.com/watch?v=bTXzLkzXpSE

 

Health Monitoring System of Patient Based on IOT Using ESP8266 & ARDUINO

https://www.youtube.com/shorts/7B01Ano90LI

 

IOT Based Smart Agriculture Monitoring System Using Arduino With GPRS Modem Project

https://www.youtube.com/watch?v=ivYRwOur6kE

 

Smart Agriculture IoT Solution - IoT Sensors (Soil Moisture, Humidity, Temperature)

https://www.youtube.com/watch?v=J2q4s4HUPYI&t=223s

 

Arduino Based Alcohol Sense Engine Lock Using GPS & GSM

https://www.youtube.com/watch?v=s4LoqIzyayI

 

AGRO-INTEL: Smart Agriculture Intelligence System Using IoT, AI & Cloud SMS / E-Mail Alerts

https://www.youtube.com/watch?v=8e25zZZv5ac

 

SOLDIER TRACKING AND HEALTH MONITORING SYSTEMS

https://www.youtube.com/watch?v=cZhrTKGJs0o

 

AI Wireless Hand Gesture Recognition & Home Automation Using Raspberry Pi Pico with OpenCV & Python

https://www.youtube.com/watch?v=7DMOGaqD56Y

 

Arduino and GSM based Prepaid Energy Meter with Theft Alert

https://www.youtube.com/watch?v=v2vAXLuRxFI

 

IOTBased Smart Agriculture Monitoring System Using Arduino With GPRS Modem Project

https://www.youtube.com/watch?v=ivYRwOur6kE

 

An IoT-Based GPS/GSM Safety Bracelet for Women and Elderly with SOS & Real-Time Location Tracking

https://youtu.be/mHx7xVBDEu0?si=xptYEJrGurxRnHPk

 

AI-Enabled Vehicle Accident Detection with Ambulance Rescue System Using Arduino / GSM / GPS

https://www.youtube.com/watch?v=Wuqg5a9fuY0

 

DYNAMIC ACCIDENT DETECTION AND ALERT SYSTEM USING ARDUINO

https://www.youtube.com/watch?v=4Csa3PwLf7w

 

Women Safety Bangle with GPS & GSM | Real-Time Location Tracking, SOS Call & SMS Alert System

https://www.youtube.com/watch?v=Okgxif9-u8k

Women Safety👜Pouch bag Using RF, GSM,🛰️GPS and Arduino with Location📍Tracking📱Alerts

https://www.youtube.com/watch?v=cVCe7DG0vgk

Vehicle Accident 🚕 Alert System Using ESP32 SIM800L, GPS Module & Traceable 📍 SMS Notification

https://www.youtube.com/watch?v=Y_t3AmJDR6Y

 

 

Industrial IoT Sensors: IOT Based Industrial Fault Monitoring System using Arduino

https://www.youtube.com/watch?v=UZMsfN2EKMM

 

Health Monitoring System of Patient Based on IOT Using ESP8266 & Arduino

https://www.youtube.com/watch?v=moL_hz8dGzg

 

Tuesday, 25 August 2026

Best Engineering Latest Final Year Project Ideas for ECE & EEE Students 2026-27

  1. Wifi HomeAutomation | NodeMcu ESP8266 | Blynk App
  2. WATCH PROJECT YOU TUBE VIDEO LINK


  3. Getting started with NodeMCU / ESP8266 12E
  4. WATCH PROJECT YOU TUBE VIDEO LINK


  5. P10 LED Display with Arduino Nano
  6. WATCH PROJECT YOU TUBE VIDEO LINK


  7. Arduino Based Automatic Plant Watering System with Soil Moisture sensor
  8. WATCH PROJECT YOU TUBE VIDEO LINK


  9. Self Service Automated Petrol Pump Using RFID Technology
  10. WATCH PROJECT YOU TUBE VIDEO LINK


  11. Anti-theft bag alarm system | Luggage Security Alarm
  12. WATCH PROJECT YOU TUBE VIDEO LINK


  13. Automatic Car Parking With Empty Slot Detection
  14. WATCH PROJECT YOU TUBE VIDEO LINK


  15. Intelligent System for Vehicles with Alcohol Detection and SMS Alert
  16. WATCH PROJECT YOU TUBE VIDEO LINK


  17. Automatic Railway Track Crack Detection System Using GSM & GPS
  18. WATCH PROJECT YOU TUBE VIDEO LINK


  19. Smart Homes: Bluetooth Based Smart Sensors Monitoring System for Automation
  20. WATCH PROJECT YOU TUBE VIDEO LINK


  21. IoT Based Wireless Multi functional Robot for Military Applications
  22. WATCH PROJECT YOU TUBE VIDEO LINK


  23. IOT Based Child Monitoring System Using Android Smartphone App with Video Streaming Baby Monitor
  24. WATCH PROJECT YOU TUBE VIDEO LINK


  25. Temperature Monitoring and Control Systems With CAN Bus Using ARM7 LPC2148
  26. WATCH PROJECT YOU TUBE VIDEO LINK


  27. Iot Based Smart Farming in Smart Agriculture Monitoring System
  28. WATCH PROJECT YOU TUBE VIDEO LINK


  29. Eye Blink + Alcohol + MEMS + TEMPERATURE + Arduino uno + GSM + GPS + Google Map Location
  30. WATCH PROJECT YOU TUBE VIDEO LINK


  31. Automatic Railway Gate Control Using 8051 & IR Sensor
  32. WATCH PROJECT YOU TUBE VIDEO LINK


  33. Smart Medicine Reminder Box | e-pill Medication Reminders
  34. WATCH PROJECT YOU TUBE VIDEO LINK


  35. Arduino Based Traffic Light Control System for Emergency Vehicles Using Radio Frequency
  36. WATCH PROJECT YOU TUBE VIDEO LINK


  37. Wireless Smart Trolley for Shopping Malls using RFID and ZIGBEE
  38. WATCH PROJECT YOU TUBE VIDEO LINK


  39. Communication Between Two HC-05 Bluetooth Module As Master and Slave with Arduino
  40. WATCH PROJECT YOU TUBE VIDEO LINK


  41. Design and Development of Sun Tracking Solar Panel
  42. WATCH PROJECT YOU TUBE VIDEO LINK


  43. Arduino Based Ultrasonic Radar System | How to Make a Radar with Arduino | Arduino Project
  44. WATCH PROJECT YOU TUBE VIDEO LINK


  45. Wet and Dry Waste collection bins
  46. WATCH PROJECT YOU TUBE VIDEO LINK


  47. Servo Motor Interfacing with Arduino
  48. WATCH PROJECT YOU TUBE VIDEO LINK


  49. Automatic Water Level Indicator For Overhead Tank Using Arduino With Alarm and Pump Controller
  50. WATCH PROJECT YOU TUBE VIDEO LINK


  51. Iot Based Fire Department Alerting System Display on Google Maps
  52. WATCH PROJECT YOU TUBE VIDEO LINK


  53. Portable Camera Based Assistive Text & Product Label Reading For Blind Persons
  54. WATCH PROJECT YOU TUBE VIDEO LINK


  55. Portable Embedded Data Display and Control Unit using CAN Bus
  56. WATCH PROJECT YOU TUBE VIDEO LINK


  57. Fully Automatic Water Pump Controller Using Arduino with Tank & Sump
  58. WATCH PROJECT YOU TUBE VIDEO LINK


  59. Hand Gesture Controlled Robot using Arduino | ADXL335 Accelerometer | wireless RF (433Mhz)
  60. WATCH PROJECT YOU TUBE VIDEO LINK


  61. Garbage Monitoring with Weight Sensing Using Arduino, HX711 Load Cell Amplifier
  62. WATCH PROJECT YOU TUBE VIDEO LINK


  63. Product Label Reading System For Visually Challenged People
  64. WATCH PROJECT YOU TUBE VIDEO LINK


  65. IOT Based Garbage Monitoring System Using Raspberry Pi
  66. WATCH PROJECT YOU TUBE VIDEO LINK


  67. ARM Cortex-M3 mbed LPC1768 | Mbed | MEMS | GSM | GPS | Vehicle | Accident | Detection
  68. WATCH PROJECT YOU TUBE VIDEO LINK


  69. Vehicle Theft Detection Using GPS, GSM and Arduino
  70. WATCH PROJECT YOU TUBE VIDEO LINK


  71. Digital Petrol Pump using RFID Card
  72. WATCH PROJECT YOU TUBE VIDEO LINK


  73. Smart Agriculture Using IOT
  74. WATCH PROJECT YOU TUBE VIDEO LINK


  75. Real Time Agriculture/Paddy Crop Field Monitoring System using ARM
  76. WATCH PROJECT YOU TUBE VIDEO LINK


  77. IoT Based Smart Attendance System | Attendance System Based On RFID Project Using IOT
  78. WATCH PROJECT YOU TUBE VIDEO LINK


  79. Voice Recognition Based Wireless Home Automation System
  80. WATCH PROJECT YOU TUBE VIDEO LINK


  81. Vehicle Theft Location Intimation by GPS/GSM to the Owner
  82. WATCH PROJECT YOU TUBE VIDEO LINK


  83. Blind Stick Using Ultrasonic Sensor with Voice Announcement
  84. WATCH PROJECT YOU TUBE VIDEO LINK


  85. FINGER PRINT BASED ELECTRONIC VOTING SYSTEM
  86. WATCH PROJECT YOU TUBE VIDEO LINK


  87. Finger Print Sensor (R305) - R305 Fingerprint Scanner Module
  88. WATCH PROJECT YOU TUBE VIDEO LINK


  89. Research on Coal Mine Safety Monitoring System Based on Zigbee
  90. WATCH PROJECT YOU TUBE VIDEO LINK


  91. Android based Portable Hand Sign Recognition System | GSM | 4 - FLUX | BLUETOOTH
  92. WATCH PROJECT YOU TUBE VIDEO LINK


  93. IoT Based Smart Door Lock System
  94. WATCH PROJECT YOU TUBE VIDEO LINK


  95. Smart Farming using IOT
  96. WATCH PROJECT YOU TUBE VIDEO LINK


  97. Electric Shock + GSM + GPS + ARDUINO + GOOGLE MAP + Women's Safety Security
  98. WATCH PROJECT YOU TUBE VIDEO LINK


  99. Smart School Bus: IoT Based School Bus Monitoring System
  100. WATCH PROJECT YOU TUBE VIDEO LINK


  101. IoT Based Smart Waste Management System
  102. WATCH PROJECT YOU TUBE VIDEO LINK


  103. Smart Farming: Wifi Based Agriculture Sensors (Temperature, Humidity and moisture) Android App
  104. WATCH PROJECT YOU TUBE VIDEO LINK


  105. Body TouchSensor Based Women Safety Device to Measure HeartBeat and Location
  106. WATCH PROJECT YOU TUBE VIDEO LINK


  107. Alcohol Detection System with Engine Locking using GSM and GPS
  108. WATCH PROJECT YOU TUBE VIDEO LINK


  109. Automatic Watering System for Plants using GSM with SOLAR Module
  110. WATCH PROJECT YOU TUBE VIDEO LINK


  111. Automatic Room Light Controller with Visitor Counter
  112. WATCH PROJECT YOU TUBE VIDEO LINK


  113. Agricultural Field Monitoring and Controlling of Drip Irrigation using IOT
  114. WATCH PROJECT YOU TUBE VIDEO LINK


  115. Smart Car Parking Lot Management System in Shopping Mall
  116. WATCH PROJECT YOU TUBE VIDEO LINK


  117. Real Time Patient Health Monitoring System Through IOT Using Sensors, Android App
  118. WATCH PROJECT YOU TUBE VIDEO LINK


  119. RFID Based Shopping Trolley
  120. WATCH PROJECT YOU TUBE VIDEO LINK


  121. Happy New Year | P10 Red Color LED Moving Message Display
  122. WATCH PROJECT YOU TUBE VIDEO LINK