01 What Is RuView?
RuView is a free, open-source project on GitHub, built by a developer using the handle ruvnet. The pitch is simple and dramatic: take a WiFi chip that costs less than a coffee, point it at a room, and it can tell you if someone is there, how they're breathing, whether their heart rate is climbing, and even roughly what shape their body is in — all without a single camera, microphone, or wearable device.
The project was originally called wifi-densepose, borrowing its name from Meta's DensePose computer-vision research, and was later rebranded to RuView. It exploded into the mainstream in early 2026, hitting the number-one spot on GitHub's trending page and picking up thousands of stars in a single day.
That idea is not science fiction. It's a real, decades-old field of research. What's contested is whether RuView's low-cost, consumer-grade version actually delivers on the more dramatic parts of that promise. We'll walk through both sides.
02 How WiFi Sensing Actually Works
Every WiFi router and device is constantly measuring the quality of its own connection. To do that, it looks at something called Channel State Information (CSI) — a technical readout of how a radio signal changed on its way from sender to receiver: which frequencies got weaker, which got delayed, which bounced off something on the way.
Normally this data is thrown away the instant it's used to keep your video call from freezing. The insight behind WiFi sensing is that a human body sitting in that radio path changes those measurements in small, somewhat predictable ways. Breathing causes a rhythmic pattern. Walking causes a bigger, faster disturbance. Standing still versus lying down causes different shapes in the data.
RuView captures that CSI data with an ESP32 chip, feeds it into a small trained AI model, and asks the model to guess what's happening in the room based on those patterns — the same basic idea as recognizing a voice from an audio waveform, just applied to radio waves instead of sound.
03 The Hardware: What You'd Actually Buy
Part of why RuView spread so fast is the price tag. The core sensor is an ESP32-S3 board — a tiny, widely available microcontroller that normally costs around $9. The project recommends using between one and six of these per room. Optionally, you can pair them with a small companion computer (a low-cost Raspberry Pi Zero-class board) that runs the AI model locally, so nothing needs to touch the internet or a cloud server.
# 1. Flash the open-source firmware onto a $9 ESP32-S3 board flash ruview-firmware.bin --port /dev/ttyUSB0 # 2. Run the local sensing server (no cloud required) docker run --net=host ruvnet/wifi-densepose:latest --source esp32 # 3. The server exposes presence, motion, and (claimed) vital-sign # data over your local network to apps like Home Assistant
Because it runs entirely on your own network, RuView is marketed as private by design — no subscription, no company servers, no app on anyone's phone. That local-first design is one of the least controversial and most genuinely appealing parts of the project.
04 What RuView Claims It Can Do
According to the project's own documentation, a single node can report on things like:
- Presence and person count — is anyone in the room, and roughly how many people
- Motion and fall detection — sudden movement changes, including a possible fall
- Breathing rate and heart rate trends — inferred from subtle, repeating signal patterns
- Body pose — a rough skeleton-style estimate of posture and position
- "Semantic" states — higher-level labels such as someone sleeping, a person getting out of bed, a room being actively used in a meeting, or a possible medical distress event
These outputs are designed to plug straight into smart-home systems like Home Assistant and Matter (the standard behind Apple Home, Google Home, Alexa, and SmartThings), so the sensor data can trigger automations — dimming lights when someone falls asleep, or alerting a family member if an elderly relative hasn't moved in longer than expected.
05 From Lab Research To Viral GitHub Repo: A Timeline
06 The Big Controversy: Real Tech or Elaborate Hype?
This is the part most articles about RuView skip past, and it's the most important part for anyone deciding whether to trust or try the project.
The case against RuView
Critics on Hacker News and Reddit's r/programming raised several concrete concerns after inspecting the source code:
- Multiple reviewers described the repository as reading like an early-stage framework or prototype rather than a finished, working detection system.
- GitHub issue reports documented users running two sensor nodes, successfully receiving raw signal data, but getting no usable body-pose output at all.
- As of the most recent public reporting, no independently verified video demonstration of the headline through-wall pose feature has been published by anyone outside the project.
- Some commentators went further, calling parts of the codebase AI-generated filler that doesn't actually implement the functionality it advertises.
- One opinion piece framed the entire project as a deliberate scam designed to farm GitHub stars, pad a résumé, or set up a future supply-chain attack through a trusted-looking dependency.
The case for RuView
At the same time, it would be inaccurate to dismiss the whole project as fake:
- The core science — that WiFi signals change when a body moves through them — is well-established, peer-reviewed research, not something RuView invented.
- Espressif, the company that makes the ESP32 chip, demonstrated basic WiFi CSI extraction on the same hardware back in 2022, so the low-level capability RuView depends on is not fabricated.
- Simple WiFi motion sensing — not skeleton tracking, just "is someone moving in this space" — is already a shipped, commercial feature. Comcast's Xfinity WiFi Motion, for example, uses signal disruption between a home's own devices to flag movement.
- The project has an active issue tracker with real back-and-forth between the maintainer and users, which is at least consistent with genuine (if struggling) development rather than a pure drive-by scam.
07 The Honest Accuracy Numbers
To its credit, after the backlash, the project's documentation became noticeably more transparent about performance. Here's what's actually disclosed today versus what a system would need to be genuinely useful:
| Metric | RuView's Current Disclosed Number | Status |
|---|---|---|
| Original "presence detection" claim | "100%" — retracted | Measured on a single-class recording; not valid |
| Re-benchmarked presence/motion accuracy | ~82.3% (held-out test) | Plausible for basic motion sensing |
| Full-body pose accuracy (no camera-supervised training) | ~2.5% (PCK@20) | Far below usable — roughly 1 in 40 points correct |
| Target pose accuracy with camera-supervised training | 35%+ (goal, not yet reached) | Not yet delivered as of latest reports |
So the "is someone in the room and are they moving" feature has a real, reasonably credible accuracy number behind it. The "see a human skeleton through a wall" feature — the one that made RuView go viral in the first place — currently does not.
08 Smart Home Use Cases That Actually Make Sense Today
Stripped of the through-wall body-scanning hype, the realistic, near-term use cases for this kind of WiFi sensing look a lot like existing presence-detection products:
- Elderly care check-ins — flagging unusual inactivity, like someone normally up by 9am who hasn't moved by 11am
- Camera-free bedroom and bathroom automation — turning on a bathroom light or dimming a bedroom without a camera in a private space
- Basic occupancy-based energy savings — heating, cooling, or lighting a room only when someone's actually in it
- Simple fall-risk alerts — detecting a sudden motion change followed by prolonged stillness
These are meaningfully less dramatic than "sees through walls," but they're also the parts of the claim closest to what the current, disclosed accuracy numbers can actually support.
09 Privacy And Legal Questions Nobody's Regulating Yet
Whether or not the body-pose claims hold up, the privacy conversation around WiFi sensing is worth taking seriously on its own. Cameras are governed by well-understood rules — you can usually tell where one is, and laws like GDPR and CCPA were written with visible recording devices in mind.
Passive WiFi sensing doesn't fit that model. A small chip doesn't need line of sight, doesn't look like a recording device, and can be tucked out of view entirely. That combination — invisible, deniable, and legally ambiguous — is the real long-term issue this whole category of technology raises, independent of whether any single project's marketing claims check out.
10 Should You Try RuView? Our Verdict
If you're a hobbyist who enjoys tinkering with cheap hardware and open-source AI, RuView is a genuinely interesting weekend project — just go in with the right expectations. Expect a working presence-and-motion sensor. Do not expect a working through-wall body scanner; the project's own numbers say it isn't there yet.
- For hobbyists: Fine to experiment with on a test network, away from anything sensitive, understanding it's early-stage research software.
- For smart-home automation: Reasonable for basic presence/motion triggers; don't rely on it for health monitoring or safety-critical fall detection yet.
- For businesses or care facilities: Wait for independently verified, peer-reviewed accuracy numbers before considering any real deployment.
- For anyone worried about being watched: The underlying WiFi CSI technique is real and will keep improving industry-wide, regardless of what happens to this specific project — it's worth understanding regardless of RuView's own fate.
11 Frequently Asked Questions
What is RuView?
RuView is an open-source GitHub project that claims to turn ordinary WiFi signals into a sensor for presence, motion, breathing, heart rate, and body pose, using a cheap ESP32 chip instead of a camera.
Can WiFi actually see through walls?
The underlying science is real — WiFi signals do change when a body moves through them, as shown by lab research at Carnegie Mellon and MIT. Whether a $9 consumer setup like RuView reproduces that at usable accuracy is disputed, and the project's own published numbers for full body pose are currently very low.
Is RuView a scam?
That's contested. Some developers called the code non-functional or unfinished after reviewing it; the maintainer has defended it as genuine, early-stage research. Basic WiFi motion sensing is real and already commercialized elsewhere; the more dramatic through-wall pose claims are what remain unverified.
Does RuView need a camera?
No — the entire premise is camera-free sensing using WiFi radio reflections and a small AI model.
12 References & Further Reading
- GitHub — ruvnet/RuView Repository
- Hacker News — RuView / WiFi DensePose Discussion Thread
- Cybernews — Viral GitHub Project Claims WiFi Can "See Through Walls"
- Tech Times — RuView Passes 55,000 GitHub Stars
- Secure.com — Your WiFi Is Watching You And It Doesn't Need a Camera
- Hugging Face — RuView Pretrained CSI Model
Grey Shield Research Team · contact@greyshield.in · This piece will be updated as more independently verified information about RuView becomes available.