Track Order My Account
Ghumti Pasal
⌘K
Account
My AccountManage orders, wishlist & account
DashboardMy OrdersWishlistNotifications
Sign In / Register
Home
Shop
Blog
Sales
Todays Deals
🔥 Super DealsTop offers with 8%+ discount!
Ultrasonic sensor bracket−10%
Ultrasonic sensor bracket
NPR 45NPR 50
YF-S201 Water flow sensor flowmeter Hall flow sensor Water control sensor 1-30L/min 2.0MPa.−16%
YF-S201 Water flow sensor flowmeter Hall flow sensor Water control sensor 1-30L/min 2.0MPa.
NPR 504NPR 600
16 Channel 12-bit PWM/Servo Driver-I2C interface PCA9685−10%
16 Channel 12-bit PWM/Servo Driver-I2C interface PCA9685
NPR 585NPR 650
80mm 3-blades propellers for DIY Models RC boat models plastics props fit for 2mm shaft toy spare parts−16%
80mm 3-blades propellers for DIY Models RC boat models plastics props fit for 2mm shaft toy spare parts
NPR 42NPR 50
View All Deals (52 items) →
Account
Ghumti Pasal

Ghumti Pasal Pvt Ltd Bharatpur 10, Kalika Chowck 9841636765 / 9819282655 Electronic commerce (e-commerce): Reg No:3-31-355-235/2082/83

Join our newsletter

New arrivals, offers and restock alerts — straight to your inbox.

Shop

All ProductsBlog

Company

AboutContact

Help

Shipping & ReturnsPrivacy Policy
info@ghumtipasal.com.np9841636765Bharatpur 10
HomeShopSaleCartAccount
← Back to All Maker Guides
🛠️ MAKER GUIDEJul 23, 2026•⏱️ 2 min read•🇳🇵 Tested in Nepal

IoT Smart Kitchen Safety System for family members in Nepal: Gas Leak & Stove Monitor

Prevent LPG leaks and kitchen fire hazards with a simple ESP32 alarm system that monitors smoke, gas, and stove temperatures.

🏠SMART HOME & SAFETY

IoT Smart Kitchen Safety System for family members in Nepal: Gas Leak & Stove Monitor

Ghumti Pasal•Engineering Project
🛠️ BILL OF MATERIALS (BOM)

Required Hardware & Component Checklist

Curated components verified for this project. Check the items you need, adjust quantities, and add straight to cart:

Estimated Total (3/3 items):
NPR 1,670
✓ Cash on Delivery across Nepal
All parts selected
1
NPR 1,200
1
NPR 200
1
NPR 270
💬 Order Kit on WhatsApp
Browse All Store Products →

IoT Smart Kitchen Safety System for family members in Nepal: Gas Leak & Stove Monitor

Most households in Nepal rely on liquefied petroleum gas (LPG) cylinders for cooking. Leaks from worn-out rubber hoses or old brass regulators are a major source of home fires. Additionally, leaving a stove unattended for long periods can lead to boiling over or fires.

You can construct a simple safety system that monitors gas presence, smoke levels, and stove proximity to trigger a local alarm and alert you on your phone.


Hazards to Detect

  1. LPG Leakage: LPG is heavier than air and sinks. An MQ-2 or MQ-5 sensor placed near the floor level under the gas stove detects propane/butane leaks.
  2. Overheating Stoves: A non-contact temperature sensor pointed at the stove detects if a pot has boiled dry and is overheating.
  3. Kitchen Occupancy: A PIR sensor detects if someone is in the kitchen. If the stove is hot but no motion is detected for 15 minutes, it flags a warning.

Circuit Components

  • Microcontroller: ESP32 C3 (needs to connect to home WiFi to send messages).
  • Gas Sensor: MQ-2 sensor module.
  • Temperature Sensor: MLX90614 infrared temperature sensor.
  • Actuators: Active buzzer and a relay module to control an exhaust fan.

Core Monitoring Code

const int GAS_PIN = 34; // Analog pin for MQ-2
const int BUZZER_PIN = 12;
const int GAS_THRESHOLD = 700; // Calibrate for your kitchen

void setup() {
  Serial.begin(115200);
  pinMode(BUZZER_PIN, OUTPUT);
}

void loop() {
  int gasValue = analogRead(GAS_PIN);
  Serial.print("Gas Level: ");
  Serial.println(gasValue);

  if (gasValue > GAS_THRESHOLD) {
    // Sound local alarm
    digitalWrite(BUZZER_PIN, HIGH);
    sendAlertNotification();
  } else {
    digitalWrite(BUZZER_PIN, LOW);
  }
  delay(1000);
}

void sendAlertNotification() {
  // Call API to send message or WhatsApp
}

Deployment Guidelines

  • Positioning: Mount the MQ-2 sensor low down (around 30 cm from the floor) near your LPG cylinder, because propane and butane are heavier than air and collect at floor level.
  • Backup Power: Since power cuts can happen at any time, run the monitor from a 5V USB battery pack or a battery shield. This ensures it stays active even during load shedding.
📣 Share this Project Guide:💬 WhatsAppFacebook𝕏 / Twitter
← Previous Guide
IoT Smart Wristband for आमाबुवा in Nepal: DIY Vital Signs Tracker Using ESP32
Next Guide →
Automatic Step-by-Step Motion Tracking LED Staircase Lighting System

More Practical STEAM & IoT Guides

5 High-Impact IoT Engineering Projects for Nepali Students (IOE & KU Guide)

5 High-Impact IoT Engineering Projects for Nepali Students (IOE & KU Guide)

IoT Weather Reporting System with Arduino & Raspberry Pi LoRa Gateway

IoT Weather Reporting System with Arduino & Raspberry Pi LoRa Gateway

IoT IV Bag Monitoring & Alert System for Healthcare Facilities

IoT IV Bag Monitoring & Alert System for Healthcare Facilities