惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
小众软件
小众软件
博客园 - 三生石上(FineUI控件)
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园_首页
Last Week in AI
Last Week in AI
美团技术团队
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Apple Machine Learning Research
Apple Machine Learning Research
WordPress大学
WordPress大学
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - Franky
The Cloudflare Blog
罗磊的独立博客
月光博客
月光博客
N
Netflix TechBlog - Medium
C
Check Point Blog
Microsoft Security Blog
Microsoft Security Blog
F
Fortinet All Blogs
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Microsoft Azure Blog
Microsoft Azure Blog
IT之家
IT之家
Jina AI
Jina AI
J
Java Code Geeks

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
What the leak detector taught me about real-world noise
Harsh Raj · 2026-05-03 · via DEV Community

Harsh Raj

Before I built the leak detector, I thought sensors just worked. You connect them, they give you data, you use that data. Simple.
That is not how it goes.
The problem
The SW-420 vibration sensor is a small, cheap component. When something vibrates near it, the output goes HIGH. When it stops, it goes LOW. On paper this is exactly what you need to detect a leaking pipe — the leak creates a constant vibration, the sensor picks it up, you trigger an alarm.
In reality, everything vibrates. A truck driving past the road outside. Someone walking nearby. Wind hitting the surface. Even just tapping the table the circuit is sitting on.
During early testing, the alarm was going off constantly. Not because of leaks. Because of everything else.
First attempt at fixing itthresholds
My first idea was to add a threshold. Only trigger if the vibration is strong enough. Set a minimum magnitude using the ADXL345 accelerometer and ignore anything below it.
This helped a little. But trucks and heavy footsteps still crossed the threshold. The alarm still fired randomly.
The actual fix — time
The key insight was simple once I thought about it: a real leak is continuous. A truck passes in under a second. A footstep lasts 0.3 seconds. But a pipe leak hisses 24 hours a day without stopping.
So instead of asking "is the vibration strong enough right now?" I changed the question to "has the vibration been strong enough for the last 2 seconds?"
I added a timer. The system only confirms a leak after the signal stays above the threshold for 2 full continuous seconds. If the vibration drops even once during those 2 seconds, the timer resets.
False alarms dropped to zero.
The rolling average
There was still one small problem. The raw accelerometer reading fluctuates even during real vibration. It would dip briefly below the threshold for one reading, then come back up. This was causing the timer to reset unnecessarily.
The fix was a 1-second rolling average. Instead of looking at the current reading, the system looks at the average of the last 10 readings (one per 100ms). A single dip only affects the average by 10% — not enough to reset the timer.
After adding this, the countdown ran smoothly through continuous vibration with no resets.
What I learned
Real-world data is messy. The clean signal you imagine in your head when you design a system rarely exists in practice. You have to expect noise, plan for it, and build filtering into the system from the start.
The 2-second timer and the rolling average are both simple ideas. But they are the difference between a circuit that triggers randomly and one that works reliably.
Simple solutions, when applied to the right problem, work better than complex ones.

This was part of my Vibration Leak Detector mini project, completed in my first year at DIT University under Dr. Nafees Ahmed.