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

推荐订阅源

Apple Machine Learning Research
Apple Machine Learning Research
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
G
Google Developers Blog
博客园 - 司徒正美
J
Java Code Geeks
aimingoo的专栏
aimingoo的专栏
A
About on SuperTechFans
博客园 - 三生石上(FineUI控件)
WordPress大学
WordPress大学
T
The Blog of Author Tim Ferriss
D
Docker
大猫的无限游戏
大猫的无限游戏
D
DataBreaches.Net
腾讯CDC
V
Visual Studio Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
C
Check Point Blog
M
MIT News - Artificial intelligence
Jina AI
Jina AI
I
InfoQ
雷峰网
雷峰网
The Cloudflare Blog
美团技术团队
Engineering at Meta
Engineering at Meta

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
How I Built a WiFi Motion Detection App Using RSSI in Flu...
Md Sazzadul · 2026-05-19 · via DEV Community

WiFi signals are everywhere around us.

But most people only think of WiFi as internet connectivity.

What many don’t realize is that WiFi signals can also be used for experimental human sensing — including motion detection, presence estimation, breathing monitoring, and activity analysis.

Recently, I started building an experimental Flutter application called:

SenseWave: WiFi Motion Detector

The app explores how RSSI (Received Signal Strength Indicator) fluctuations can be analyzed in real time to estimate environmental changes caused by human movement.

This project combines:

  • Flutter
  • Android native WiFi scanning
  • RSSI signal analysis
  • Realtime visualization
  • Signal processing
  • Motion analytics

without using:

  • Camera
  • Microphone
  • Bluetooth
  • External sensors

What Is RSSI?

RSSI stands for:

Received Signal Strength Indicator

Every WiFi packet received by your device has a signal strength value.

Example:

-45 dBm → Strong signal
-72 dBm → Weak signal

Enter fullscreen mode Exit fullscreen mode

When humans move inside a room, they affect:

  • signal reflections
  • attenuation
  • multipath propagation
  • interference patterns

These small fluctuations can be analyzed to estimate motion and environmental activity.


What My App Can Detect

The app is experimental, but currently focuses on:

1. Presence Detection

Estimate whether someone is inside a room by analyzing RSSI variance and signal instability.

Use cases:

  • smart home occupancy
  • room activity monitoring
  • automation triggers

2. Motion Detection

Human movement causes rapid RSSI fluctuations.

The app analyzes:

  • variance
  • signal spikes
  • temporal instability

to estimate:

  • movement intensity
  • room activity level
  • motion events

3. Approximate Position Heatmap

Using RSSI changes from nearby access points, the app can generate an approximate activity heatmap.

Important:
This is NOT precise indoor positioning.

It is an experimental approximation based on signal disturbance.


4. Breathing Detection (Experimental)

Breathing creates micro signal fluctuations.

Using:

  • FFT analysis
  • low-pass filtering
  • periodicity detection

the app attempts to estimate breathing rate under controlled conditions.

Best results:

  • single person
  • short distance
  • minimal interference

5. Sleep Monitoring

The app can also analyze:

  • breathing stability
  • nighttime motion
  • movement interruptions

to create experimental sleep activity analytics.


6. Walking Pattern Recognition

Walking generates periodic RSSI peaks.

By analyzing:

  • frequency patterns
  • step periodicity
  • motion rhythm

the app estimates:

  • walking activity
  • movement intensity
  • approximate step frequency

Signal Processing

RSSI data is noisy.

To improve stability, I use:

  • moving average filters
  • FFT
  • Kalman filtering
  • variance analysis
  • peak detection

These help extract meaningful patterns from unstable WiFi signals.


Why This Technology Is Interesting

WiFi sensing could eventually enable:

  • smarter homes
  • contactless monitoring
  • occupancy automation
  • low-cost environmental sensing

without requiring cameras or wearable devices.

The combination of:

  • RF sensing
  • mobile apps
  • realtime signal processing
  • machine learning

opens many exciting possibilities.


Final Thoughts

Building SenseWave has been one of the most interesting Flutter projects I’ve worked on.

It combines:

  • mobile engineering
  • RF sensing
  • signal processing
  • realtime visualization
  • experimental AI concepts

all inside a Flutter application.

WiFi signals contain much more information than most people realize.

And we are only beginning to explore what’s possible.


Follow My Project

App:

SenseWave: WiFi Motion Detector


Exploring realtime RSSI-based human sensing using Flutter and Android.