<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/"
    xmlns:atom="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/" version="2.0">
    <channel>
        
        <title>
            <![CDATA[ Health Tech  - freeCodeCamp.org ]]>
        </title>
        <description>
            <![CDATA[ Browse thousands of programming tutorials written by experts. Learn Web Development, Data Science, DevOps, Security, and get developer career advice. ]]>
        </description>
        <link>https://www.freecodecamp.org/news/</link>
        <image>
            <url>https://cdn.freecodecamp.org/universal/favicons/favicon.png</url>
            <title>
                <![CDATA[ Health Tech  - freeCodeCamp.org ]]>
            </title>
            <link>https://www.freecodecamp.org/news/</link>
        </image>
        <generator>Eleventy</generator>
        <lastBuildDate>Mon, 10 Aug 2026 19:34:15 +0000</lastBuildDate>
        <atom:link href="https://www.freecodecamp.org/news/tag/health-tech/rss.xml" rel="self" type="application/rss+xml" />
        <ttl>60</ttl>
        
            <item>
                <title>
                    <![CDATA[ How an ECG on a Wrist Wearable Works and How It Compares to a Clinical Test ]]>
                </title>
                <description>
                    <![CDATA[ For decades, recording an electrocardiogram (ECG) meant visiting a hospital or clinic. The doctors would place multiple electrodes on your chest and limbs to capture your heart's electrical activity.  ]]>
                </description>
                <link>https://www.freecodecamp.org/news/how-smartwatch-ecg-works/</link>
                <guid isPermaLink="false">6a74c6e11a7e8d7040b2949f</guid>
                
                    <category>
                        <![CDATA[ embedded systems ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Internet of Things ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Wearable Technology ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Health Tech  ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Digital Signal Processing ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ Reetain Raina ]]>
                </dc:creator>
                <pubDate>Thu, 06 Aug 2026 17:39:45 +0000</pubDate>
                <media:content url="https://cdn.hashnode.com/uploads/covers/5e1e335a7a1d3fcc59028c64/c283c6cc-f094-47bd-83dd-c7361536a73f.png" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>For decades, recording an electrocardiogram (ECG) meant visiting a hospital or clinic. The doctors would place multiple electrodes on your chest and limbs to capture your heart's electrical activity.</p>
<p>Today, many wrist wearables can perform a simplified version of the same test. They record a single-lead ECG in about 30 seconds using just two small electrodes built into the device.</p>
<p>Despite this convenience, a smartwatch isn't replacing the large ECG machines used in hospitals. Instead, it solves a different problem. A clinical ECG is designed for diagnosing a wide range of heart conditions, while a wrist wearable focuses on capturing enough electrical information to monitor heart rhythm and identify certain abnormalities, such as atrial fibrillation (AFib).</p>
<p>Multiple <a href="https://pmc.ncbi.nlm.nih.gov/articles/PMC9795256/?">studies</a> have shown that modern single-lead smartwatch ECGs can detect AFib with high accuracy under appropriate conditions, but they're intended to complement, not replace, a standard 12-lead ECG.</p>
<p>That raises an interesting question: how can two tiny metal contacts on a smartwatch detect electrical signals generated deep inside your heart?</p>
<p>The answer combines biology, electronics, embedded systems, and digital signal processing. Let's break it down.</p>
<h2 id="heading-table-of-contents">Table of Contents</h2>
<ul>
<li><p><a href="#heading-your-heart-is-an-electrical-system-before-its-a-mechanical-one">Your Heart Is an Electrical System Before It's a Mechanical One</a></p>
</li>
<li><p><a href="#heading-how-a-wrist-wearable-captures-that-electrical-signal">How a Wrist Wearable Captures That Electrical Signal</a></p>
</li>
<li><p><a href="#heading-from-analog-waveform-to-a-digital-ecg-waveform">From Analog Waveform to a Digital ECG Waveform</a></p>
</li>
<li><p><a href="#heading-why-wrist-wearables-use-a-single-lead-ecg">Why Wrist Wearables Use a Single-Lead ECG</a></p>
</li>
<li><p><a href="#heading-clinical-ecg-vs-wrist-ecg-whats-the-difference">Clinical ECG vs Wrist ECG: What’s the difference</a></p>
</li>
<li><p><a href="#heading-where-smartwatch-ecg-performs-surprisingly-well">Where Smartwatch ECG Performs Surprisingly Well</a></p>
</li>
<li><p><a href="#heading-why-consumer-ecg-still-has-important-limitations">Why Consumer ECG Still Has Important Limitations</a></p>
</li>
<li><p><a href="#heading-the-engineering-challenges-behind-wrist-ecg">The Engineering Challenges Behind Wrist ECG</a></p>
</li>
<li><p><a href="#heading-the-future-of-wearable-ecg">The Future of Wearable ECG</a></p>
</li>
<li><p><a href="#heading-wrap-up">Wrap Up</a></p>
</li>
</ul>
<h2 id="heading-your-heart-is-an-electrical-system-before-its-a-mechanical-one"><strong>Your Heart Is an Electrical System Before It's a Mechanical One</strong></h2>
<p>Before your heart can pump a single drop of blood, it has to fire an electrical impulse. You can think of the heart as a synchronized electrical circuit where every mechanical beat starts with a precisely timed waveform pulse.</p>
<p>This sequence begins in the <strong>sinoatrial</strong> (SA) node which is the heart's natural pacemaker, located in the upper right chamber. The SA node fires a tiny waveform spike that spreads across the atria, causing them to contract and push blood down.</p>
<p>Next, the signal hits the <strong>atrioventricular</strong> (AV) node, which acts like an intentional delay gate to let the ventricles fill completely.</p>
<p>Finally, the pulse surges through specialized conductive pathways into the ventricles, triggering a powerful contraction that circulates blood through your body. Because human tissues and fluids are electrically conductive, these microscopic waveform shifts ripple outward until they reach the surface of your skin.</p>
<h2 id="heading-how-a-wrist-wearable-captures-that-electrical-signal"><strong>How a Wrist Wearable Captures That Electrical Signal</strong></h2>
<p>Capturing a biological signal from two isolated points on the skin surface is a tricky hardware problem. A typical smartwatch solves this using two main metal electrodes: one integrated into the back crystal touching the wrist and another built into the side crown or outer frame.</p>
<p>When you touch the side crown with a finger from your opposite hand, your body completes a continuous electrical path. This loop spans across your arms, shoulders, and chest cavity. The watch measures the electrical potential difference between these two distinct contact points.</p>
<p>But this biological signal is vanishingly small, typically between <strong>0.5 and 2 millivolts</strong>. Because it travels across long paths of skin and muscle, it arrives heavily contaminated by ambient noise, static electricity, and electromagnetic interference from nearby appliances.</p>
<p>To manage this, the wearable routes the raw micro-wave into an <strong>Analog Front End</strong> (AFE). The AFE uses high-impedance instrumentation amplifiers and differential sensing to boost the heart signal by orders of magnitude while stripping away common-mode noise before the data ever reaches a digital processor.</p>
<h2 id="heading-from-analog-waveform-to-a-digital-ecg-waveform"><strong>From Analog Waveform to a Digital ECG Waveform</strong></h2>
<p>Once the Analog Front End cleans and amplifies the microscopic waveform, software algorithms step in to transform raw analog input into the sharp line graph you see on your screen.</p>
<p>First, an <strong>Analog-to-Digital Converter</strong> (ADC) samples the analog waveform hundreds of times per second, converting continuous waves into a high-resolution stream of digital data.</p>
<p>Next, <strong>Digital Signal Processing</strong> (DSP) algorithms strip out environmental noise. A high-pass filter eliminates low-frequency baseline wander caused by chest breathing. A low-pass filter cuts high-frequency noise from micro-tremors in your hand muscles.</p>
<p>Finally, a dedicated notch filter cancels out the persistent <strong>50 Hz or 60 Hz</strong> hum emitted by power grids and wall outlets.</p>
<p>After filtering, specialized software algorithms analyze the clean waveform. Using precise peak-detection routines, the firmware identifies the <strong>QRS</strong> complex, specifically the tall <strong>R-peak</strong> that marks ventricular contraction. By calculating the exact time intervals between successive R-peaks, the device determines instantaneous heart rate and flags irregular beats.</p>
<p>The smartwatch isn't just recording waveforms, it's continuously scrubbing and interpreting data before drawing the final waveform.</p>
<h2 id="heading-why-wrist-wearables-use-a-single-lead-ecg"><strong>Why Wrist Wearables Use a Single-Lead ECG</strong></h2>
<p>In clinical cardiology, an ECG measurement is defined by a "lead," which represents a specific spatial view of the heart's electrical vector between two reference points.</p>
<p>Because a smartwatch only features two distinct contact locations, it can only measure a single vector across the upper body. In standard <strong>12-lead nomenclature</strong>, the path going from the right arm to the left arm is classified as <strong>Lead I</strong>.</p>
<p>A Lead I configuration tracks the primary horizontal electrical axis of the heart. This single perspective provides clear timing intervals between heartbeats, making it remarkably effective for calculating heart rate and evaluating basic rhythm regularity.</p>
<p>But because Lead I only views the heart along a single plane, it can't detect localized structural issues occurring on the inferior or posterior walls of the heart muscle.</p>
<h2 id="heading-clinical-ecg-vs-wrist-ecg-whats-the-difference"><strong>Clinical ECG vs Wrist ECG: What’s the difference</strong></h2>
<p>While both technologies measure bioelectric waveform, their implementation targets fundamentally different monitoring requirements:</p>
<table style="min-width:75px"><colgroup><col style="min-width:25px"><col style="min-width:25px"><col style="min-width:25px"></colgroup><tbody><tr><td><p><strong>Feature / Metric&nbsp;</strong></p></td><td><p><strong>Wrist Wearable ECG&nbsp;</strong></p></td><td><p><strong>Clinical ECG&nbsp;</strong></p></td></tr><tr><td><p>Lead Count&nbsp;</p></td><td><p>Single Lead (Lead I equivalent)&nbsp;</p></td><td><p>12 Leads (derived from 10 physical electrodes)&nbsp;</p></td></tr><tr><td><p>Duration&nbsp;</p></td><td><p>On-demand 30-second snapshot&nbsp;</p></td><td><p>Continuous recording / diagnostic strip&nbsp;</p></td></tr><tr><td><p>Primary Focus&nbsp;</p></td><td><p>Ambulatory rhythm and AFib detection&nbsp;</p></td><td><p>Comprehensive cardiac diagnostic assessment&nbsp;</p></td></tr><tr><td><p>Signal Source&nbsp;</p></td><td><p>Dry metal contacts on extremities&nbsp;</p></td><td><p>Conductive wet gel electrodes on chest &amp; limbs&nbsp;</p></td></tr><tr><td><p>Environment&nbsp;</p></td><td><p>Real-world / Uncontrolled home setting&nbsp;</p></td><td><p>Controlled hospital or clinical environment&nbsp;</p></td></tr><tr><td><p>Primary Output&nbsp;</p></td><td><p>Basic rhythm status &amp; interval data&nbsp;</p></td><td><p>3D multi-angle vector analysis&nbsp;</p></td></tr></tbody></table>

<p>A hospital ECG views the heart from <strong>12 unique electrical angles</strong> simultaneously, mapping vectors across 3 dimensions. A smartwatch, by contrast, observes only one horizontal plane. This core structural difference explains why cardiologists rely on 12-lead systems for full clinical diagnoses.</p>
<h2 id="heading-where-smartwatch-ecg-performs-surprisingly-well"><strong>Where Smartwatch ECG Performs Surprisingly Well</strong></h2>
<p>Despite being limited to a single lead, smartwatch ECGs excel in scenarios where traditional clinical equipment struggles: capturing sporadic, intermittent events in everyday life.</p>
<p>Conditions like AFib often occur unpredictably in short bursts. A patient might experience palpitations at home, yet present a perfectly normal rhythm by the time they reach a clinic for a formal standard test.</p>
<p>A comprehensive <a href="https://pmc.ncbi.nlm.nih.gov/articles/PMC12096014/">meta-analysis on smartwatch ECG diagnostic accuracy</a> showed that consumer smartwatch algorithms achieve high sensitivity and specificity for detecting AFib when evaluated against clinical reference standards.</p>
<p>Capturing an irregular rhythm moment in real-time on a wrist device provides actionable, timestamped data that clinicians can later review to guide further diagnostic testing.</p>
<h2 id="heading-why-consumer-ecg-still-has-important-limitations"><strong>Why Consumer ECG Still Has Important Limitations</strong></h2>
<p>Understanding wearable ECG engineering also means acknowledging the hardware limitations inherent to consumer form factors.</p>
<p>Firstly, dry metal electrodes lack the conductive gel used in clinical settings, creating higher skin-electrode impedance. Factors like dry skin, excessive sweat, loose strap fit, or wrist tattoos can degrade the signal-to-noise ratio.</p>
<p>Secondly, micro-movements introduce <strong>motion artifacts</strong>, waveform spikes created by flexing muscles that can mimic or obscure true cardiac signals.</p>
<p>Most importantly, because a single lead can't evaluate vector changes across the entire <strong>myocardium</strong>, a wearable can't detect acute heart attacks, silent ischemia, or complex ventricular arrhythmias. A clean smartwatch reading simply confirms a stable rhythm along Lead I. It's never a complete clean bill of health.</p>
<h2 id="heading-the-engineering-challenges-behind-wrist-ecg"><strong>The Engineering Challenges Behind Wrist ECG</strong></h2>
<p>Building a functional ECG into a watch involves navigating severe hardware and software trade-offs. Engineers must balance signal sensitivity against power consumption, battery constraints, and physical footprint.</p>
<p>The primary engineering challenges include:</p>
<ul>
<li><p><strong>Ultra-low-power AFE design:</strong> The sensing circuitry must remain accurate while drawing minimal microamps from a tiny battery.</p>
</li>
<li><p><strong>Real-time adaptive filtering:</strong> Embedded processors must run digital bandpass and notch filters on incoming data without causing system latency.</p>
</li>
<li><p><strong>Motion artifact cancellation:</strong> Algorithms must differentiate between true cardiac electrical waves and electromyographic signals generated by flexing arm muscles.</p>
</li>
<li><p><strong>On-device machine learning:</strong> Lightweight classification models must run locally on microcontroller hardware to classify rhythms securely without relying entirely on cloud processing.</p>
</li>
</ul>
<p>Ultimately, the hardest engineering problem isn't detecting bioelectricity, it's separating a faint cardiac signal from the noisy environment of a moving human wrist.</p>
<h2 id="heading-the-future-of-wearable-ecg"><strong>The Future of Wearable ECG</strong></h2>
<p>As embedded systems continue to evolve, wearable cardiac monitoring is moving toward multi-sensor fusion. Future devices are pairing single-lead ECG data with <strong>optical Photoplethysmography (PPG)</strong>, wrist temperature sensors, and continuous accelerometers.</p>
<p>By combining optical blood volume shifts (PPG) with electrical timing (ECG), devices can calculate Pulse Transit Time (PTT) to estimate blood pressure non-invasively.</p>
<p>Simultaneously, edge-AI chips are becoming efficient enough to perform continuous, low-power background rhythm monitoring, notifying users the moment an anomaly is detected rather than relying solely on manual 30-second tests.</p>
<h2 id="heading-wrap-up"><strong>Wrap Up</strong></h2>
<p>Wearable ECG is a good example of how solving a real-world problem often requires expertise from multiple engineering disciplines. A feature that appears as a simple 30-second test on a smartwatch depends on analog circuit design, embedded firmware, digital signal processing, and intelligent algorithms working together to produce reliable results.</p>
<p>As wearable devices continue to become more capable, understanding the engineering behind features like ECG becomes just as important as understanding what they measure. It shows that building modern health technology isn't just about adding new sensors, it's about designing systems that can turn tiny, noisy biological signals into information that people can trust.</p>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ HRV Data Is Everywhere. Here's What It Actually Means ]]>
                </title>
                <description>
                    <![CDATA[ Health data is having a moment. Of all the metrics receiving the most developer interest at present, there’s nothing like heart rate variability (HRV). It’s a feature found on every major SDK for wear ]]>
                </description>
                <link>https://www.freecodecamp.org/news/hrv-data-is-everywhere-here-s-what-it-actually-means/</link>
                <guid isPermaLink="false">6a5e88ed780db2fa84ad0b48</guid>
                
                    <category>
                        <![CDATA[ Health Tech  ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Wearables ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ Shradha Puri ]]>
                </dc:creator>
                <pubDate>Mon, 20 Jul 2026 20:45:33 +0000</pubDate>
                <media:content url="https://cdn.hashnode.com/uploads/covers/5e1e335a7a1d3fcc59028c64/75ed57eb-f77b-4055-bb26-4bdc2eaa7bd4.png" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>Health data is having a moment. Of all the metrics receiving the most developer interest at present, there’s nothing like heart rate variability (HRV). It’s a feature found on every major SDK for wearables, every health platform, and every wellness app pitch deck.</p>
<p>But a surprising percentage of people building around this metric don’t really know what it means or why it even matters for the apps they're building. So consider this more as a grounding in what HRV actually means. It should be useful whether you're designing the feature, writing the copy, or just trying to make sense of your own ring data.</p>
<h2 id="heading-table-of-contents"><strong>Table of Contents</strong></h2>
<ul>
<li><p><a href="#heading-what-hrv-actually-measures">What HRV Actually Measures</a></p>
</li>
<li><p><a href="#heading-why-the-context-around-hrv-data-matters-more-than-the-number">Why the Context Around HRV Data Matters More Than the Number</a></p>
</li>
<li><p><a href="#heading-where-hrv-data-gets-misused">Where HRV Data Gets Misused</a></p>
<ul>
<li><p><a href="#heading-treating-hrv-as-real-time-data">Treating HRV as Real-time Data</a></p>
</li>
<li><p><a href="#heading-ignoring-measurement-method-differences">Ignoring Measurement Method Differences</a></p>
</li>
<li><p><a href="#heading-overcomplicating-the-output">Overcomplicating the Output</a></p>
</li>
<li><p><a href="#heading-skipping-data-quality-checks">Skipping Data Quality Checks</a></p>
</li>
</ul>
</li>
<li><p><a href="#heading-principles-for-working-with-hrv">Principles for Working with HRV</a></p>
</li>
<li><p><a href="#heading-a-note-on-privacy">A Note on Privacy</a></p>
</li>
<li><p><a href="#heading-wrap-up">Wrap Up</a></p>
</li>
</ul>
<h2 id="heading-what-hrv-actually-measures"><strong>What HRV Actually Measures</strong></h2>
<p>Heart Rate Variability (HRV) isn't heart rate. Instead, it’s the variability of time intervals between subsequent heartbeats. In case your heart works at 60 bpm, it doesn’t imply that each heartbeat happens exactly once per second. The intervals may vary from 900 milliseconds to 1100 milliseconds, and that’s what HRV actually is.</p>
<p>Increased HRV usually indicates proper functioning of the autonomic nervous system and the ability to change states efficiently, switching from stress to relaxation. Decreased HRV is often an indicator of being exhausted, sick, or under increased physiological stress.</p>
<p>This is the measure which top athletes obsessively monitor. Also, it can be helpful for those who suffer from chronic conditions, insomnia, and burnout.</p>
<p>Here’s the part that trips people up: HRV isn’t one number. It’s a family of metrics, each calculated differently.</p>
<ol>
<li><p><strong>RMSSD</strong> stands for Root Mean Square of Successive Differences and is the most common metric that you'll come across. RMSSD indicates short-term variation and forms the basis for the majority of HRV scores on wearable consumer devices.</p>
</li>
<li><p><strong>SDNN</strong> stands for Standard Deviation of NN intervals and indicates general variability, being used primarily in clinical research settings.</p>
</li>
<li><p>The <strong>LF/HF ratio</strong> refers to the HRV frequency domains, dividing the HRV into two parts of different frequencies.</p>
</li>
</ol>
<p>All of the major HRV providers, such as Apple Health, Garmin, Fitbit, and Oura, provide HRV scores, yet they don’t always agree on which metric they’re surfacing. And they don’t always tell you.</p>
<h2 id="heading-why-the-context-around-hrv-data-matters-more-than-the-number"><strong>Why the Context Around HRV Data Matters More Than the Number</strong></h2>
<p>HRV, in its raw form, is almost entirely meaningless. A reading of 45ms could either be an indication of peak physical health in one person or a warning sign of poor physical well-being in another. Factors such as age, physical fitness, timing of measurements, and even sleeping position influence the normal HRV value.</p>
<p>Understanding that this is perhaps the biggest factor in interpreting HRV is the first step when developing features around it.</p>
<p>Commercial wearables have managed to address this issue by establishing a personal baseline based on readings taken in 30-90 days of wearing the device and presenting deviation from this baseline rather than absolute values.</p>
<p>The lesson here is simple: if your product has anything to do with health (recovery apps, coaching platforms, and so on) then you must follow the same logic, otherwise your users will get confused.</p>
<p>Showing them a raw reading of 38ms won’t make much sense anyway. The better pattern: track trends over time, flag deviations, and let the data explain itself relative to the user’s own history. Not population averages, not clinical reference ranges, but their own.</p>
<h2 id="heading-where-hrv-data-gets-misused">Where HRV Data Gets Misused</h2>
<h3 id="heading-treating-hrv-as-real-time-data">Treating HRV as Real-time Data</h3>
<p>HRV isn't intended for real-time measurements. The most reliable HRV values can be obtained by collecting overnight data, as this allows minimizing external factors’ impact on the result.</p>
<p>This is why companies like <a href="https://wearablexp.com/smart-wearables/whoop-vs-oura-vs-apple-watch/">Oura, Apple, and WHOOP</a> rely precisely on nighttime HRV values. If a product is measuring HRV in the middle of workouts and business meetings, then you're most probably dealing with noise rather than insights.</p>
<h3 id="heading-ignoring-measurement-method-differences">Ignoring Measurement Method Differences</h3>
<p>ECG-based HRV, which can be measured by a chest strap or a professional-grade ECG monitor, is much more precise compared to PPG-based HRV measured by optical sensors incorporated into consumer wearables.</p>
<p>During nighttime, the accuracy difference between these types of data is minimal but grows when a person becomes more active. If your app needs precision – say, you’re building for clinical or research contexts – know your source.</p>
<h3 id="heading-overcomplicating-the-output">Overcomplicating the Output</h3>
<p>Users aren’t cardiologists. Having RMSSD, SDNN, and LF/HF appear in your dashboard may seem complete, but really, it just makes things confusing and causes analysis paralysis.</p>
<p>The most successful consumer HRV applications boil everything down to a readiness or recovery metric. Having more than two HRV metrics on one screen should make you think twice.</p>
<h3 id="heading-skipping-data-quality-checks">Skipping Data Quality Checks</h3>
<p>Wearable data is inherently messy due to motion artifacts, loose placement, uneven wear, and so on. Before including a reading in a calculation, do your homework and see whether data quality was flagged by the wearable. Apple’s HealthKit provides metadata for this purpose, as does the Oura API.</p>
<h2 id="heading-principles-for-working-with-hrv">Principles for Working with HRV</h2>
<p>There are a few patterns that hold up across most use cases:</p>
<ol>
<li><p><strong>Build for the baseline first:</strong> Put a data window threshold on any feature using HRV metrics as its basis. Fourteen days may be a good minimum, but thirty is preferable. No trends can be shown without sufficient historical data.</p>
</li>
<li><p><strong>Normalize before comparing:</strong> When comparing HRV across users (let’s say for a team wellness dashboard), it makes much more sense to use a z-score normalization with respect to a baseline of each user than just compare absolute numbers. A reading of 55ms for one user and 40ms for another might actually signify the same physiological state, once you account for each person's baseline.</p>
</li>
<li><p><strong>Design for trends, not single data points:</strong> One bad HRV day is almost certainly random. But three or four consecutive days of bad readings coming from an athlete used to having significantly higher readings is definitely something to pay attention to. Again, sparklines and rolling averages for seven days will help more than a single point comparison.</p>
</li>
<li><p><strong>Be honest about what HRV can’t tell you:</strong> It could show signs of physiological stress, but it can't differentiate between causes of this stress, such as intense training, poor sleep, general anxiety, or even developing illness.</p>
</li>
</ol>
<h2 id="heading-a-note-on-privacy"><strong>A Note on Privacy</strong></h2>
<p>HRV resides within the grey area that most product teams tend to overlook. While it may not be classified as PHI by HIPAA in consumer-oriented scenarios, it's very personal biometric information. HRV patterns may give an indication of stress levels, mental well-being, and even provide predictive information regarding the onset of diseases.</p>
<p>If you’re storing or processing HRV data, it's a good idea to consider your data retention practices, the third parties you share the information with, and whether your disclosures to users have been clear enough. Users are getting smarter about this. Regulators are, too.</p>
<h2 id="heading-wrap-up"><strong>Wrap Up</strong></h2>
<p>HRV is actually valuable data. This isn’t just marketing talk. There’s plenty of science behind HRV and the technology to measure it has been getting more refined. But it’s worth remembering that, as with most health data, it’s only valuable if used intelligently.</p>
<p>Know what you’re building upon. Design for personal context, not universal benchmarks. Make sure the data is easy to consume. And don’t take it any less seriously than your users do when they wear these devices every day, hoping it will make them feel better.</p>
<p>That’s really what it comes down to.</p>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ Sleep Tracking, Bluetooth Signals, and EMF: What Every Wearable User Should Know ]]>
                </title>
                <description>
                    <![CDATA[ You take off your shoes before bed. You probably don't take off your smart ring or your watch. Most of us sleep with a Bluetooth-enabled device sitting a few millimeters from our skin, all night, ever ]]>
                </description>
                <link>https://www.freecodecamp.org/news/sleep-tracking-bluetooth-signals-and-emf-in-wearables/</link>
                <guid isPermaLink="false">6a3aaa339a4579a7c98eadf8</guid>
                
                    <category>
                        <![CDATA[ Wearables ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Health Tech  ]]>
                    </category>
                
                    <category>
                        <![CDATA[ bluetooth ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Bluetooth Low Energy ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ Shradha Puri ]]>
                </dc:creator>
                <pubDate>Tue, 23 Jun 2026 15:45:55 +0000</pubDate>
                <media:content url="https://cdn.hashnode.com/uploads/covers/5e1e335a7a1d3fcc59028c64/1aedc780-3439-459f-b446-aba26798b51c.png" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>You take off your shoes before bed. You probably don't take off your smart ring or your watch. Most of us sleep with a Bluetooth-enabled device sitting a few millimeters from our skin, all night, every night, while transmitting small amounts of radiofrequency (RF) waves and collecting sleep data.</p>
<p>This thing is quietly recording your heart rate and movements while you’re sleeping. So it's a valid question to ask whether the wireless signals or electromagnetic field (EMF) radiation it emits could interfere with sleep quality, disrupt hormones such as melatonin, affect circadian rhythms, or produce other biological effects over time.</p>
<p>The concerns are part of the wider discussion on EMF’s and wireless technology. Although all smartphones, Wi-Fi, and wearables emit RF waves, the amounts of energy used and how they work can be quite different. Understanding what your sleep tracker is actually doing helps put those concerns into context.</p>
<h2 id="heading-table-of-contents"><strong>Table of Contents</strong></h2>
<ul>
<li><p><a href="#heading-how-sleep-trackers-measure-sleep">How Sleep Trackers Measure Sleep</a></p>
</li>
<li><p><a href="#heading-whats-actually-transmitting-from-your-ring-or-watch">What's Actually Transmitting From Your Ring or Watch</a></p>
</li>
<li><p><a href="#heading-how-that-stacks-up-against-safety-limits">How That Stacks Up Against Safety Limits</a></p>
</li>
<li><p><a href="#heading-where-the-melatonin-research-gets-misapplied">Where the Melatonin Research Gets Misapplied</a></p>
</li>
<li><p><a href="#heading-what-the-latest-research-actually-says">What the Latest Research Actually Says</a></p>
<ul>
<li><a href="#heading-the-pushback">The Pushback</a></li>
</ul>
</li>
<li><p><a href="#heading-what-this-means-for-how-you-wear-it-at-night">What This Means for How You Wear It at Night</a></p>
</li>
<li><p><a href="#heading-the-bigger-risk-isnt-the-radio">The Bigger Risk Isn't the Radio</a></p>
</li>
</ul>
<h2 id="heading-how-sleep-trackers-measure-sleep"><strong>How Sleep Trackers Measure Sleep</strong></h2>
<p>Before discussing the impact of signals and EMF, we should know what exactly happens when a device monitors your sleep.</p>
<p>Sleep trackers rarely actually measure your sleep but rather use sensors to track movements, heart rate, heart rate variability (HRV), breathing rate, temperature, and more.</p>
<p>The software analyzes data and distinguishes between states like awake, light sleep, deep sleep, and REM sleep. As opposed to professional polysomnography, sleep tracking devices don't measure brain waves and so can't actually observe sleep. They only make an educated guess.</p>
<p>This is critical to understand, because it's not the Bluetooth radio itself that measures your sleep, but rather sensors.</p>
<h2 id="heading-whats-actually-transmitting-from-your-ring-or-watch"><strong>What's Actually Transmitting From Your Ring or Watch</strong></h2>
<p>The chip in your Oura, Ultrahuman, or Apple Watch communicates with your phone via Bluetooth Low Energy (BLE). BLE was designed with a power budget rather than a performance budget because, in this case, power is more important than range when you have the receiver just a few inches away, in your pocket or on your nightstand.</p>
<p>The transmit power, according to the <a href="https://pmc.ncbi.nlm.nih.gov/articles/PMC5751532/">Bluetooth specification</a>, is capped at 100 milliwatts. But most chips used by consumers are well below the maximum power limit, often at 1-10 milliwatts.</p>
<p>By contrast, a cell phone during a voice call can transmit up to <a href="https://www.rfpage.com/is-bluetooth-safe/">250 to 2,000 milliwatts</a>. You're not carrying a miniaturized cell tower, you're carrying an item that transmits in bursts of low-power signals.</p>
<h2 id="heading-how-that-stacks-up-against-safety-limits"><strong>How That Stacks Up Against Safety Limits</strong></h2>
<p>The SAR metric is used to quantify the amount of RF energy tissue absorbs. This metric is measured in watts per kilogram. The <a href="https://support.realwear.com/knowledge/specific-absorption-rate-sar-information">Federal Communications Commission (FCC)</a> caps the SAR level to 1.6 W/kg averaged over 1 g of tissue. But according to International Commission on Non-Ionizing Radiation Protection (ICNIRP) standards, the average SAR should be maintained at 2 W/kg averaged over 10 g of tissue.</p>
<p>No wireless communication device will be certified and made available on the market unless it meets the criteria of the SAR metric.</p>
<p>In the United States, the SAR limit for wrist-worn devices is 4.0 W/kg. According to Apple's <a href="https://wearablexp.com/smart-watches/does-apple-watch-emit-radiation/">Apple Watch RF exposure data</a>, the watch has a reported SAR value of approximately 0.17 W/kg, while Oura reports a SAR value of 0.0003 W/kg for the Oura Ring. Both are well below regulatory limits, illustrating just how little RF energy these wearables typically emit.</p>
<p>According to an engineering evaluation published in 2024 by <a href="https://arxiv.org/pdf/1912.05282">Kim, Sharif and Nasim</a>, SAR levels associated with commercial wearable technology operated at 2.4 GHz have been found to comply with the regulatory threshold and the safety guideline at the distance of skin contact.</p>
<h2 id="heading-where-the-melatonin-research-gets-misapplied"><strong>Where the Melatonin Research Gets Misapplied</strong></h2>
<p>Melatonin is the natural hormone responsible for regulating your sleep-wake cycle, which is why it has been frequently mentioned in the context of the relationship between EMFs and sleep. Indeed, there have been numerous studies in the past indicating that exposure to specific forms of electromagnetic fields might have an impact on melatonin production, circadian rhythms, or oxidative stress.</p>
<p>But the results from these studies have been quite mixed. Some research has found a notable effect, while others have found no significant effect at all. Most importantly, most studies that are constantly being cited refer to extremely low-frequency (ELF) fields generated by power lines, electrical wiring, and household electricity in general and not the Bluetooth device radiofrequency signals.</p>
<p>That research is real, but it often concerns extremely low-frequency (ELF) fields, those at 50-60 Hz found in power lines and electrical wiring, rather than the 2.4 GHz radiofrequency used by your Bluetooth ring. These are different parts of the electromagnetic spectrum with different interaction mechanisms.</p>
<p>Citing ELF melatonin studies to explain RF wearable exposure is a bit like citing research on UV exposure to explain what your microwave does. Related field, wrong frequency range.</p>
<h2 id="heading-what-the-latest-research-actually-says"><strong>What the Latest Research Actually Says</strong></h2>
<p>The strongest evidence we have today comes from a series of systematic reviews commissioned by the <a href="https://pmc.ncbi.nlm.nih.gov/articles/PMC12490090/">World Health Organization</a>.</p>
<p>There were several reviews published between 2024 and 2025 which aimed to assess whether RF-EMF (Radiofrequency Electromagnetic Fields) exposure was connected with outcomes such as sleep disorders, headaches, and nonspecific symptoms.</p>
<p>No evidence suggesting a cause-and-effect relationship between RF-EMF exposure below current safety thresholds and sleep disorders was reported by either experimental or observational research.</p>
<p>This certainly doesn't solve the problem because of the uncertainty of the evidence. And this is quite low due to challenges in estimating actual RF exposures experienced by people. We're all surrounded by various signals emitted by our smartphones, Wi-Fi routers, laptops, cellular towers, and so on.</p>
<p>The conclusion is relatively simple, though: there's currently no evidence that would show that RF exposures using Bluetooth disrupts people’s sleep. That being said, researchers are still actively exploring the issue.</p>
<h3 id="heading-the-pushback"><strong>The Pushback</strong></h3>
<p>Not everyone agrees with these findings. Some researchers claim that WHO review fails to give enough weight to certain studies and that research findings on the subject are still lacking.</p>
<p>This criticism targets the whole body of work on RF-EMF radiation since most of them are based on mobile phones rather than wearable technology.</p>
<p>The debate is ongoing, but present research doesmn't show any disruptions caused by wearables with Bluetooth functionality.</p>
<h2 id="heading-what-this-means-for-how-you-wear-it-at-night"><strong>What This Means for How You Wear It at Night</strong></h2>
<p>If the thought of wearing a sleep-tracking wearable next to your body for a full eight hours leaves you feeling uncomfortable, the quickest solution won’t be getting rid of it. Many wearables offer a low-power mode, airplane mode, or similar settings that disable Bluetooth communication while allowing the device to continue collecting data through onboard sensors such as the accelerometer and optical heart rate sensor.</p>
<p>For people concerned about EMF exposure, this setting reduces wireless transmissions during the night while still preserving most sleep-tracking functionality on the device. The reduction in radiofrequency emissions is typically small in absolute terms because Bluetooth Low Energy already transmits at very low power and only intermittently. Still, you may prefer minimizing any unnecessary wireless activity while you sleep.</p>
<p>I’m not saying that disabling Bluetooth improves sleep quality or health outcomes. But if doing so helps you feel more comfortable or less worried about wearing a device overnight and its EMF, it can be a practical compromise that allows you to continue tracking your sleep without the added concern.</p>
<h2 id="heading-the-bigger-risk-isnt-the-radio"><strong>The Bigger Risk Isn't the Radio</strong></h2>
<p>The bigger sleep-tracking problem probably isn't EMF at all. Neurologists are seeing more patients who walk in fixated on hitting a target number of REM minutes when using a wearable device that measures sleep stages based on movement and heart rate.</p>
<p>Unlike a laboratory polysomnography test, where sleep stages are measured directly from brain activity, the measurement provided by the wearable device is only an inference based on movement and heart rate. The term used for such obsession is 'orthosomnia', which is better described as the downside of wearing a sleep tracker rather than anything related to EMFs.</p>
<p>If you're going to worry about something at 2 a.m., the accuracy of the sleep data is probably a better place to focus than the Bluetooth chip. Sleep trackers estimate sleep stages rather than measuring them directly, and that limitation can sometimes create more anxiety than the radio signals themselves.</p>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ How Wearables Track the Menstrual Cycle: The Sensors, the Algorithms, and the Accuracy Gap ]]>
                </title>
                <description>
                    <![CDATA[ Your Garmin shows poor recovery, WHOOP paints your day red, your resting heart rate is high, your HRV is low, and the app recommends that you rest. But here’s the thing: you don’t actually feel bad. F ]]>
                </description>
                <link>https://www.freecodecamp.org/news/how-wearables-track-the-menstrual-cycle-the-sensors-the-algorithms-and-the-accuracy-gap/</link>
                <guid isPermaLink="false">6a34144348f250210b480951</guid>
                
                    <category>
                        <![CDATA[ Wearables ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Health Tech  ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ Shradha Puri ]]>
                </dc:creator>
                <pubDate>Thu, 18 Jun 2026 15:52:34 +0000</pubDate>
                <media:content url="https://cdn.hashnode.com/uploads/covers/5e1e335a7a1d3fcc59028c64/f9883968-d2c8-4604-bd74-7e811ff52ca4.png" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>Your Garmin shows poor recovery, WHOOP paints your day red, your resting heart rate is high, your HRV is low, and the app recommends that you rest. But here’s the thing: you don’t actually feel bad.</p>
<p>For women who are in their reproductive years, chances are your wearable technology has misread your luteal phase symptoms as either a result of being overtrained or even sick. This is because the technology likely detected a symptom that it doesn’t actually understand.</p>
<p>Let’s get into how this is actually happening by going from sensors to algorithms and finally to where the accuracy gap actually lives.</p>
<h2 id="heading-table-of-contents"><strong>Table of Contents</strong></h2>
<ul>
<li><p><a href="#heading-what-the-menstrual-cycle-actually-does-to-your-biometrics">What the Menstrual Cycle Actually Does to Your Biometrics</a></p>
<ul>
<li><p><a href="#heading-resting-heart-rate-and-hrv">Resting Heart Rate and HRV</a></p>
</li>
<li><p><a href="#heading-heart-rate-variability-hrv">Heart Rate Variability (HRV)</a></p>
</li>
<li><p><a href="#heading-skin-temperature">Skin Temperature</a></p>
</li>
</ul>
</li>
<li><p><a href="#heading-how-wearables-measure-these-signals">How Wearables Measure These Signals</a></p>
<ul>
<li><p><a href="#heading-ppg-sensors-and-what-they-actually-capture">PPG Sensors and What They Actually Capture</a></p>
</li>
<li><p><a href="#heading-temperature-sensors-continuous-vs-spot-measurement">Temperature Sensors: Continuous vs. Spot Measurement</a></p>
</li>
</ul>
</li>
<li><p><a href="#heading-how-the-algorithms-work">How the Algorithms Work</a></p>
<ul>
<li><p><a href="#heading-calendar-based-vs-physiology-based-detection">Calendar-Based vs. Physiology-Based Detection</a></p>
</li>
<li><p><a href="#heading-how-machine-learning-classifies-cycle-phases">How Machine Learning Classifies Cycle Phases</a></p>
</li>
</ul>
</li>
<li><p><a href="#heading-why-the-accuracy-gap-exists">Why the Accuracy Gap Exists</a></p>
</li>
<li><p><a href="#heading-what-cycle-aware-algorithms-look-like-in-practice">What Cycle-Aware Algorithms Look Like in Practice</a></p>
</li>
<li><p><a href="#heading-wrapping-up">Wrapping Up</a></p>
</li>
</ul>
<h2 id="heading-what-the-menstrual-cycle-actually-does-to-your-biometrics"><strong>What the Menstrual Cycle Actually Does to Your Biometrics</strong></h2>
<p>Before jumping into the sensors and algorithms, here's what they're actually detecting. The menstrual cycle isn't the noise within wearable data, but an active component that alters the physiology upon which any recovery or health algorithm relies.</p>
<p>There are three signals that tell the story.</p>
<h3 id="heading-resting-heart-rate">Resting Heart Rate</h3>
<p><a href="https://pmc.ncbi.nlm.nih.gov/articles/PMC9005074/">Multiple studies</a> using continuous wearable monitoring have confirmed that resting heart rate increases 2-7 bpm from the follicular phase to the luteal phase. One prospective study of 91 women observed that resting heart rate was 3.8 bpm higher in the mid-luteal phase compared to the period of menstruation.</p>
<h3 id="heading-heart-rate-variability-hrv">Heart Rate Variability (HRV)</h3>
<p>On the other hand, HRV changes in the opposite direction. In particular,&nbsp; <a href="https://pmc.ncbi.nlm.nih.gov/articles/PMC6912442/">a meta-analysis</a> of more than 1,000 participants showed the reduction of vagally mediated HRV from follicular to luteal phases of the menstrual cycle.</p>
<p>For example, <a href="https://pmc.ncbi.nlm.nih.gov/articles/PMC5588411/">one study reported</a> that SDNN decreased from 154 ms in the follicular phase to 136 ms in the luteal phase, which represents a decrease of 12%. Progesterone is responsible for such effects. Specifically, it triggers the renin-angiotensin system (RAS), increases the total blood volume, raises HRj, and reduces parasympathetic influence. On the other hand, estrogen decreases HR (negative chronotropic effect) and leads to greater HRV.</p>
<p>So during the mid-luteal phase, you already have an increased RHR but a reduced HRV. To a recovery algorithm that does not know where you are within your menstrual cycle, this combination signifies stress, sickness or overtraining.</p>
<h3 id="heading-skin-temperature">Skin Temperature</h3>
<p>The temperature shift has been most thoroughly studied out of the three. <a href="https://pubmed.ncbi.nlm.nih.gov/33123618/">Postovulatory rise of basal body temperature</a> by 0.3–0.7°C due to progesterone’s effect has been known for over 100 years and constitutes the basis of traditional fertility awareness methods.</p>
<p>My Oura Ring data also shows that skin temperature usually increases during the luteal phase. It also tends to drop briefly just prior to ovulation due to an abrupt drop in body temperature related to estrogen.</p>
<p>The key point here is that signals change in the same direction at the same time, every cycle, predictably. When an algorithm treats these indicators separately, it's structurally wrong.</p>
<h2 id="heading-how-wearables-measure-these-signals"><strong>How Wearables Measure These Signals</strong></h2>
<h3 id="heading-ppg-sensors-and-what-they-actually-capture">PPG Sensors and What They Actually Capture</h3>
<p>Heart rate and HRV measurements from wearables are done by Photoplethysmography (PPG). This sensor emits LED light, generally green for heart rate and red &amp; infrared for SpO2, to shine on your skin. Light gets absorbed differently by blood depending on its volume, so as your heart beats and blood flows in capillaries, light reflected from your skin will be different for each heartbeat. Variation in light reflected is known as the PPG waveform.</p>
<p>Based on PPG waveform data, wearables calculate beat-to-beat intervals. While calculating the heart rate is relatively easy as it simply counts peaks per minute, HRV needs precise timing since it measures the variation in milliseconds between consecutive heartbeats. That’s where signal quality starts to matter a lot.</p>
<p>Placement of sensors on your skin also plays a vital role in this. Generally, finger devices such as smart rings like Oura and Ultrahuman give cleaner PPG signals compared to wrist-worn devices such as your Apple Watch, Garmin, or WHOOP. The finger has higher density capillaries, resulting in larger pulse amplitude and lower motion artifacts.</p>
<p>Wristwear makes up for this problem with more sophisticated signal processing techniques. But there's always a price to pay for that. For instance, Oura Ring 4 provides users with an 18-path multilayered wavelength PPG sensor with adaptive sensor configurations.</p>
<h3 id="heading-temperature-sensors-continuous-vs-spot-measurement">Temperature Sensors: Continuous vs. Spot Measurement</h3>
<p>Temperature sensors incorporated in current wearables measure skin temperature and not core body temperature. These sensors, called thermistors, are capable of detecting temperature fluctuations in terms of changes in electrical resistance.</p>
<p>While there's a relationship between skin temperature and core body temperature, the two aren't the same. Skin temperature responds to factors such as room temperature, weather conditions, and temperature variation caused by changes in blood flow around the skin surface.</p>
<p>Even so, continuous overnight monitoring of skin temperatures may provide better information compared to traditional basal body temperature (BBT). With the fertility awareness technique, temperature is always measured at the same time each morning, right before getting out of bed. Missing a measurement or a bad night of sleep may negatively impact results.</p>
<p>Wearables take a different approach. By collecting temperature data throughout the night, they can identify longer-term trends and reduce the impact of short-term fluctuations.</p>
<p>Some devices, such as the Apple Watch Series 8 and later, Fitbit Sense, and Oura Ring, have temperature sensors. Most smart rings track temperature changes from an individual’s baseline, not the absolute temperature itself. It makes identifying temperature increases, which happen after ovulation, easier.</p>
<h2 id="heading-how-the-algorithms-work"><strong>How the Algorithms Work</strong></h2>
<h3 id="heading-calendar-based-vs-physiology-based-detection">Calendar-Based vs. Physiology-Based Detection</h3>
<p>Perhaps the most basic way of detecting the menstrual cycle is through a calendar model. The user inputs the first day of their period, the app calculates the average cycle length, and predicts the fertile window forward from there.</p>
<p>Apps like Clue, Flo, and older versions of Apple’s period tracker use this as their foundation. It’s a simple algorithm that needs no sensor data at all.</p>
<p>The problem with calendar algorithms is accuracy. These types of methods operate on regular cycles, but these aren't common in many women. For ovulation detection, for example, <a href="https://pmc.ncbi.nlm.nih.gov/articles/PMC11829181/">studies reveal</a> that there's an average error of 3.44 days for calendar methods alone.</p>
<p>Also, calendar methods predict menstrual phases based only on dates entered by the user, whereas physiology-based approaches analyze sensor data such as temperature, heart rate and HRV to detect ovulation and cycle-related changes. For example, Oura uses heart rate and temperature to detect ovulation with an average error of 1.26 days.</p>
<h3 id="heading-how-machine-learning-classifies-cycle-phases">How Machine Learning Classifies Cycle Phases</h3>
<p>Machine learning algorithms don't use a single metric to determine where you are within your menstrual cycle. Rather, they examine patterns in several physiological indicators taken from wearables, such as skin temperature, heart rate, heart rate variability (HRV), and in some cases, electrodermal activity (EDA).</p>
<p>Over time, machine learning algorithms figure out which cycle stages correspond to which physiological patterns. For example:</p>
<ul>
<li><p>The luteal stage is characterized by an increase in skin temperature and changes in cardiovascular metrics.</p>
</li>
<li><p>Ovulation causes changes in patterns in terms of temperature and heart rate.</p>
</li>
<li><p>The menstrual phase can show its own distinct combination of physiological changes.</p>
</li>
<li><p>The follicular phase is generally the most difficult one to recognize since its biometric signatures aren't clearly defined and tend to coincide with those from other phases.</p>
</li>
</ul>
<p>A <a href="https://pubmed.ncbi.nlm.nih.gov/39889448/">2025 study</a> found that machine learning algorithms can effectively determine the menstrual, ovulatory, and luteal phases. The accuracy of the results decreased when the follicular phase was added to the list of phases.</p>
<p>Modern cycle tracking apps have become complex because of this reason and they no longer depend solely on temperature. It becomes easier for a device to identify the phases of the menstrual cycle with every additional physiological signal that it captures.</p>
<p>Other technologies like the <a href="https://wearablexp.com/smart-wearables/vivoo-flowpad-smart-menstrual-pad/">Vivoo FlowPad</a> are also emerging that attempt to collect menstrual health data directly rather than inferring it from wearable sensors.</p>
<h2 id="heading-why-the-accuracy-gap-exists"><strong>Why the Accuracy Gap Exists</strong></h2>
<p>The issue with wearables comes down to the fact that many of the metrics related to menstrual cycle phases aren’t exclusive to the menstrual cycle.</p>
<p>Take, for instance, the metrics such as a high resting heart rate, reduced HRV, and increased skin temperature. These could be observed during the luteal phase, but can also occur thanks to a range of other factors, including illness, lack of sleep, stress, consumption of alcohol, or even jet lag.</p>
<p>Yet another hurdle with menstrual tracking involves individual differences since some women might have significant changes during their menstrual cycles when it comes to temperature and HRV, whereas others will have minimal changes in those metrics.</p>
<p>This is why most menstrual tracking algorithms require individual baselines instead of population baselines, meaning that the more data is collected from a woman regarding her menstrual cycles, the better it gets at identifying her personal patterns.</p>
<h2 id="heading-what-cycle-aware-algorithms-look-like-in-practice"><strong>What Cycle-Aware Algorithms Look Like in Practice</strong></h2>
<p>Until 2025, most wearables considered tracking cycles and recovery as two separate concepts. Oura became the first big company to connect the two.</p>
<p>Its updated algorithm accounts for increased resting heart rate, decreased HRV, and increased body temperature, all common during the luteal phase. Instead of automatically lowering readiness scores, it checks whether those changes are a normal part of the menstrual cycle.</p>
<p>This reduced the number of falsely low recovery scores during the second half of the menstrual cycle. In 2026, Oura went further with a dedicated AI model focused on cycles, fertility, pregnancy, and menopause.</p>
<p>WHOOP chose a different route through its metric called cardiovascular amplitude that measures heart rate and HRV variability throughout the whole cycle. Rather than focusing on individual phases, it looks at the overall physiological impact of hormonal changes.</p>
<p>Natural Cycles became the first fertility app that obtained FDA approval for contraceptive use, collecting users' body temperature data with the help of their wearables’ sensors like the Apple Watch, Oura Ring, Garmin, or its own dedicated NC Band.</p>
<p>Garmin, Fitbit, and Samsung track menstrual cycles, but those insights remain largely separate from their recovery and readiness metrics.</p>
<h2 id="heading-wrapping-up"><strong>Wrapping Up</strong></h2>
<p>This boils down to the mismatch between measurements taken by wearables and what recovery algorithms were designed to handle.</p>
<p>PPG sensors and temperature sensors allow wearables to detect changes that happen across the menstrual cycle and they work well enough. Multi-parameter machine learning allows for reliable classification of the cycle phases, particularly those happening during ovulation.</p>
<p>But problems arise because many recovery algorithms have been trained on data biased towards male samples, where hormonal cycle variations are considered to be noise. These recovery algorithms lack the means to differentiate between luteal phase physiology and initial phases of an illness. Sensors won’t solve this problem, but algorithmic design will.</p>
<p>From the perspective of developing health apps using wearable device APIs, we already have access to health metrics that incorporate information about the current stage of the cycle. Oura provides it in specific endpoints, Apple integrates with HealthKit’s HKCategoryTypeIdentifier, and WHOOP ties it into its recovery model.</p>
<p>The problem here is that data can be accessed on these platforms via different APIs, data models, and integration techniques. While Oura, Apple HealthKit, and WHOOP may expose similar health metrics, there can still be differences in the sampling frequency, preprocessing methods, and metric definitions, making it hard to create algorithms that would work consistently across platforms.</p>
<p>This lack of standardization also contributes to the training data problem. Data collected by Oura, Apple Watch, and WHOOP can't always be combined easily since each platform stores and works with data differently. As a result, researchers and developers have to do additional work preparing and normalizing data before it can be used to train models.</p>
<p>There are sensors and the models have been improving, but the APIs are fragmented and the lack of training data is real. That’s where the work is.</p>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ How Step Counters Work in Wearables and Why Different Devices Give Different Results ]]>
                </title>
                <description>
                    <![CDATA[ It’s been three years since I started using my wearables to count my steps. Three years of trying to hit the daily 10K target, closing rings, and going to sleep knowing that I accomplished something p ]]>
                </description>
                <link>https://www.freecodecamp.org/news/tech-giants-wearable-data-race/</link>
                <guid isPermaLink="false">6a19fc09a8acc9e04bced197</guid>
                
                    <category>
                        <![CDATA[ Wearable Technology ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Health Tracking ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Wearable Devices ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Health Tech  ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ Shradha Puri ]]>
                </dc:creator>
                <pubDate>Fri, 29 May 2026 20:50:17 +0000</pubDate>
                <media:content url="https://cdn.hashnode.com/uploads/covers/5e1e335a7a1d3fcc59028c64/7a4f79f7-d490-4711-9245-6545c14b5244.png" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>It’s been three years since I started using my wearables to count my steps. Three years of trying to hit the daily 10K target, closing rings, and going to sleep knowing that I accomplished something productive.</p>
