<?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[ Shradha Puri - 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[ Shradha Puri - freeCodeCamp.org ]]>
            </title>
            <link>https://www.freecodecamp.org/news/</link>
        </image>
        <generator>Eleventy</generator>
        <lastBuildDate>Sat, 29 Aug 2026 12:59:46 +0000</lastBuildDate>
        <atom:link href="https://www.freecodecamp.org/news/author/shradhapuri/rss.xml" rel="self" type="application/rss+xml" />
        <ttl>60</ttl>
        
            <item>
                <title>
                    <![CDATA[ Why Two Emotions Can Produce the Exact Same Biometric Signal ]]>
                </title>
                <description>
                    <![CDATA[ A few months ago I was sitting in a convention center about to deliver a keynote at an event, watching my Oura Ring throw up the same heart rate pattern it shows me when I’m at my Pilates class. Simil ]]>
                </description>
                <link>https://www.freecodecamp.org/news/how-wearables-confuse-different-emotions/</link>
                <guid isPermaLink="false">6a887bfc3e750c6752406141</guid>
                
                    <category>
                        <![CDATA[ Wearables ]]>
                    </category>
                
                    <category>
                        <![CDATA[ WearableTech ]]>
                    </category>
                
                    <category>
                        <![CDATA[ SignalDetection ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Signal Processing ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ Shradha Puri ]]>
                </dc:creator>
                <pubDate>Fri, 21 Aug 2026 16:25:32 +0000</pubDate>
                <media:content url="https://cdn.hashnode.com/uploads/covers/5e1e335a7a1d3fcc59028c64/415c689f-4087-4b79-b75c-cdc14b9950fc.png" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>A few months ago I was sitting in a convention center about to deliver a keynote at an event, watching my Oura Ring throw up the same heart rate pattern it shows me when I’m at my Pilates class. Similar numbers, similar stress score. Except I was nervous, not fighting through the pulses of my leg raises.</p>
<p>That's when I realized why the two scenarios, although completely different, produce similar results. Your wearable doesn't know what you’re feeling. It just knows that your body is doing something and it's guessing what that is based on the signals your wearable is collecting, whether you're thrilled or terrified.</p>
<p>This doesn’t mean your tech is flawed. It’s a limitation baked into how every wearable on the market measures emotions and honestly, once you understand why, you’ll read your own data a lot differently.</p>
<h2 id="heading-table-of-contents">Table of Contents</h2>
<ul>
<li><p><a href="#heading-what-your-wearable-is-actually-measuring">What Your Wearable Is Actually Measuring</a></p>
</li>
<li><p><a href="#heading-stress-and-valence-and-why-your-ring-only-sees-half-the-picture">Stress and Valence and Why Your Ring Only Sees Half the Picture</a></p>
</li>
<li><p><a href="#heading-real-examples-where-this-actually-messes-with-your-data">Real Examples Where This Actually Messes With Your Data</a></p>
<ul>
<li><p><a href="#heading-pre-race-nerves-vs-a-genuine-anxiety-spike">Pre-race nerves vs a genuine anxiety spike</a></p>
</li>
<li><p><a href="#heading-a-tough-workout-vs-a-genuinely-stressful-day">A tough workout vs a genuinely stressful day</a></p>
</li>
<li><p><a href="#heading-excitement-before-a-first-date-vs-pre-interview-dread">Excitement before a first date vs pre-interview dread</a></p>
</li>
</ul>
</li>
<li><p><a href="#heading-why-this-actually-matters-beyond-just-being-a-fun-fact">Why This Actually Matters Beyond Just Being a Fun Fact</a></p>
</li>
<li><p><a href="#heading-what-companies-are-actually-doing-about-this">What Companies Are Actually Doing About This</a></p>
</li>
<li><p><a href="#heading-the-takeaway">The Takeaway</a></p>
</li>
</ul>
<h2 id="heading-what-your-wearable-is-actually-measuring">What Your Wearable Is Actually Measuring</h2>
<p>Let's get one thing straight first. Neither the ring nor the watch nor the chest strap is measuring "stress" or "excitement". There is no such sensor. All the things it's measuring are the following physical signs:</p>
<ul>
<li><p>Heart rate and heart rate variability (HRV)</p>
</li>
<li><p>Electrodermal activity, also known as skin conductance or galvanic skin response</p>
</li>
<li><p>Skin temperature</p>
</li>
<li><p>Respiratory rate (in case the device measures it)</p>
</li>
</ul>
<p>All those are the consequences of work on your autonomic nervous system. Whenever you activate your sympathetic nervous system, your heart rate increases, heart rate variability decreases, you sweat a little bit, and your skin temperature changes. The process happens no matter whether you have to perform on stage, have a fight with somebody, or to see the letter with rejection on your laptop.</p>
<p>All that your sensor knows is the "sympathetic activation." That's all the information it has access to.</p>
<h2 id="heading-stress-and-valence-and-why-your-ring-only-sees-half-the-picture">Stress and Valence and Why Your Ring Only Sees Half the Picture</h2>
<p>Psychologists have divided emotions into two general dimensions. <strong>Arousal</strong> refers to your level of excitement. Low arousal means you're calm, while high arousal indicates being highly charged. <strong>Valence</strong> refers to whether the emotion is felt as pleasant or unpleasant.</p>
<p>For fear and excitement, their locations in terms of arousal are quite close to each other, as they're both high arousal emotions. The difference lies in their valence. But your wearable device can't pick that up because there's nothing you can wear that can tell whether you feel good or bad about the experience.</p>
<p>Basically, your device is the technological equivalent of the age-old <a href="https://www.simplypsychology.org/schachter-singer-theory.html">Schachter-Singer two-factor theory</a>, which proposes that your body gives you a rush of physiological arousal and then your brain will determine the emotional label based on the context. If it's a roller coaster, you'll feel excited. If it's turbulence in a plane, you'll be afraid. The same level of arousal, but with different labels, determined by your brain, not your body.</p>
<p>You're stuck where your body is before your brain makes its determination.</p>
<h2 id="heading-real-examples-where-this-actually-messes-with-your-data">Real Examples Where This Actually Messes With Your Data</h2>
<p>I've seen this play out in my own Oura and Ultrahuman data more times than I can count, and I hear the same thing from people using wearables all the time.</p>
<h3 id="heading-pre-race-nerves-vs-a-genuine-anxiety-spike">Pre-Race Nerves vs a Genuine Anxiety Spike</h3>
<p>The HRV levels of runners preparing for a HYROX competition or a half-marathon will most likely plummet on the morning of a race. This is the same thing that happens when you're dreading a hard conversation with your boss. This is because your heart is going through the same preparation process regardless of what's about to happen.</p>
<p>Your smartwatch will alert you of the low readiness status without giving any information on whether you should expect it to harm your performance or it's just adrenaline making you ready for the race.</p>
<h3 id="heading-a-tough-workout-vs-a-genuinely-stressful-day">A Tough Workout vs a Genuinely Stressful Day</h3>
<p>This is a very common mistake. An intense HIIT session and a terrible, stressful day at work can result in very similar elevated heart rate and decreased HRV.</p>
<p>WHOOP and Apple Watch will record strain for both types of activities. But strain from weight lifting and strain from three difficult meetings aren't the same for your recovery despite having the same picture on the graph.</p>
<h3 id="heading-excitement-before-a-first-date-vs-pre-interview-dread">Excitement Before a First Date vs Pre-interview Dread</h3>
<p>Both of them come with butterflies in the stomach, sweaty hands, and a racing heart. No matter how cool the smart ring you have on may seem to be, it can't understand whether you're happy about the situation or not.</p>
<h2 id="heading-why-this-actually-matters-beyond-just-being-a-fun-fact">Why This Actually Matters Beyond Just Being a Fun Fact</h2>
<p>This may sound like a minor detail at first, but it has very real consequences for data interpretation. Some apps have already begun labelling elevated arousal readings as “stress". And while I understand the temptation in terms of product design, this has the potential to confuse people.</p>
<p>If your app tells you you're stressed every single time you're simply excited, you begin to second guess feelings which should otherwise be totally normal.</p>
<p>I've heard stories from my colleagues who remember being overjoyed with a situation and their smart ring labeled it as “anxiety”. That's not a great place for a wellness product to put someone in.</p>
<p>This also has some practical consequences in terms of training implications. The treatment of pre-competition arousal as if it was chronic stress may lead to incorrect advice regarding deloading. You certainly don't need the same recovery after performing well in a race you were pumped for as you would if you had a terrible race day.</p>
<p>But you may need recovery after the whole week in which your nervous system was in fight or flight because of the actual stresses, unrelated to your training.</p>
<h2 id="heading-what-companies-are-actually-doing-about-this">What Companies Are Actually Doing About This</h2>
<p>For the record, this is far from being an unknown issue in the industry. So here are a few directions worth knowing about:</p>
<h3 id="heading-1-context-stacking">1. Context Stacking</h3>
<p>Relying not only on the reading of the sensor, some platforms are adding additional information in terms of calendar events, self-reported mood logging, or even location to help interpret what has caused certain reactions that couldn't be easily identified only based on the sensor readings.</p>
<p>The daytime stress feature of Oura Ring relies partially on this approach, prompting users to log what they were doing before a sudden spike.</p>
<h3 id="heading-2-facial-and-vocal-cues-where-applicable">2. Facial and Vocal Cues, Where Applicable</h3>
<p>Some companies developing smart glasses and earbuds are trying to integrate biometric signals with vocal tones and facial muscle activity, as they contain additional valence information.</p>
<h3 id="heading-3-just-asking-you">3. Just Asking You</h3>
<p>Quite simply, there's no substitute for a self-report at the moment. The best information is coming from the user tapping their mood status. While it's unattractive from a marketing perspective, it covers exactly that gap which can't be closed by sensors alone.</p>
<p>Unfortunately, none of these solves the problem yet. Valence is a difficult parameter to deduce from wrist or finger readings and I don't think we're getting a direct measurement of it anytime soon.</p>
<h2 id="heading-the-takeaway">The Takeaway</h2>
<p>While your wearable may accurately describe your body’s experience, it can't tell what your emotions really are. Your wearable will let you know when your nervous system has been triggered and it will always be accurate in doing so, but it will never be able to tell you why. It will also never be able to say anything about the quality of your experience.</p>
<p>So the next time your ring signals a surge and tags it with the label of stress, take a minute to pause and reflect. What were you actually going through? You may discover that what you were experiencing was actually excitement.</p>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ Why Your Wearable Needs Weeks of Data Before It Becomes Useful ]]>
                </title>
                <description>
                    <![CDATA[ I can recall the time when I first put on the Oura Ring and checked my readiness score the next morning as if I were checking an exam score. I saw something like 62 and I really started to panic. Was  ]]>
                </description>
                <link>https://www.freecodecamp.org/news/why-your-wearable-needs-weeks-of-data-before-it-becomes-useful/</link>
                <guid isPermaLink="false">6a7f3cb20046634bbe645e53</guid>
                
                    <category>
                        <![CDATA[ Wearable Technology ]]>
                    </category>
                
                    <category>
                        <![CDATA[ baseline ]]>
                    </category>
                
                    <category>
                        <![CDATA[ technology ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ Shradha Puri ]]>
                </dc:creator>
                <pubDate>Fri, 14 Aug 2026 16:05:06 +0000</pubDate>
                <media:content url="https://cdn.hashnode.com/uploads/covers/5e1e335a7a1d3fcc59028c64/c734589e-3fd6-4e8c-996d-743aa5be276e.png" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>I can recall the time when I first put on the Oura Ring and checked my readiness score the next morning as if I were checking an exam score.</p>
