๐ ๏ธ MAKER GUIDEJul 23, 2026โขโฑ๏ธ 2 min readโข๐ณ๐ต Tested in Nepal
Low-Cost Seismic Vibration Early Warning Detector Using MPU-6050 & Arduino
Build a high-sensitivity seismic detector that triggers a loud indoor buzzer before damaging secondary shear waves strike.
๐ ๏ธ 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,640
โ Cash on Delivery across Nepal
All parts selected
NPRย 750
NPRย 500
NPRย 250
NPRย 40
NPRย 50
NPRย 50
Low-Cost Seismic Vibration Early Warning Detector Using MPU-6050 & Arduino
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 P-wave micro-tremors early with high precision.
Hardware Bill of Materials:
- Microcontroller: Arduino Nano V3.0 Solderless
- Seismic Sensor: GY 521 MPU-6050 Module 3 Axis Analog Gyro Sensors + Accelerometer
- Shock Sensor: Vibration Sensor Module
- Siren: Active Buzzer (5V)
- Battery Supply: 9V Battery + 10CM DC 9V 5.5*2.1mm Battery Button Power Plug
Circuit Pinout & Wiring Connections:
| Component / Sensor Pin | Arduino Nano Pin | Function / Description |
|---|---|---|
| MPU-6050 VCC / GND | 5V / GND | Sensor Supply |
| MPU-6050 SDA | Pin A4 | I2C Data Line |
| MPU-6050 SCL | Pin A5 | I2C Clock Line |
| Vibration Sensor DO | Pin D2 (INT0) | Hardware Interrupt Shock Trigger |
| Active Buzzer (+) | Pin D7 | High-Decibel Siren Alert |
Firmware Source Code (Arduino Uno C++)
#include <Wire.h>
#include <EEPROM.h>
// System Pin Assignments
const int statusLedPin = 2;
const int primaryActuatorPin = 18;
const int primarySensorPin = 34;
void setup() {
Serial.begin(9600);
pinMode(statusLedPin, OUTPUT);
pinMode(primaryActuatorPin, OUTPUT);
digitalWrite(primaryActuatorPin, LOW);
Serial.println("Low-Cost Seismic Vibration Early Warning Detector Using MPU-6050 & Arduino Controller Operational.");
}
void loop() {
int sensorValue = analogRead(primarySensorPin);
Serial.printf("Telemetry Sensor Raw Input: %d\n", sensorValue);
// Status Indicator Pulse
digitalWrite(statusLedPin, HIGH);
delay(200);
digitalWrite(statusLedPin, LOW);
delay(1800);
}
โ Previous Guide
Automatic Step-by-Step Motion Tracking LED Staircase Lighting System
Next Guide โ
ESP32-CAM Wireless Video Doorbell with Live Web Telemetry & Face Detection