<p>But then I put another smartwatch on my wrist in an attempt to see how different those results were. Both watches were on the same wrist, at the same time, counting the same walk. One said 8,400 steps, while the other said 6,900.</p>
<p>Same wrist, 1,500 steps apart.</p>
<p>So naturally, I had a small crisis about everything I thought I knew.</p>
<p>The strange thing is that nobody really tells you this when you buy a fitness tracker. The packaging doesn’t read “lab accurate, not life accurate” or anything remotely close to this idea. The app never mentions the fact that two people who own wearables from the same company might actually have their steps counted differently.</p>
<p>But when you start looking into how wearables calculate your steps, things make more sense than you think.</p>
<h2 id="heading-table-of-contents">Table of Contents</h2>
<ul>
<li><p><a href="#heading-inside-the-mems-accelerometer">Inside the MEMS Accelerometer</a></p>
</li>
<li><p><a href="#heading-how-a-step-becomes-a-number">How a Step Becomes a Number</a></p>
</li>
<li><p><a href="#heading-why-wrist-based-tracking-is-hard">Why Wrist-Based Tracking Is Hard</a></p>
</li>
<li><p><a href="#heading-why-slow-walking-confuses-wearables">Why Slow Walking Confuses Wearables</a></p>
</li>
<li><p><a href="#heading-false-steps-are-real">False Steps Are Real</a></p>
</li>
<li><p><a href="#heading-why-lab-accuracy-doesnt-match-real-life">Why Lab Accuracy Doesn’t Match Real Life</a></p>
</li>
<li><p><a href="#heading-do-some-brands-perform-better">Do Some Brands Perform Better?</a></p>
</li>
<li><p><a href="#heading-how-the-person-wearing-the-device-affects-accuracy-and-what-you-can-actually-do-to-improve-it">How the Person Wearing the Device Affects Accuracy and What You Can Actually Do to Improve It</a></p>
</li>
<li><p><a href="#heading-final-thoughts">Final Thoughts</a></p>
</li>
</ul>
<h2 id="heading-inside-the-mems-accelerometer"><strong>Inside the MEMS Accelerometer</strong></h2>
<p>Each modern fitness tracker and smartwatch includes a <strong>MEMS accelerometer</strong> (Micro-Electro-Mechanical System). The MEMS consists of a tiny silicon chip with microscopic moving parts inside.</p>
<p>Body movements cause these microscopic components to move by an extremely small margin, which is captured by the sensor as a change in the electric signal. Most wearable devices have 3-axis or triaxial accelerometers. This means that they measure motions in three directions at once:</p>
<ul>
<li><p>up/down</p>
</li>
<li><p>left/right</p>
</li>
<li><p>forward/backward</p>
</li>
</ul>
<p>These signals are captured continuously at about 50 times per second.</p>
<p>When you walk, your body produces a recognizable motion pattern, such as hip movement downward, movement of torso up and down and arm swinging rhythmically. What's most important is that your body bounces up and down with each step taken.</p>
<p>This vertical bounce is considered one of the clearest indications when someone walks and that is why step counters are so dependent upon it.</p>
<p>The accelerometer sends out three streams of information regarding movement. Many algorithms combine them into a single magnitude signal using the <strong>Euclidean norm</strong>:</p>
<p>‖a‖ = √(x² + y² + z²)</p>
<p>This gives the device a rotation-independent way to measure total acceleration.</p>
<h3 id="heading-the-role-of-gyroscopes">The Role of Gyroscopes</h3>
<p>Higher-end wearables also have a gyroscope that detects any rotations. The accelerometer and gyroscope together make up the Inertial Measurement Unit (IMU). This makes sure that the device can differentiate between you walking or just moving your wrist around.</p>
<h2 id="heading-how-a-step-becomes-a-number"><strong>How a Step Becomes a Number</strong></h2>
<p>The sensor itself can't calculate anything. All it does is produce raw motion data. The real work happens when that signal is interpreted through an algorithm, which is where things begin to differ dramatically.</p>
<p>All companies have their own proprietary algorithms. The algorithm used by Garmin is not the same algorithm used by Apple. And Apple’s is not the same as Samsung’s. Some of the most common approaches include:</p>
<ul>
<li><p><strong>Peak detection:</strong> The algorithm detects repeating peaks in the acceleration signal that correspond to walking activity in humans. Since most people walk at a step rate in the range of 100 to 130 steps per minute, the device is designed to detect periodic activity in this range.</p>
</li>
<li><p><strong>Zero-crossing detection:</strong> Instead of looking for peaks, this approach involves determining how often the signal crosses a midpoint value.</p>
</li>
<li><p><strong>Autocorrelation:</strong> This method involves searching for repeating patterns in the motion signal over time.</p>
</li>
<li><p><strong>Frequency-domain analysis:</strong> Some algorithms search for the dominant frequency of walking.</p>
</li>
<li><p><strong>Machine learning models:</strong> Modern wearable devices have adopted machine learning approaches for walking pattern recognition based on training on large datasets of labeled walking behavior. These systems can differentiate between walking, running, typing, driving and random arm motion most of the time.</p>
</li>
</ul>
<p>But every algorithm carries its own trade-offs. If the sensitivity of the algorithm is set too high, then the smartwatch may overlook slow or subtle motions. On the other hand, if the sensitivity is set too low, the watch would generate false steps when washing dishes or riding on bumpy roads.</p>
<p>There's no perfect setting, but every company has chosen to adopt its preferred compromise.</p>
<h2 id="heading-why-wrist-based-tracking-is-hard"><strong>Why Wrist-Based Tracking Is Hard</strong></h2>
<p>The primary problem with modern wearable devices is their position on the body.</p>
<p>The waist-mounted pedometer is located close to the center of mass, which allows for the detection of very clear and strong signals. This is why traditional clip-on pedometers often perform better than you might expect.</p>
<p>On the contrary, smartwatches operate with signals detected from arm movements, and your wrist is noisy. The natural walk accompanied by a natural swinging of the arms provides a very strong correlation between leg movements and arm movements, but any real-life scenario may disturb this reading. If you’re pushing a stroller, holding shopping bags, a mobile phone, or walking with hands deep in your pockets, the correlation weakens and it becomes impossible to detect a specific signal related to leg movement.</p>
<p>Beyond this, even the side of the body where you wear the smartwatch plays a role in data interpretation. For example, the dominant arm tends to produce a stronger acceleration signal, but it also produces additional signals due to its active work in performing different routine actions.</p>
<p>This is one of the reasons why you would’ve noticed that most wearable devices require specifying which wrist you are strapping the device to during setup.</p>
<h2 id="heading-why-slow-walking-confuses-wearables"><strong>Why Slow Walking Confuses Wearables</strong></h2>
<p>One of the most surprising things about this research is that it’s far easier to accurately detect regular walking than it is to detect slow walking.</p>
<p>Wearables do well enough in detecting walking speed at normal paces. But as your speed drops, the acceleration and rhythm of the motion signals start to become smaller. This makes it difficult for algorithms trained primarily on healthy adults walking at normal treadmill speeds to identify slow walking correctly. The same studies may also show that wrist-worn trackers underestimate the number of steps in slow walking.</p>
<p>But why does this matter? The older we get, the slower and more restricted our gait becomes, which means that the motion signals detected by our wearable devices will be weaker. Then there are patients with neurological conditions like Parkinson’s disease or stroke, which can produce gait patterns that consumer algorithms simply weren’t trained to recognize.</p>
<p>So the next time you think your watch is broken, its likely that the detection system is simply working from assumptions that don’t match your movement pattern.</p>
<h2 id="heading-false-steps-are-real"><strong>False Steps Are Real</strong></h2>
<p>Wearables not only overlook steps, but they can actually create non-existent ones. Because accelerometers measure all kinds of acceleration, quite a lot of actions completely unrelated to walking may trick the algorithm.</p>
<p>Activities that can cause phantom steps include:</p>
<ul>
<li><p>Driving on bumpy roads</p>
</li>
<li><p>Typing aggressively on the keyboard</p>
</li>
<li><p>Washing dishes</p>
</li>
<li><p>Folding the laundry</p>
</li>
<li><p>Drumming</p>
</li>
<li><p>Taking a train or bus</p>
</li>
</ul>
<p>There's an engineering dilemma here: the more sensitive your algorithm is to slow walking, the more prone to errors. The less sensitive it is, the better it works, but undercounts certain activities.</p>
<p>This is the reason for very different results from different brands despite having the same data entered.</p>
<h2 id="heading-why-lab-accuracy-doesnt-match-real-life"><strong>Why Lab Accuracy Doesn’t Match Real Life</strong></h2>
<p>Fitness trackers tend to be surprisingly accurate within laboratory testing. In tests under controlled conditions, such as on treadmills, a number of wearables manage to reach step counting errors below 10%. But the real world tends to be messier.</p>
<p>Researchers call this “free-living” data because it involves movements made outside of the laboratory in normal life situations. The real-world walking pattern is characterized by irregularities such as rough surfaces, stops, carrying things, changes in speed, unpredictable arm movements and walking intervals. All these factors contribute to making step detection more difficult.</p>
<p>A smartwatch may prove to be exceptionally accurate in a controlled environment, yet still behave inconsistently in daily use.</p>
<h2 id="heading-do-some-brands-perform-better"><strong>Do Some Brands Perform Better?</strong></h2>
<p>Yes, but it’s rarely that significant. Studies indicate that Apple Watch, Garmin, Fitbit, and Samsung are all decent pedometers during normal walking conditions. Garmins are especially valued for their consistency and reliable tracking when outdoors. The Apple Watch reportedly works very well for altered gait and slower walking. Fitbits use a more sensitive algorithm and that may result in increased step counts.</p>
<p>But there are other elements at play. The speed at which you walk, natural movement of your arms, location of the device on the body, what activity you’re doing, and how the algorithm interprets your movement. The difference between two people using the same watch is often larger than the difference between two brands.</p>
<h2 id="heading-how-the-person-wearing-the-device-affects-accuracy-and-what-you-can-actually-do-to-improve-it"><strong>How the Person Wearing the Device Affects Accuracy and What You Can Actually Do to Improve It</strong></h2>
<p>A few things can noticeably improve step-count accuracy:</p>
<ul>
<li><p><strong>Walk at a natural pace when possible:</strong> Wearables work best at moderate walking speeds. Walking slowly, shuffling and stop-and-go actions are significantly harder to detect with algorithms.</p>
</li>
<li><p><strong>Wear the device properly:</strong> Try putting on your wearable device snugly above your wrist bone to ensure consistent movement along with your arm.</p>
</li>
<li><p><strong>Set your dominant wrist correctly:</strong> Most smartwatches will adjust sensitivity settings based on which hand you use as the dominant one.</p>
</li>
<li><p><strong>Keep your arms moving naturally:</strong> Holding bags, pushing a stroller, or keeping your hands in your pockets might affect the accuracy because most wearable sensors depend greatly on the motion of your arms.</p>
</li>
<li><p><strong>Keep firmware updated:</strong> Most manufacturers continue to refine their algorithms through firmware updates.</p>
</li>
<li><p><strong>Use trends, not exact numbers:</strong> Step counts are better at tracking your habits and long-term patterns on the same device, but are less accurate compared to the number of steps registered by other brands.</p>
</li>
<li><p><strong>Be cautious with slow or altered gait:</strong> Older adults, rehabilitation patients, or those with brain injuries are likely to see undercounting of steps because most algorithms are trained on standard walking patterns.</p>
</li>
</ul>
<h2 id="heading-final-thoughts"><strong>Final Thoughts</strong></h2>
<p>The technology in today’s wearables is truly amazing. A small sensor the size of a grain of rice measures your movement multiple times each second, filters out noise and tries to make sense of the data generated by it. That’s an incredibly difficult engineering problem. But step counting is ultimately an estimation problem.</p>
<p>There are different step counts generated by various brands because they all have different filtering, motion classification, signal interpretation and sensor placement. None of them count your actual steps perfectly. They estimate the probabilities based on your movement patterns. And in reality, human movements aren't always neat and monitored.</p>
<p>So if you have two watches that generate different step counts, don’t panic. They do their best to understand messy movement data.</p>
 ]]>
                </content:encoded>
            </item>
        
    </channel>
</rss>