<p>I saw something like 62 and I really started to panic. Was I falling sick? Did I get too stressed? Did I sleep the wrong way?</p>
<p>In reality, this didn't matter because the ring didn't even know me at all. It only had one night's worth of information on me. One. And I was out here treating it like gospel.</p>
<p>For those who have purchased a smart ring or smart watch only to be disappointed by the fact that it doesn't instantly understand them, this one is for you. The truth is your wearable isn't broken in the first week. It just doesn't know you yet.</p>
<h2 id="heading-table-of-contents">Table of Contents</h2>
<ul>
<li><p><a href="#heading-your-first-few-days-are-basically-noise">Your First Few Days Are Basically Noise</a></p>
<ul>
<li><a href="#heading-what-baseline-actually-means-here">What "Baseline" Actually Means Here</a></li>
</ul>
</li>
<li><p><a href="#heading-how-wearables-actually-build-that-baseline">How Wearables Actually Build That Baseline</a></p>
</li>
<li><p><a href="#heading-why-it-takes-weeks-not-days">Why It Takes Weeks, Not Days</a></p>
</li>
<li><p><a href="#heading-the-cold-start-problem-isnt-unique-to-wearables">The Cold Start Problem Isn't Unique to Wearables</a></p>
</li>
<li><p><a href="#heading-what-this-actually-means-for-you">What This Actually Means for You</a></p>
</li>
</ul>
<h2 id="heading-your-first-few-days-are-basically-noise">Your First Few Days Are Basically Noise</h2>
<p>Whether it's an Oura, a WHOOP, an Ultrahuman, or a Garmin, each wearable operates under the assumption that it'll have a personal baseline for you, which is your norm. This includes metrics such as your resting heart rate during a typical day or night, HRV range, and body temperature prior to any unusual circumstances occurring.</p>
<p>The issue here lies in the fact that each data point will never be able to provide any information about your norms and baselines. All it does is show the results of your specific measurement. Is 45ms of your heart rate variability considered low for you or high for you? The device won't know until it sees another similar data point.</p>
<p>This is exactly why the readiness or recovery score during the first week of using a new device looks somewhat random to you. It's measuring you against a rough population average, or worse, guessing. Some brands are upfront about this, most just quietly show you a number and let you assume it means something solid.</p>
<h3 id="heading-what-baseline-actually-means-here">What "Baseline" Actually Means Here</h3>
<p>In terms of wearables, a baseline isn't an average. It's a dynamic range that's created from several days or nights and often comes with a standard deviation band. In other words, what you want to hear is not "your HRV is 45" but rather "your HRV is normally between 38 and 52, and 45 today is absolutely normal for you".</p>
<p>This range is exactly what we're talking about. Without the range, none of the numbers would be alarming or useless, as there would be nothing to compare it with.</p>
<p>And it's not only HRV. Your resting heart rate, skin temperature, respiratory rate and even your level of restlessness during nighttime – everything gets its own baseline, created independently, on its own timeline.</p>
<p>Skin temperature is the one that requires the smallest amount of data points for stabilization, as it's a narrow range for the vast majority of people. HRV, on the other hand, needs a lot more as it varies depending on stress, alcohol, load of workouts, state of illness, and many more factors.</p>
<h2 id="heading-how-wearables-actually-build-that-baseline">How Wearables Actually Build That Baseline</h2>
<p>In most consumer wearables, there's a variant of the exponentially weighted moving average or <strong>EWMA</strong>, used to establish your baseline over time. Recent nights matter more than older ones, but none is discarded outright.</p>
<p>It differs from regular averaging by allowing for gradual changes in your baseline to reflect your actual changes without a single off-night ruining the whole thing.</p>
<p>For instance, Oura openly talks about rolling baselines used in their calculations of skin temperature based on your recent history. That's also why the graph of temperature deviations becomes meaningful only after you've been wearing the ring for a while. WHOOP works similarly to build a baseline for HRV and resting heart rate until it decides it's time to produce truly personal recovery scores.</p>
<p>The math behind this isn't complicated, even if it sounds fancy. Any new reading contributes only a tiny bit to building up the baseline. Ten percent weight per day is probably a good number to think of, while ninety percent remains locked into everything that came before.</p>
<p>This way, one bad night, one good night, or one weird reading from a faulty sensor can't ruin the baseline single-handedly. It needs repeated data to be affected and it's the reason why it takes weeks and not days to build up, because a few days can't outweigh accumulated history.</p>
<p>And this is the whole point, but it also means your very first baseline estimate is basically wearing training wheels.</p>
<p>This approach is basically the cold start problem that you can see in recommendation systems or other machine learning models that need historic data in order to produce meaningful results.</p>
<p>In some cases, it may be implemented as a two-stage process on purpose. During the first stage, typically around the first two weeks, you're scored against a generic population model built from data of thousands of other users with similar age or profile. When your history has enough data points already, it silently switches you to scoring against yourself. There's no such thing as an explicit switch here. Instead, people simply notice that scores become more accurate.</p>
<h2 id="heading-why-it-takes-weeks-not-days">Why It Takes Weeks, Not Days</h2>
<p>Despite an intelligent weightage system, it's impossible to gather diverse data in just a few days. Your body doesn't go through all the normal parameters in three nights. A baseline should include:</p>
<ul>
<li><p>A regular work night and a rough sleep night</p>
</li>
<li><p>A rest day and a day with an intense workout</p>
</li>
<li><p>Normal stress and a stressful day at work</p>
</li>
<li><p>In case of a menstrual cycle, ideally several stages of the period, since HRV and temperature fluctuate greatly in the course of the cycle</p>
</li>
</ul>
<p>That's not something that happens in 72 hours. That's why two to four weeks are recommended by most wearable companies prior to interpreting the results for practical use, despite the fact that it may not be emphasized in bold letters on the box, since "wait a month for this thing to become useful" doesn't exactly sell.</p>
<p>I've felt this firsthand with cycle tracking specifically. My temperature baseline on any ring looks completely different depending on which week of my cycle it was built during. If the algorithm only had follicular phase data, my luteal phase numbers would look like a fever every single month. Give it a full cycle or two and suddenly the deviations actually mean something instead of triggering a false alarm every three weeks.</p>
<h2 id="heading-the-cold-start-problem-isnt-unique-to-wearables">The Cold Start Problem Isn't Unique to Wearables</h2>
<p>This is the problem recommendation engines face with their new users as well. There's no way for Netflix to provide any kind of meaningful recommendation based on the user watching a single movie. And a wearable device can’t do anything with one day of sleep analysis.</p>
<p>The solutions in both cases are pretty similar as well. The approach here is to rely on population data or some general defaults first and then slowly replace it with individual data over time, giving more weight to recent behavior than to older ones because lifestyles change and bodies change. That’s essentially the same approach but presented differently.</p>
<p>So if you're building something that touches biometric or behavioral data, this is an approach that should be accounted for from the very beginning rather than implemented later. Show users a confidence indicator instead of a clean, confident-looking number when the model barely has any history to work with. A recovery score of 61 looks equally authoritative on the second day as on the sixtieth one, despite the difference between the scores and the reason why. Being honest about that difference in the UI saves you a lot of confused support tickets down the line.</p>
<h2 id="heading-what-this-actually-means-for-you">What This Actually Means for You</h2>
<p>This article will help if you just bought a new ring or watch. Here's what you should do with it during the first month.</p>
<p>First, ignore your daily scores in week one. They aren't completely wrong, they're just based on almost nothing. You can use them the same way as the first impression by someone who doesn't know you.</p>
<p>Next, write down some context if your app provides that opportunity. Add tags like alcohol, poor sleep, travel, illness, workouts, and so on. The sooner the algorithm learns different information about you, the sooner it learns the true baseline.</p>
<p>Also, wait at least two to three weeks to assess the accuracy of the results. It's roughly the period when the algorithm receives enough information to compare rather than guess.</p>
<p>Finally, track a whole cycle or two if you track your period. Otherwise, the algorithm gets only part of your cycle and gives you inaccurate information. That's the reason why sometimes people get an alert about "low readiness" in the luteal phase of a perfectly normal cycle.</p>
<p>I still check my ring every day, but I stop taking the results from week one seriously for a long time. The data starts to be truly helpful after I've given enough time to the algorithm to learn all the details of my life, including both good and bad periods. And until that moment, it's not telling lies to you, it just hasn't learned enough yet.</p>
<p>So the next time when your brand new device shows a score that seems wrong or even insulting, remember it isn't judging you. It just has the sample size of one and tries to work with it the best way. Give it the weeks it actually needs and it'll start telling you something real instead of just making an educated guess and hoping for the best.</p>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ How GPS Works in Wearables (and Why It Kills Your Battery) ]]>
                </title>
                <description>
                    <![CDATA[ A couple of months ago, I went for a 10K run with three different devices on me. Why? Another long story of review deadlines and my own procrastination. By the time I was done with my run and got back ]]>
                </description>
                <link>https://www.freecodecamp.org/news/how-gps-works-in-wearables-and-why-it-kills-your-battery/</link>
                <guid isPermaLink="false">6a7256c8841f66cf46e0b0b9</guid>
                
                    <category>
                        <![CDATA[ gps ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Wearable Technology ]]>
                    </category>
                
                    <category>
                        <![CDATA[ battery ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ Shradha Puri ]]>
                </dc:creator>
                <pubDate>Tue, 04 Aug 2026 21:16:56 +0000</pubDate>
                <media:content url="https://cdn.hashnode.com/uploads/covers/5e1e335a7a1d3fcc59028c64/8e454167-3406-4d4c-b7f2-4e51a3f5a630.png" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>A couple of months ago, I went for a 10K run with three different devices on me. Why? Another long story of review deadlines and my own procrastination.</p>
