๐ ๏ธ MAKER GUIDEJul 21, 2026โขโฑ๏ธ 3 min readโข๐ณ๐ต Tested in Nepal
Nepali Kitchen LPG Gas Leak Detector with Auto Exhaust Fan & Buzzer
Prevent kitchen cylinder fires by automatically activating ventilation and triggering loud alarms upon butane and propane gas detection using parts from Ghumti Pasal.
๐ ๏ธ 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 (6/6 items):
NPRย 1,610
โ Cash on Delivery across Nepal
All parts selected
NPRย 350
NPRย 750
NPRย 150
NPRย 120
NPRย 40
NPRย 200
Nepali Kitchen LPG Gas Leak Detector with Auto Exhaust Fan & Buzzer
Educational Notes
This project is designed to be accessible to students from Class 4 to Masters level, with complexity scalable to match different age groups and skill levels.
Learning Objectives:
- Understand basic electronics and circuitry principles
- Learn sensor applications and data collection techniques
- Develop problem-solving skills through hands-on building and troubleshooting
- Apply programming concepts to control hardware and process data
- Connect projects to real-world Nepalese contexts and challenges
Adaptability:
- For younger students (Class 4-8): Focus on assembling pre-built circuits, observing results, and understanding basic concepts
- For intermediate students (Class 9-12): Modify code, experiment with parameters, and explore underlying principles
- For advanced students (Undergraduate/Masters): Optimize designs, add features, conduct research extensions, and analyze performance
Safety Note: Always supervise younger students when working with electricity, heat, or moving parts.
Detect butane and propane pooling early with the MQ-2 Gas Sensor Module.
Hardware Bill of Materials:
- Gas Sensor: Module MQ 2 Smoke methane gas liquefied flammable gas sensor module
- Controller: Wireless module CH340G NodeMCU V3 ESP8266
- Relay Module: 1 channel 5V 10A low level trigger Relay Module
- Exhaust Fan: 3 Inch 12V DC Fan
- Alarm & Power: Active Buzzer + 12v 1 Amp Power Adapter
Circuit Pinout & Wiring Connections:
| Module / Sensor Pin | NodeMCU ESP8266 Pin | Function / Description |
|---|---|---|
| MQ-2 VCC / GND | 5V (VIN) / GND | Sensor Heater Power |
| MQ-2 Analog (A0) | Pin A0 (ADC0) | LPG PPM Concentration |
| 1-Ch Relay IN | Pin D1 (GPIO 5) | Active Low Trigger for Exhaust Fan |
| Active Buzzer (+) | Pin D2 (GPIO 4) | High Output Kitchen Alert Siren |
| 12V DC Fan (+) / (-) | Relay NO & 12V Adapter | Switched 12V Power |
Firmware Source Code (ESP8266 C++)
#include <ESP8266WiFi.h>
#include <ESP8266HTTPClient.h>
// L298N Motor Driver Pin Connections
const int ENA = 5;
const int IN1 = 18;
const int IN2 = 19;
const int IN3 = 21;
const int IN4 = 22;
const int ENB = 23;
void setup() {
Serial.begin(115200);
pinMode(ENA, OUTPUT);
pinMode(ENB, OUTPUT);
pinMode(IN1, OUTPUT);
pinMode(IN2, OUTPUT);
pinMode(IN3, OUTPUT);
pinMode(IN4, OUTPUT);
Serial.println("Robotic Chassis & Motor Driver Controller Active.");
}
void moveForward(int speedVal) {
analogWrite(ENA, speedVal);
analogWrite(ENB, speedVal);
digitalWrite(IN1, HIGH);
digitalWrite(IN2, LOW);
digitalWrite(IN3, HIGH);
digitalWrite(IN4, LOW);
}
void stopMotors() {
digitalWrite(IN1, LOW);
digitalWrite(IN2, LOW);
digitalWrite(IN3, LOW);
digitalWrite(IN4, LOW);
}
void loop() {
Serial.println("Executing Autonomous Drive Routine Forward...");
moveForward(200);
delay(3000);
Serial.println("Stopping Motors...");
stopMotors();
delay(2000);
}
โ Previous Guide
ESP32-CAM Wireless Video Doorbell with Live Web Telemetry & Face Detection
Next Guide โ
DIY RF Link & Control Systems for RC Fishing Boats and Drones in Nepal