<p>By the time I was done with my run and got back home, the smartwatch that was using GPS had close to 15% battery left. But the smart band and the smart ring which were using my phone’s GPS stayed put.</p>
<p>That's when it clicked how much GPS actually costs a device and how little most people understand what’s happening when their watch gives them directions on a new hiking trail.</p>
<p>So let’s get into it: what GPS in a wearable device actually does, why it's such a battery hog, and how to save on battery during long hikes.</p>
<h2 id="heading-table-of-contents"><strong>Table of Contents</strong></h2>
<ul>
<li><p><a href="#heading-whats-actually-happening-when-your-watch-says-acquiring-gps">What's Actually Happening When Your Watch Says "Acquiring GPS"</a></p>
<ul>
<li><a href="#heading-gps-glonass-galileo-and-why-your-watch-uses-all-of-them">GPS, GLONASS, Galileo, and Why Your Watch Uses All of Them</a></li>
</ul>
</li>
<li><p><a href="#heading-why-this-eats-battery-like-nothing-else">Why This Eats Battery Like Nothing Else</a></p>
</li>
<li><p><a href="#heading-standalone-gps-vs-phone-connected-gps">Standalone GPS vs Phone-Connected GPS</a></p>
</li>
<li><p><a href="#heading-which-wearables-actually-hold-up-and-which-ones-dont">Which Wearables Actually Hold Up (and Which Ones Don't)</a></p>
</li>
<li><p><a href="#heading-what-wearable-brands-are-doing-to-fix-this">What Wearable Brands Are Doing to Fix This</a></p>
</li>
<li><p><a href="#heading-how-to-save-battery-without-losing-your-gps-data">How to Save Battery Without Losing Your GPS Data</a></p>
</li>
<li><p><a href="#heading-the-trade-off-isnt-going-away-anytime-soon">The Trade-Off Isn't Going Away Anytime Soon</a></p>
</li>
</ul>
<h2 id="heading-whats-actually-happening-when-your-watch-says-acquiring-gps"><strong>What's Actually Happening When Your Watch Says "Acquiring GPS"</strong></h2>
<p>Your wearable isn't just listening to the signal of one satellite. It listens to the signals of at least four satellites orbiting the Earth, then calculates the location based on how long it took for each signal to reach the watch.</p>
<p>This technique is called trilateration, and the basic math principles are the same for your smartphone, your car's navigation system, and your watch.</p>
<p>This isn't an easy task since there's a tiny antenna in your watch and a tiny processor performing calculations in real-time. Not just one calculation, thought: it's performed every second while the device is on and while you're moving. This means that every second or so your watch gets and calculates the signal of satellites that are literally more than 12,000 miles away from the Earth.</p>
<p>That's a lot to do for such a small device.</p>
<h3 id="heading-gps-glonass-galileo-and-why-your-watch-uses-all-of-them">GPS, GLONASS, Galileo, and Why Your Watch Uses All of Them</h3>
<p>Modern wearables rarely use GPS alone anymore. They draw on the signals provided by GPS (US-based), GLONASS (Russia), Galileo (Europe), as well as QZSS or BeiDou in some cases, depending on the chip set.</p>
<p>By drawing on the signals from more than one satellite system at a time, your wearable will be able to get and maintain the signal more quickly and more accurately, particularly when there's less sky visibility, like in a dense urban environment or while moving under a tree canopy.</p>
<p>It's a very practical feature. I've tested wearables that required minutes to get a GPS signal, as well as a later model from the same brand, equipped with multi-band capability, that connected almost instantly.</p>
<p>The downside to drawing on several different satellite systems is that it requires more radio activity and so uses up more battery. It's a trade-off between accuracy and speed and battery life, which not many users understand.</p>
<h2 id="heading-why-this-eats-battery-like-nothing-else"><strong>Why This Eats Battery Like Nothing Else</strong></h2>
<p>It's safe to say that GPS functionality is one of the biggest battery hogs out there. And here's what makes it such an energy-sucking machine.</p>
<p>First of all, the GPS radio is active during your entire workout or activity. In contrast to a heart rate monitor that takes samples several times per second and only syncs with the app when the app is open, a GPS chip won't rest while it's working.</p>
<p>Also, most people leave their display on while exercising to check how far they've run or to check the directions while navigating a new trail.</p>
<p>So as you can see, there are two main functions that drain the battery that are running at the same time.</p>
<p>I've seen this problem firsthand during the test of a medium-quality running watch. In average conditions, the watch would last about a week. Add just a couple of hour-long runs with activated GPS and it needed to be charged every 2-3 days.</p>
<h2 id="heading-standalone-gps-vs-phone-connected-gps"><strong>Standalone GPS vs Phone-Connected GPS</strong></h2>
<p>There's one more thing to be aware of here. Some fitness wearables, especially rings and basic trackers, don't have their own GPS chip at all. They use GPS data sent from your smartphone via Bluetooth, which is why you need to bring your phone with you for the map to show up afterward.</p>
<p>Other devices, including the GPS watches used by runners, have their own chip and antenna built in. You're able to leave your smartphone at home and still get the correct map and route directions because the watch performs all the work. This is more convenient, but it consumes much more energy from the battery during an activity.</p>
<h2 id="heading-what-wearable-brands-are-doing-to-fix-this"><strong>What Wearable Brands Are Doing to Fix This</strong></h2>
<p>Most of the recent improvements to wearables aren't about making the satellites work harder. Instead, they're focused on making the chip smarter by utilizing existing information.</p>
<p>For example, there are some newer low power chipsets that are programmed to activate the GPS radio only from time to time whenever new coordinates are required. They then estimate your location with the help of an accelerometer and gyroscope in between.</p>
<p>This blending of GPS with motion sensor data is called sensor fusion and it's the main reason newer devices last longer without giving up accuracy. This way, the radio doesn't consume its maximum power capacity every second. It's just enough to correct course periodically.</p>
<p>There are also assisted GPS systems, where the device downloads position information from satellites prior to your activity using Wi-Fi or your phone as a source. That's part of why some watches can lock onto a signal almost instantly now compared to a few years ago when you'd stand in your driveway waving your arm around waiting for a dot to show up on the screen.</p>
<p>This doesn’t mean that the cost associated with the battery will no longer exist. But it definitely means that the cost is gradually being reduced. The difference between the old watch from five years ago and a new one that's been launched this year is quite evident.</p>
<h2 id="heading-which-wearables-actually-hold-up-and-which-ones-dont"><strong>Which Wearables Actually Hold Up (and Which Ones Don't)</strong></h2>
<p>Dedicated running watches such as Garmin, Coros, and Suunto are designed to have long battery life first.</p>
<p>The Garmin Forerunner 570 lasts 18 hours in regular GPS mode and 13 hours in full satellite system mode. The Coros Apex 2 Pro is even more impressive with 66 hours in GPS mode and up to 200 hours in ultramarathon mode where it samples GPS only occasionally and uses motion data to fill gaps. If you train for a marathon or are going on an entire day trip in the wild, this is what you should be looking for.</p>
<p>Mainstream smartwatches prioritize having features over having battery life. In normal mode, the Apple Watch Ultra 2 works 12 hours in GPS mode and up to 17 hours in low power mode. The Samsung Galaxy Watch Ultra boasts up to 48 hours of working in its special exercise low power consumption mode, but it uses too much power if you keep it in regular GPS mode, making it useful for just a quick walk or a weekend 10K.</p>
<p>Smart rings can't have a GPS chip because their battery life would be reduced from 6 to 9 days to just a few hours, so they use the GPS of a smartphone. This is why my ring and band remained charged after the 10K while the watch wasn't. The Ultrahuman Ring Pro can now work up to 15 days on one charge and up to 45 days together with its case, but you need to have a phone to track a route at all.</p>
<p>The important question isn't whether there's GPS in your device, but whether it has its own chip and how it manages power while using it. The daily walker doesn't need an ultramarathon mode of the Coros watch and the trail runner won't go far using the phone-tethered ring.</p>
<h2 id="heading-how-to-save-battery-without-losing-your-gps-data"><strong>How to Save Battery Without Losing Your GPS Data</strong></h2>
<p>If you want to keep your GPS tracking functionality without needing to charge your watch every other day, there are several tips you can try.</p>
<ul>
<li><p>Most watches have a GPS tracking mode called "battery saver," which works by sampling less often. While you'll lose some precision when making sharp turns, for the vast majority of exercises, you won't notice it on the map.</p>
</li>
<li><p>You can disable multi-band or full satellite system search if you aren't exercising in conditions that require or benefit from it. If you're simply running a loop in an open park or a familiar route, there's no need for full satellite system support.</p>
</li>
<li><p>You can dim your screen or deactivate the always-on display mode while working out. It's not going to help you with the GPS issue, but it's the second-biggest battery drainer during exercise.</p>
</li>
<li><p>And finally, you can pre-download maps from home before heading outdoors to get a more efficient lock.</p>
</li>
</ul>
<p>I do these things before and during my long runs and the difference between the “normal tracking” mode and the “power saving” mode is only a few percentage points. This might not seem like a lot until you’re three hours into a hike and you wish you'd made better choices.</p>
<h2 id="heading-the-trade-off-isnt-going-away-anytime-soon"><strong>The Trade-Off Isn't Going Away Anytime Soon</strong></h2>
<p>The GPS capability in wearable devices is definitely something that works well but is very expensive. I don't see that changing much in the near future, even with advances in chip technology.</p>
<p>That battery cost isn't going away. What's shrinking is how much of that cost you actually feel, thanks to sensor fusion and more efficient chips picking up the slack.</p>
<p>Every time your watch dies mid-race, it's most likely not because of a bad battery but because of the hard work it does, constantly, every second that you're running.</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[ Why Different Wearables Report Different Heart Rates ]]>
                </title>
                <description>
                    <![CDATA[ My partner and I have this thing where we check at what time our heart rates drop to their lowest during sleep, even though we sleep almost at the same time for a similar duration. He's on a Garmin, w ]]>
                </description>
                <link>https://www.freecodecamp.org/news/why-different-wearables-report-different-heart-rates/</link>
                <guid isPermaLink="false">6a4309759c7a549cd18f1344</guid>
                
                    <category>
                        <![CDATA[ Heart Rate Monitoring ]]>
                    </category>
                
                    <category>
                        <![CDATA[ heart rate ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Wearable Technology ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Health Tracking ]]>
                    </category>
                
                    <category>
                        <![CDATA[ PPG sensor ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ Shradha Puri ]]>
                </dc:creator>
                <pubDate>Tue, 30 Jun 2026 00:10:29 +0000</pubDate>
                <media:content url="https://cdn.hashnode.com/uploads/covers/5e1e335a7a1d3fcc59028c64/bf4ce419-8c4f-4895-885b-d5af75a1df3f.png" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>My partner and I have this thing where we check at what time our heart rates drop to their lowest during sleep, even though we sleep almost at the same time for a similar duration. He's on a Garmin, while I track mine with the Ultrahuman Ring AIR.</p>
<p>I know you must be thinking that doesn't make sense: two different people are never going to have the same heart rate numbers anyway. Different resting baseline, different fitness levels, different everything. And yes, that part has nothing to do with wearables at all. But it's almost a competition at this point.</p>
<p>The real question here arises when you take the comparison of the same heart rate metric with different wearables but on the <em>same person</em>. The heart rate reading will be different – again because it will depend upon the type of sensors used in each case, the speed of sampling, and the software algorithms of the sensors.</p>
<p>After you learn how they work internally, you'll finally be able to understand why the numbers are different.</p>
<h2 id="heading-table-of-contents"><strong>Table of Contents</strong></h2>
<ul>
<li><p><a href="#heading-theyre-all-measuring-the-same-thing-just-not-in-the-same-place">They're All Measuring the Same Thing, Just Not in the Same Place</a></p>
</li>
<li><p><a href="#heading-why-your-heart-rate-isnt-constant">Why Your Heart Rate Isn’t Constant</a></p>
</li>
<li><p><a href="#heading-sampling-speed-changes-what-the-device-actually-catches">Sampling Speed Changes What the Device Actually Catches</a></p>
</li>
<li><p><a href="#heading-the-algorithm-matters-as-much-as-the-sensor">The Algorithm Matters as Much as the Sensor</a></p>
<ul>
<li><a href="#heading-skin-tone-and-wrist-size-add-another-layer">Skin Tone and Wrist Size Add Another Layer</a></li>
</ul>
</li>
<li><p><a href="#heading-activity-type-throws-everything-off-differently-for-each-brand">Activity Type Throws Everything Off Differently for Each Brand</a></p>
</li>
<li><p><a href="#heading-what-this-means-if-youre-comparing-numbers-with-a-friend">What This Means If You're Comparing Numbers With a Friend</a></p>
</li>
</ul>
<h2 id="heading-theyre-all-measuring-the-same-thing-just-not-in-the-same-place"><strong>They're All Measuring the Same Thing, Just Not in the Same Place</strong></h2>
<p>All of the wearables worn on your wrist or finger use the same technique known as photoplethysmography (PPG). An LED shines light into your skin while a sensor measures how much light bounces back with each heartbeat. The technology remains the same among all manufacturers, but the difference here lies in the place of measurements.</p>
<p>Finger-based wearables measure arteries located closer to the surface of the skin than the ones on your wrist. This gives finger-based devices like the Oura Ring a real advantage.</p>
<p>This advantage becomes clear even in the sleep stage, since the movements of your fingers are smaller than the movements of your wrist during sleep. <a href="https://pmc.ncbi.nlm.nih.gov/articles/PMC8808342/">Research done to test the accuracy</a> of the heart rate reading by the Oura Ring has been able to show high consistency with the ECG measurements.</p>
<p>This is one reason Oura tends to perform well in nocturnal heart rate verification. A comparative study conducted in 2025 in the journal <a href="https://physoc.onlinelibrary.wiley.com/doi/10.14814/phy2.70527">Physiological Reports</a> pitted 5 devices (the Oura Ring Gen 3, Oura Ring Gen 4, Whoop 4.0, Polar Grit X Pro, and Garmin Fenix 6) against a medical-grade ECG for 536 nights of sleep. The Oura Ring 3 and 4 correlated the most accurately with ECGs, WHOOP correlated moderately, and Polar had the lowest accuracy.</p>
<h2 id="heading-why-your-heart-rate-isnt-constant"><strong>Why Your Heart Rate Isn’t Constant</strong></h2>
<p>One thing you need to know is that your heart rate isn’t constant even at rest.</p>
<p>It varies all the time with your breathing movement or any other stress response, even when you're sitting completely still. 68 bpm can become 72 bpm after just a few seconds and nothing out of the ordinary happened.</p>
<p>It's enough for two wearables to have slightly different readings just because they were measuring at different times. Before sensor location, sampling rate, or any other algorithm comes into play, what's being measured is already constantly changing.</p>
<h2 id="heading-sampling-speed-changes-what-the-device-actually-catches"><strong>Sampling Speed Changes What the Device Actually Catches</strong></h2>
<p>Position of the sensor is important, but frequency of readings is much more important than you might think. The PPG sensor from WHOOP 5.0 and WHOOP MG records reading <strong>26 times per second</strong>. This is considered to be quite a good rate of recording from a continuous wearable.</p>
<p>Other smart devices, on the contrary, work every few seconds and not continuously. As a result, if your Heart Rate suddenly spikes for any reason, like standing up too quickly or being startled, the device will miss that spike and fill in the gap to replace a missing value.</p>
<p>The Apple Watch also has a different mechanism: it has a high hardware sampling rate, but that doesn't mean that its heart rate sensor works continuously. In reality, it works periodically depending on your activity, and only works continuously while working out and for several minutes after the exercise.</p>
<p>None of this is necessarily better in an objective sense. The continuous heart rate frequency sampling is fantastic for capturing all those short-term spikes, but results in more raw data that needs to be filtered and sorted out by the <em>algorithm</em>.</p>
<p>Garmin takes a middle ground here, depending on the model of the watch. In general, most Garmin devices take continuous samples at low frequencies all day long until they detect the start of your exercise and increase sampling frequency automatically.</p>
<p>And there's another trade-off here: the device saves battery when you're working at your desk, but this also means that the device is essentially betting on its own movement detection being accurate before it decides that your heart rate actually matters more right now.</p>
<h2 id="heading-the-algorithm-matters-as-much-as-the-sensor"><strong>The Algorithm Matters as Much as the Sensor</strong></h2>
<p>But here's the thing: the heart rate monitor only receives a raw signal of light intensity. And then something else must translate this information into a proper value. This translation is made using proprietary software for each brand separately. This is what results in the daily scores and graphs that we're all so obsessed with.</p>
<p>The task of this software is to determine whether the signal represents the heartbeat or some noise created by physical activity, skin contact, or ambient light.</p>
<p>A <a href="https://pmc.ncbi.nlm.nih.gov/articles/PMC11644394/">2024 study published in Sensors</a> concluded that the heart rate readings for the Oura Ring remained accurate compared to ECG when lower quality readings were included.</p>
<p>The case of heart rate variability was quite different. Heart rate variability measurements became less accurate when the device used lower-quality data, especially for people over the age of 45.</p>
<p>The heart rate algorithm used in WHOOP underwent a huge update in February 2026. The company used the training data collected at its own research facility for a wide range of skin tones, body types, and activity levels. Also, it used cloud-based processing for data analysis after the workout or a sleep session instead of <a href="https://www.iotforall.com/edge-ai-wearables">edge processing</a>.</p>
<p>This is a completely different strategy from having the watch do all the calculations on the device itself. Therefore, two devices that have identical hardware will give different figures from the same data depending on the interpretation of the software.</p>
<p>That’s also the reason why your figures might be altered by the brand itself even when it hasn't altered any of its hardware. With the release of the February 2026 update by WHOOP, there were some changes seen in heart rates and recovery scores for all 4.0 and 5.0 users, although none of the users’ activity had changed at all. The sensors remained the same, but the math behind them wasn’t.</p>
<p>The same happened to me with my step count on my Ultrahuman Ring AIR after a firmware update. If you've noticed your own numbers drift after an app update with no real change in your routine, this is usually why.</p>
<h3 id="heading-skin-tone-and-wrist-size-add-another-layer">Skin Tone and Wrist Size Add Another Layer</h3>
<p>There are more than just sensors, positioning, and algorithms involved, of course. There's also the human who wears the device, plus PPG sensors <em>do not</em> work the same for all people.</p>
<p>The amount of light absorbed by the skin is dependent upon the amount of melanin in the skin, meaning you'll get different results on different skin tones.</p>
<p>One of the most extensive analyses is offered by&nbsp;<a href="https://link.springer.com/article/10.1007/s40615-022-01446-9">Koerber et al. (2023)</a>. They showed that this may lower the accuracy of reading in darker skin tones, not just for a particular brand, but for many brands.</p>
<p>PPG works by shining light into the skin and measuring the light reflected back. Since melanin absorbs more light, darker skin tones can reduce the amount of reflected light that reaches the sensor. This can lower the signal quality and, in some situations, reduce measurement accuracy.</p>
<p>The same goes if you have any tattoos on the area where the wearable sensor is placed. Dark or densely pigmented tattoo ink may absorb or scatter the emitted light, making it more difficult for the sensor to obtain a clean signal.</p>
<p>This doesn't necessarily prevent measurements altogether, but it can increase the likelihood of inaccurate or inconsistent readings.</p>
<p>In addition to this, the circumference of your wrist along with the device's tightness and fit will also have an impact on the amount of light that leaks out of the sensor rather than being reflected back into it. A watch that's too loose allows ambient light to enter and reduces the amount of reflected light captured by the sensor, while one that's too tight can alter blood flow beneath the sensor. Smaller wrists may also make it harder for the sensor to maintain consistent contact with the skin.</p>
<p>For these reasons, manufacturers generally recommend wearing the device snugly, but not tightly and positioning it slightly above the wrist bone during measurements.</p>
<h2 id="heading-activity-type-throws-everything-off-differently-for-each-brand"><strong>Activity Type Throws Everything Off Differently for Each Brand</strong></h2>
<p>Resting heart rate during sleep is one thing, but your heart rate while working out is a totally different ball game for the sensors. This is where the difference becomes most evident between gadgets.</p>
<p>Motion artifacts are caused by movement, which means that your swinging arm interferes with the ability of the device to measure the reading the sensor is trying to capture. All companies have their algorithms to filter these movements and some handle certain movement patterns better than the others.</p>
<p>That's also the reason why chest strap monitors (that treat electrical signals directly from your heart rather than relying on light through skin) still outperform every wrist or finger-based wearable during high-intensity training.</p>
<h2 id="heading-what-this-means-if-youre-comparing-numbers-with-a-friend"><strong>What This Means If You're Comparing Numbers With a Friend</strong></h2>
<p>When you and your friend are wearing different brands of wearables and your numbers don’t line up, that’s perfectly normal and not an indicator that your device is faulty. All that really matters is consistency over time.</p>
<p>The resting heart rate trend on your Oura or Garmin should be giving you an accurate picture of your recovery and stress based on your personal baseline. Consistently improving your workouts and striving towards a better <em>trend</em> in HRV is better than a single measurement.</p>
<p>My honest takeaway here is that heart rate tracking on consumer wearables has definitely improved, especially in terms of resting and steady state numbers. But there are still significant differences between brands and these are very much real. They come from design choices, not manufacturing defects.</p>
<p>The final number relies on three factors: the placement of the sensor, how often readings are taken, and how the softtware processes that information.</p>
<p>But will I stop arguing with my partner on how he stresses me out, which is why my heart rate drops later than his at night? Probably not.</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>
        
            <item>
                <title>
                    <![CDATA[ How Wearable IoT Enables Real-Time Fall Detection and Alerts ]]>
                </title>
                <description>
                    <![CDATA[ Wearable IoT technology has become an important part of today’s elder care, as it can help detect falls and alert caregivers or family members immediately after an incident. This technology combines s ]]>
                </description>
                <link>https://www.freecodecamp.org/news/how-wearable-iot-enables-real-time-fall-detection-and-alerts/</link>
                <guid isPermaLink="false">6a19af25b55c6a731d1db097</guid>
                
                    <category>
                        <![CDATA[ Wearable Technology ]]>
                    </category>
                
                    <category>
                        <![CDATA[ iot ]]>
                    </category>
                
                    <category>
                        <![CDATA[ fall detection devices ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ Shradha Puri ]]>
                </dc:creator>
                <pubDate>Fri, 29 May 2026 15:22:13 +0000</pubDate>
                <media:content url="https://cdn.hashnode.com/uploads/covers/5e1e335a7a1d3fcc59028c64/604b9b54-e36a-4cea-b64b-50e035fb04f2.png" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>Wearable IoT technology has become an important part of today’s elder care, as it can help detect falls and alert caregivers or family members immediately after an incident.</p>
<p>This technology combines smart sensors, connectivity, and automated emergency response features that detect falls in real time and help reduce the time a person may remain unattended after.</p>
<p>Let's look at what the <a href="https://www.who.int/news-room/fact-sheets/detail/falls">WHO data</a> says. Every year, 684,000 people die from falls. On top of this, there are 37.3 million cases in which a person ends up sustaining injuries from a fall that require medical attention. And there's also a significant number of people lie on the ground unattended for hours after falling, as is often the case for people living alone.</p>
<p>That’s the gap these wearable IoT systems are trying to reduce. In this article, we'll talk about how fall detection actually works, from the sensors inside the wearable to the alert sent to a caregiver or family member.</p>
<h2 id="heading-table-of-contents"><strong>Table of Contents</strong></h2>
<ul>
<li><p><a href="#heading-what-you-should-know-before-reading">What You Should Know Before Reading</a></p>
</li>
<li><p><a href="#heading-what-is-a-fall-detection-system">What is a Fall Detection System?</a></p>
</li>
<li><p><a href="#heading-the-hardware-sensors-that-do-the-heavy-lifting">The Hardware: Sensors That Do the Heavy Lifting</a></p>
</li>
<li><p><a href="#heading-the-algorithm-from-raw-signals-to-classification">The Algorithm: From Raw Signals to Classification</a></p>
<ul>
<li><p><a href="#heading-threshold-based-detection">Threshold-Based Detection</a></p>
</li>
<li><p><a href="#heading-classical-machine-learning">Classical Machine Learning</a></p>
</li>
<li><p><a href="#heading-deep-learning">Deep Learning</a></p>
</li>
<li><p><a href="#heading-the-lab-vs-real-world-problem">The Lab-vs-Real-World Problem</a></p>
</li>
</ul>
</li>
<li><p><a href="#heading-the-iot-pipeline-how-the-alert-gets-to-you">The IoT Pipeline: How the Alert Gets to You</a></p>
<ul>
<li><p><a href="#heading-edge-processing-first">Edge Processing First</a></p>
</li>
<li><p><a href="#heading-the-confirmation-window">The Confirmation Window</a></p>
</li>
<li><p><a href="#heading-alert-dispatch">Alert Dispatch</a></p>
</li>
</ul>
</li>
<li><p><a href="#heading-consumer-devices-where-things-stand">Consumer Devices: Where Things Stand</a></p>
</li>
<li><p><a href="#heading-the-challenges-worth-knowing-about">The Challenges Worth Knowing About</a></p>
</li>
<li><p><a href="#heading-wrapping-up">Wrapping Up</a></p>
</li>
</ul>
<h2 id="heading-what-you-should-know-before-reading"><strong>What You Should Know Before Reading</strong></h2>
<p>Before reading this article, it helps to have a basic understanding of:</p>
<ul>
<li><p>IoT (Internet of Things) devices and how they connect to the internet</p>
</li>
<li><p>Wearable tech such as smartwatches or fitness bands</p>
</li>
<li><p>Sensors like accelerometers and gyroscopes</p>
</li>
<li><p>Basic wireless communication methods such as Bluetooth or GPS</p>
</li>
<li><p>Mobile apps and notification systems</p>
</li>
</ul>
<p>You don't need advanced technical or programming knowledge to follow the article.</p>
<h2 id="heading-what-is-a-fall-detection-system"><strong>What is a Fall Detection System?</strong></h2>
<p>A fall detection system automatically detects a fall and raises the alert to a caregiver, family member, or emergency services, without any action required by the user.</p>
<p>This aspect of “without doing anything” is crucial because once the person has fallen, they may not be in a state of mind to perform any action, even as little as pressing a button.</p>
<p>Modern fall detection systems leverage the advances made in the areas of IoT, machine learning, cloud computing, and communications technologies to build a pipeline for the identification of a fall and raising an alert in less than 30 seconds.</p>
<h2 id="heading-the-hardware-sensors-that-do-the-heavy-lifting"><strong>The Hardware: Sensors That Do the Heavy Lifting</strong></h2>
<p>The core of all wearable fall detectors is the Inertial Measurement Unit (IMU), which comprises two sensors:</p>
<ul>
<li><p><strong>Accelerometer:</strong> detects acceleration on three axes (X, Y, Z). It measures the sudden deceleration when impact occurs. Most commercial devices have an accelerometer with a ±120 m/s² range. Popular in both prototypes and production-level units is the MPU-6050 chip.</p>
</li>
<li><p><strong>Gyroscope:</strong> measures angular velocity (±1200°/s). It detects how your body rotates to determine whether it is a forward, backward, or any other kind of fall. Jumping and sitting rapidly will not be mistaken for a fall in such a case.</p>
</li>
</ul>
<p>Together, these give you a 6-axis picture of continuously measured motion, which is the input that the detection algorithm works with.</p>
<p>More advanced devices are equipped with heart rate sensors, GPS and barometers. Heart rate change upon falling could be useful in determining that an incident occurred. The GPS will enable locating the user easily, while the barometer is able to indicate what floor the person is on.</p>
<p>As for sensor location, it matters a lot more than people expect. The most accurate data is collected by waist-mounted sensors, as this area sees maximum movement during falls. But commercial products usually go for wrist-based ones because people won't care about accuracy if they don't even wear it.</p>
<h2 id="heading-the-algorithm-from-raw-signals-to-classification"><strong>The Algorithm: From Raw Signals to Classification</strong></h2>
<p>Raw sensor data is just a stream of numbers. It's the algorithm that answers the one main question: did this person just fall?</p>
<p>It sounds simple but it really isn’t. The physical dynamics involved in making vigorous actions like running, jumping, and sitting down may be transiently similar to those of a fall. An error would either miss the true occurrence or produce too many false alarms, both having real consequences.</p>
<p>Different wearable fall detection systems use different types of algorithms for analyzing the sensor data and determining whether a fall has taken place. These include approaches such as rule-based methods, machine learning and even more advanced deep learning algorithms. This would depend on various factors such as device complexity, processing power, accuracy requirements and battery constraints.</p>
<h3 id="heading-threshold-based-detection">Threshold-Based Detection</h3>
<p>This is the oldest approach. You establish certain criteria: if the acceleration is above X g-force, and the person remains motionless for Y seconds afterward, you classify this as a fall. This approach employs a finite state machine (FSM): the sensor moves through certain states (from upright to free fall, then impact and post-fall motionlessness), and identifies a fall whenever all these states happen in sequence.</p>
<p>It's lightweight and power-efficient, but has higher false-positive rates, especially for active users or those with tremors.</p>
<h3 id="heading-classical-machine-learning">Classical Machine Learning</h3>
<p>Support Vector Machines (SVMs), Random Forests, and k-Nearest Neighbors (k-NN) are widely used for wearable fall detection systems trained on labeled sensor data containing falls and normal Activities of Daily Living (ADLs). These models identify motion patterns captured through accelerometer and gyroscope to distinguish falls from false alarms.</p>
<p>In a <a href="https://www.e3s-conferences.org/articles/e3sconf/pdf/2025/05/e3sconf_icenis2024_03051.pdf">study</a>, SVM achieved 87% accuracy, k-NN reached 84%, and Random Forest achieved 89%.</p>
<h3 id="heading-deep-learning">Deep Learning</h3>
<p>The CNN-LSTM hybrid model is capable of capturing both spatial and temporal features directly from the accelerometer and gyroscope sensor data without the need for manual feature engineering. The attention model is another alternative that is able to focus selectively on certain sensors according to the motion pattern.</p>
<h3 id="heading-the-lab-vs-real-world-problem">The Lab-vs-Real-World Problem</h3>
<p>The bitter reality is that the lab accuracy numbers don't transfer one-to-one into real-world situations.</p>
<p>During experiments, the falls are taken by young healthy individuals who are well aware of what's happening. But in reality, falls often occur most in older people with co-morbid conditions, in cluttered surroundings, and unexpectedly.</p>
<p>During experiments, the falls are induced on young healthy individuals who are well aware of what is happening. But in reality, falls occur among older people with co-morbid conditions, in cluttered surroundings and unexpectedly.&nbsp;</p>
<p>In <a href="https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0180318">one such study</a> conducted on 19 individuals for more than 400 hours, only 10 actual falls were recorded and the performance of the fall detection system dropped significantly compared to controlled laboratory results.</p>
<p>Addressing this gap between laboratory and real-world performance should be a critical goal for future wearable fall detection systems.</p>
<h2 id="heading-the-iot-pipeline-how-the-alert-gets-to-you"><strong>The IoT Pipeline: How the Alert Gets to You</strong></h2>
<p>Detecting a fall is step one. Here’s what the rest of the pipeline looks like.</p>
<h3 id="heading-edge-processing-first">Edge Processing First</h3>
<p>The detection algorithm runs directly on the microcontroller of the wearable device, not remotely in the cloud. This is key, because the latter approach (in the cloud) is known as “edge computing”, and its importance lies in two things: efficiency (as additional round-trips to the cloud slow down everything), and reliability (fall incidents occur in basements, elevators, and in places without a signal).</p>
<p>Microcontrollers like the ESP32 can execute classifiers and FSM algorithms locally using minimal power.</p>
<h3 id="heading-the-confirmation-window">The Confirmation Window</h3>
<p>When the device thinks a fall has occurred, it usually starts a 30 to 60 second countdown instead of immediately calling emergency services. During that time, the wearable vibrates and plays an alert sound so the user can cancel it in case it was a false alarm.</p>
<p>This is very important because otherwise any sudden arm movement, even false alarms, would cause an emergency call.</p>
<h3 id="heading-alert-dispatch">Alert Dispatch</h3>
<p>Once confirmed, the notification, together with GPS coordinates, is sent by:</p>
<ul>
<li><p><strong>NB-IoT:</strong> &nbsp;the ideal protocol for wearables outdoors. It uses an already established LTE network, very minimal battery and excellent wall penetration.</p>
</li>
<li><p><strong>BLE:</strong> links to the user’s phone to forward the alert.</p>
</li>
<li><p><strong>Wi-Fi:</strong> fast and dependable within a home environment with good connectivity.</p>
</li>
<li><p><strong>LoRaWAN:</strong> long-distance and very low battery energy. it's suitable for a large campus or rural setting.</p>
</li>
</ul>
<p>The alert hits a cloud server, from where it's relayed to SMS notifications, push notifications, emergency call-backs to authorities, or a caregiver platform, depending on system configurations.</p>
<h2 id="heading-consumer-devices-where-things-stand"><strong>Consumer Devices: Where Things Stand</strong></h2>
<p>Apple watches series 4 and later feature arguably the most advanced fall detection mechanism among consumer wearables. This technology makes use of data collected from an accelerometer and a gyroscope with machine learning algorithms that help detect a fall and automatically call for help if there is no sign of movement from the person wearing it.</p>
<p>Apple regularly works on improving its fall detection system by eliminating any errors.</p>
<p>The Samsung Galaxy watch (Active2+) comes with hard fall detection that utilizes motion sensors for detecting motion based on the accelerometer. Users can adjust when the watch detects falls, such as always, while exercising, or while being active.</p>
<p>Within 60 seconds after detecting a fall, the watch shows an alarm prompt, after which it sends an SOS message to the emergency contact if no response is provided. This feature is off by default and needs to be turned on manually via the Galaxy Wearable app.</p>
<p>Dedicated medical pendants like Philips Lifeline and Medical Guardian continue to be favored in many high-risk elder care situations as they have specialized hardware, round-the-clock monitoring facilities, cellular connectivity features, and GPS technology. Though not as unobtrusive as smart watches, medical alerts are engineered especially for emergency situations.</p>
<h2 id="heading-the-challenges-worth-knowing-about"><strong>The Challenges Worth Knowing About</strong></h2>
<p>False positives are the main challenge regarding user experience. When alerts fire too often, users turn off the whole mechanism, defeating its purpose.</p>
<p>In order to solve this issue, Apple uses multi-level criteria to trigger an alert: only the combination of impact on the wrist, heart rate change, proper orientation of the body, and post-impact behavior will be able to confirm the occurrence of a fall.</p>
<p>Privacy is also a legitimate concern, especially for camera-based systems. We can address these concerns through emerging approaches like thermal sensors (body heat without identifiable imagery) and Wi-Fi Channel State Information (CSI) analysis, which offers detection without surveillance.</p>
<p>Training for fall detection is done directly using federated learning on the wearable device itself, so there's no need for user motion data to ever be sent out to the cloud. The cloud will only receive updates.</p>
<p>Finally, consistency is easy to ignore, but it matters a lot. A device that isn’t worn detects nothing. That is why smart pressure sensors placed into floors, room monitors based on radar technology, and Wi-Fi CSI analysis techniques are becoming more popular as supplements to wrist wearables.</p>
<h2 id="heading-wrapping-up"><strong>Wrapping Up</strong></h2>
<p>Fall detection sounds like a solved problem at first. All the sensors are ready, the algorithms are functioning effectively in the labs, and there’s plenty of connectivity. But what matters most after a fall is how quickly someone gets help.</p>
<p>With improvements made in wearable AI technology, fall detection is moving gradually from being an emergency-based solution to becoming a constant monitoring tool which silently protects its users. Technology-wise, we're pretty much there. The important thing is to make sure everything works reliably.</p>
 ]]>
                </content:encoded>
            </item>
        
    </channel>
</rss>
