<?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[ Wearables - 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[ Wearables - freeCodeCamp.org ]]>
            </title>
            <link>https://www.freecodecamp.org/news/</link>
        </image>
        <generator>Eleventy</generator>
        <lastBuildDate>Tue, 01 Sep 2026 23:46:51 +0000</lastBuildDate>
        <atom:link href="https://www.freecodecamp.org/news/tag/wearables/rss.xml" rel="self" type="application/rss+xml" />
        <ttl>60</ttl>
        
            <item>
                <title>
                    <![CDATA[ How Sensors Collect, Process, and Track Data in Wearable Devices ]]>
                </title>
                <description>
                    <![CDATA[ A smartwatch can tell you that your heart rate is 78 beats per minute, that you've walked 6,421 steps, or that you slept for 7 hours last night. All of these numbers appear simple on the screen, but b ]]>
                </description>
                <link>https://www.freecodecamp.org/news/how-sensors-collect-process-and-track-data-in-wearables/</link>
                <guid isPermaLink="false">6a887ddeb55a70d585eec152</guid>
                
                    <category>
                        <![CDATA[ Wearables ]]>
                    </category>
                
                    <category>
                        <![CDATA[ sensors ]]>
                    </category>
                
                    <category>
                        <![CDATA[ iot ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Machine Learning ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ Reetain Raina ]]>
                </dc:creator>
                <pubDate>Fri, 21 Aug 2026 16:33:34 +0000</pubDate>
                <media:content url="https://cdn.hashnode.com/uploads/covers/5e1e335a7a1d3fcc59028c64/e0ee25a6-436d-48d6-abca-9519b531707a.png" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>A smartwatch can tell you that your heart rate is 78 beats per minute, that you've walked 6,421 steps, or that you slept for 7 hours last night. All of these numbers appear simple on the screen, but behind each one is a surprisingly long chain of measurements and calculations.</p>
<p>Your watch doesn't actually see a "step" or directly measure "sleep." Instead, tiny sensors continuously detect things such as movement, changes in blood flow, electrical activity, and temperature. Those signals are converted into digital data, processed to remove noise, and analyzed by algorithms that look for meaningful patterns.</p>
<p>This process happens quietly in the background. Every movement of your wrist can become a stream of numbers. A change in reflected light can become a heart-rate reading. Several different signals can be combined to estimate what you were doing or how your body was responding.</p>
<p>By the time that information reaches the screen, the original signal has already gone through several layers of processing, turning something the sensor can detect into something you can understand.</p>
<h3 id="heading-what-well-cover"><a href="#heading-what-well-cover">What We'll Cover:</a></h3>
<ul>
<li><p><a href="#heading-what-is-a-wearable-sensor-actually-measuring">What Is a Wearable Sensor Actually Measuring?</a></p>
</li>
<li><p><a href="#heading-the-tiny-sensors-doing-all-the-work">The Tiny Sensors Doing All the Work</a></p>
<ul>
<li><p><a href="#heading-accelerometer">Accelerometer</a></p>
</li>
<li><p><a href="#heading-gyroscope">Gyroscope</a></p>
</li>
<li><p><a href="#heading-photoplethysmography-ppg">Photoplethysmography (PPG)</a></p>
</li>
<li><p><a href="#heading-electrocardiogram-ecg">Electrocardiogram (ECG)</a></p>
</li>
<li><p><a href="#heading-temperature-sensor">Temperature Sensor</a></p>
</li>
</ul>
</li>
<li><p><a href="#heading-how-a-physical-signal-becomes-data">How a Physical Signal Becomes Data</a></p>
</li>
<li><p><a href="#heading-raw-sensor-data-is-messier-than-it-looks">Raw Sensor Data Is Messier Than It Looks</a></p>
</li>
<li><p><a href="#heading-how-algorithms-turn-messy-signals-into-useful-information">How Algorithms Turn Messy Signals Into Useful Information</a></p>
<ul>
<li><p><a href="#heading-digital-filtering">Digital Filtering</a></p>
</li>
<li><p><a href="#heading-feature-extraction">Feature Extraction</a></p>
</li>
<li><p><a href="#heading-metric-calculation">Metric Calculation</a></p>
</li>
<li><p><a href="#heading-why-wearables-combine-multiple-sensors">Why Wearables Combine Multiple Sensors</a></p>
</li>
</ul>
</li>
<li><p><a href="#heading-where-does-all-this-data-go">Where Does All This Data Go?</a></p>
</li>
<li><p><a href="#heading-a-sensor-can-be-accurate-and-the-final-result-can-still-be-wrong">A Sensor Can Be Accurate and the Final Result Can Still Be Wrong</a></p>
</li>
<li><p><a href="#heading-wrap-up">Wrap Up</a></p>
</li>
</ul>
<p>When you check your daily summary, there's a fundamental gap between what the user interface displays and what the underlying hardware actually captured.</p>
<p>Consumer health trackers don't observe abstract concepts like "recovery" or "cardio strain." Instead, they observe physical, mechanical, and optical properties occurring right at the surface of your skin.</p>
<table style="min-width:463px"><colgroup><col style="min-width:25px"><col style="width:438px"></colgroup><tbody><tr><td><p><strong>Wearable Metric</strong></p></td><td><p><strong>What's Actually Measured</strong></p></td></tr><tr><td><p>Steps</p></td><td><p>Dynamic multi-axis acceleration and periodic inertial forces</p></td></tr><tr><td><p>Heart Rate</p></td><td><p>Changes in blood volume altering light absorption or micro-voltages</p></td></tr><tr><td><p>SpO₂</p></td><td><p>Differential absorption ratio of red versus infrared light</p></td></tr><tr><td><p>Skin Temperature</p></td><td><p>Conductive heat transfer at the device chassis interface</p></td></tr><tr><td><p>Sleep Stages</p></td><td><p>Autonomic nervous system correlates via movement and pulse variability</p></td></tr><tr><td><p>Stress Score</p></td><td><p>Statistical fluctuations in time intervals between consecutive heartbeats</p></td></tr></tbody></table>

<p>The sensor’s sole job is to capture raw physical reality without bias, while software carries the burden of interpretation. Because biological signals are dynamic and influenced by countless environmental variables, converting physical values into physiological insights requires comprehensive mathematical modeling.</p>
<p>A comprehensive review in <a href="https://www.nature.com/articles/s41746-019-0111-3">Nature Digital Medicine on wearable sensing and analytics</a> highlights that wearable health tracking is fundamentally a signal-processing challenge rather than a simple hardware readout.</p>
<h2 id="heading-the-tiny-sensors-doing-all-the-work">The Tiny Sensors Doing All the Work</h2>
<p>To capture physical signals accurately within a compact form factor, modern wearables rely on a cluster of miniaturized electromechanical and optical modules.</p>
<h3 id="heading-accelerometer">Accelerometer</h3>
<p>The accelerometer detects linear acceleration and inertial forces across three spatial axes (X, Y and Z). Built using Micro-Electro-Mechanical Systems (MEMS), it contains microscopic suspended masses that deflect during movement, altering local electrical capacitance.</p>
<p>When you walk, your arm swings in a predictable, periodic pattern. The accelerometer records these repetitive acceleration peaks, allowing software to distinguish rhythmic locomotion from random gestures like typing or drinking water.</p>
<h3 id="heading-gyroscope">Gyroscope</h3>
<p>While the accelerometer detects linear movement and gravity, the gyroscope measures angular velocity and rotational motion. It monitors how quickly and along which axis the device rotates in space.</p>
<p>By pairing a gyroscope with an accelerometer, the device can accurately determine its spatial orientation, ensuring that a simple wrist roll to view the screen isn't mistakenly categorized as an exercise rep or a walking stride.</p>
<h3 id="heading-photoplethysmography-ppg">Photoplethysmography (PPG)</h3>
<p>PPG sensors use light to monitor changes in microvascular blood volume. Green light-emitting diodes (LEDs) illuminate the capillary bed beneath the skin, while adjacent photodetectors measure the light reflected back.</p>
<p>Because hemoglobin naturally absorbs green light, each ventricular contraction of the heart expands arterial volume, briefly increasing light absorption and lowering the reflected signal. The time between these reflection dips corresponds directly to individual pulse events.</p>
<h3 id="heading-electrocardiogram-ecg">Electrocardiogram (ECG)</h3>
<p>While PPG relies on optical reflection, an ECG sensor detects the direct bioelectrical impulses driving the cardiac muscle.</p>
<p>When the heart beats, electrical currents spread across the myocardium, creating subtle voltage fluctuations across your body. By placing a finger on a dedicated case electrode while the back of the watch rests against your wrist, you complete a circuit that lets differential amplifiers measure the heart's depolarization and repolarization waves directly.</p>
<h3 id="heading-temperature-sensor">Temperature Sensor</h3>
<p>Wearable temperature sensors employ thermistors or dedicated resistance temperature detectors (RTDs) resting against the skin surface.</p>
<p>It's worth noting that peripheral skin temperature isn't identical to core body temperature. Skin temperature fluctuates significantly based on ambient air, blood vessel dilation, and peripheral blood circulation. This makes it most valuable for identifying relative baseline deviations, such as sleep-phase cooling or early illness markers, rather than absolute clinical readings.</p>
<p>Comprehensive engineering overviews, such as this <a href="https://ieeexplore.ieee.org/document/8806989">IEEE review of wearable physiological sensors</a>, emphasize that these diverse hardware components must operate in close harmony to continuously reconstruct a clear picture of bodily activity.</p>
<h2 id="heading-how-a-physical-signal-becomes-data">How a Physical Signal Becomes Data</h2>
<p>Before computational logic can make sense of physical phenomena, continuous analog events must be converted into discrete numerical data.</p>
<p>When an optical photodiode detects fluctuating light levels, it outputs a continuous, smooth electrical voltage. Computers, however, can't compute infinite continuous curves. They operate exclusively on discrete numbers. This transition is handled by an <strong>Analog-to-Digital Converter</strong> (ADC).</p>
<p>The ADC periodically samples the continuous voltage wave and quantizes it into a discrete digital value:</p>
<ul>
<li><p><strong>Sampling Rate:</strong> Expressed in Hertz (Hz), this defines how many times per second the ADC records a value.</p>
<p>Fast, electrically complex signals like ECG require sampling rates of 250 Hz to 500 Hz to capture sharp wave morphology without losing critical cardiac peaks. Conversely, skin temperature changes slowly and can be accurately tracked at a fraction of a single Hertz (such as one sample every few seconds), preserving battery life and system storage.</p>
</li>
<li><p><strong>Resolution:</strong> Typically measured in bits (such as 12-bit, 16-bit or 24-bit depth), resolution determines how finely the converter quantizes the electrical signal. A higher bit-depth allows the system to resolve tiny physiological variations, such as shallow pulse signals on darker skin tones or during cold weather, without the waveform clipping or flattening.</p>
</li>
</ul>
<p>As explored in signal processing literature on <a href="https://pmc.ncbi.nlm.nih.gov/articles/PMC9599646/">wearable biometric data acquisition</a>, selecting appropriate sampling frequencies and quantization ranges balances the need for high signal fidelity with power consumption constraints.</p>
<h2 id="heading-raw-sensor-data-is-messier-than-it-looks">Raw Sensor Data Is Messier Than It Looks</h2>
<p>In controlled clinical environments, diagnostic tools are firmly attached to stationary patients. Consumer wearables, by contrast, must gather physiological data during dynamic, everyday movements. Consequently, raw sensor output rarely resembles textbook physiological waveforms.</p>
<p>Everyday wear introduces severe real-world interference:</p>
<ul>
<li><p><strong>Motion Artifacts:</strong> When you run, type, or grip objects, muscle contractions and sudden impacts physically rattle the device, creating massive inertial spikes that obscure subtle cardiac pulses.</p>
</li>
<li><p><strong>Sensor Displacement:</strong> A loose strap causes the device chassis to bounce against the epidermis, changing the optical path length between the LEDs and the photodetector, which introduces sharp baseline drifts.</p>
</li>
<li><p><strong>Environmental &amp; Physiological Noise:</strong> Ambient sunlight leaking beneath the device edges can overwhelm sensitive photodiodes, while cold environments trigger peripheral vasoconstriction, drastically reducing blood volume in the wrist capillaries.</p>
</li>
</ul>
<p>Because of this constant interference, wearable firmware includes automated Signal Quality Indices (SQIs). Before handing raw data to downstream algorithms, the system evaluates <strong>signal-to-noise ratios</strong> (SNR). If a specific data window is completely distorted by motion, the algorithm flags it as unreliable and discards it rather than generating an inaccurate reading. The dynamics of real-time artifact suppression are thoroughly analyzed in <a href="https://www.mdpi.com/1424-8220/22/1/141">wearable artifact removal research</a>.</p>
<h2 id="heading-how-algorithms-turn-messy-signals-into-useful-information">How Algorithms Turn Messy Signals Into Useful Information</h2>
<p>Once the signal is digitized and validated for basic quality, deterministic digital signal processing and algorithmic modeling convert the raw numerical stream into actionable human metrics.</p>
<h3 id="heading-digital-filtering">Digital Filtering</h3>
<p>Raw data first passes through digital bandpass filters configured to discard frequencies that fall outside the bounds of human physiology.</p>
<p>For an optical heart-rate signal, an algorithm suppresses frequencies below 0.5 Hz (30 BPM) and above 4.0 Hz (240 BPM), filtering out slow baseline drift and high-frequency electrical hum.</p>
<h3 id="heading-feature-extraction">Feature Extraction</h3>
<p>Instead of continuously processing thousands of raw digital samples, the software extracts concise statistical and morphological markers:</p>
<ul>
<li><p>Peak-to-Peak Intervals (△ t): The precise time duration between consecutive pulse crests.</p>
</li>
<li><p>Signal Variance: The degree of dispersion in acceleration values across a rolling 5-second window.</p>
</li>
<li><p>Dominant Frequency: The primary harmonic component identified through Fast Fourier Transforms (FFT).</p>
</li>
</ul>
<h3 id="heading-metric-calculation">Metric Calculation</h3>
<p>For heart rate, the algorithm identifies valid systolic peaks, measures the inter-beat interval, eliminates mathematical outliers and computes the instantaneous beats per minute (60 / △ t).</p>
<p>For step detection, the algorithm processes 3-axis accelerometer arrays:</p>
<p>The software monitors this composite acceleration value for rhythmic threshold crossings and frequency signatures typical of a human gait, ignoring non-cyclical vibrations like riding a car over a bumpy road.</p>
<p>Machine learning classifiers, trained on large labeled movement datasets, help classify these feature profiles into specific activities such as cycling, swimming or sleeping.</p>
<h3 id="heading-why-wearables-combine-multiple-sensors">Why Wearables Combine Multiple Sensors</h3>
<p>A single physical sensor often lacks the context needed to accurately understand what your body is doing. To resolve ambiguity, devices use Sensor Fusion, combining data from multiple distinct sensors to generate more accurate inferences than any single sensor could provide alone.</p>
<p>Consider a sudden rise in heart rate from 65 BPM to 145 BPM:</p>
<ul>
<li><p>If the accelerometer detects no concurrent body movement, the algorithm may interpret the event as psychological stress, caffeine intake, or a cardiac anomaly.</p>
</li>
<li><p>If the accelerometer simultaneously registers a sustained, high-cadence rhythmic movement signature, the system identifies the elevated heart rate as a normal physiological response to running.</p>
</li>
</ul>
<p>By pairing optical, thermal, and inertial data points simultaneously, the system constructs a detailed picture of the user's metabolic state.</p>
<p>As detailed in the <a href="https://pmc.ncbi.nlm.nih.gov/articles/PMC8708785/">Biomedical Engineering survey on multimodal sensor fusion</a>, combining complementary sensor streams helps eliminate false positives and balances out individual hardware limitations.</p>
<h2 id="heading-where-does-all-this-data-go">Where Does All This Data Go?</h2>
<p>The data pipeline extends beyond the physical device on your wrist. Processing tasks are distributed across local hardware, your paired mobile phone and remote cloud infrastructure.</p>
<ul>
<li><p><strong>On the Wearable (Edge Computing):</strong> Time-sensitive tasks run directly on low-power microcontrollers embedded inside the wearable. Filtering raw voltages, detecting steps and monitoring safety alerts (such as fall detection) happen locally, ensuring low latency, lower power consumption and better privacy.</p>
</li>
<li><p><strong>On the Smartphone:</strong> Because smartphones have faster multi-core processors and larger batteries, they handle heavy machine learning tasks, data visualization and the fusion of GPS traces with wrist kinematics.</p>
</li>
<li><p><strong>In the Cloud:</strong> Aggregated summaries are periodically uploaded to remote data centers for long-term historical tracking, deep longitudinal comparisons and training the next generation of algorithmic models across anonymized populations.</p>
</li>
</ul>
<h2 id="heading-a-sensor-can-be-accurate-and-the-final-result-can-still-be-wrong">A Sensor Can Be Accurate and the Final Result Can Still Be Wrong</h2>
<p>A common misconception is that an inaccurate health metric points directly to a broken sensor. In reality, a physical sensor can function with micro-voltage precision while the final displayed metric remains fundamentally incorrect.</p>
<p>There's a distinct difference between direct <strong>physical measurement</strong> and <strong>algorithmic estimation</strong>:</p>
<ul>
<li><p>The photodiode may accurately record light absorption.</p>
</li>
<li><p>The ADC may convert those currents into digital samples without losing precision.</p>
</li>
<li><p>Yet, if the user experiences severe vascular constriction from cold air or if an unpredictable arm movement mimics a pulse frequency, the peak-detection logic may latch onto the wrong frequency peak.</p>
</li>
</ul>
<p>A metric can fail at multiple points along the pipeline: poor contact mechanics, edge-case physiology that falls outside the training dataset, or mathematical assumptions that break down during specific sports. Recognizing that wearables provide informed physiological estimations rather than direct clinical measurements is key to interpreting everyday health data properly.</p>
<h2 id="heading-wrap-up">Wrap Up</h2>
<p>Wearable data goes through much more than a sensor before it becomes the numbers you see on your screen. Sensors capture physical signals, hardware converts them into digital data, and algorithms filter, combine, and interpret those signals to produce useful metrics.</p>
<p>Understanding this process also makes one thing clear: wearable measurements aren't always direct readings. They're often estimates built from several layers of sensing and computation. The better we understand that pipeline, the better we can understand what our wearable data is actually telling us.</p>
 ]]>
                </content:encoded>
            </item>
        
            <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[ HRV Data Is Everywhere. Here's What It Actually Means ]]>
                </title>
                <description>
                    <![CDATA[ Health data is having a moment. Of all the metrics receiving the most developer interest at present, there’s nothing like heart rate variability (HRV). It’s a feature found on every major SDK for wear ]]>
                </description>
                <link>https://www.freecodecamp.org/news/hrv-data-is-everywhere-here-s-what-it-actually-means/</link>
                <guid isPermaLink="false">6a5e88ed780db2fa84ad0b48</guid>
                
                    <category>
                        <![CDATA[ Health Tech  ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Wearables ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ Shradha Puri ]]>
                </dc:creator>
                <pubDate>Mon, 20 Jul 2026 20:45:33 +0000</pubDate>
                <media:content url="https://cdn.hashnode.com/uploads/covers/5e1e335a7a1d3fcc59028c64/75ed57eb-f77b-4055-bb26-4bdc2eaa7bd4.png" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>Health data is having a moment. Of all the metrics receiving the most developer interest at present, there’s nothing like heart rate variability (HRV). It’s a feature found on every major SDK for wearables, every health platform, and every wellness app pitch deck.</p>
<p>But a surprising percentage of people building around this metric don’t really know what it means or why it even matters for the apps they're building. So consider this more as a grounding in what HRV actually means. It should be useful whether you're designing the feature, writing the copy, or just trying to make sense of your own ring data.</p>
<h2 id="heading-table-of-contents"><strong>Table of Contents</strong></h2>
<ul>
<li><p><a href="#heading-what-hrv-actually-measures">What HRV Actually Measures</a></p>
</li>
<li><p><a href="#heading-why-the-context-around-hrv-data-matters-more-than-the-number">Why the Context Around HRV Data Matters More Than the Number</a></p>
</li>
<li><p><a href="#heading-where-hrv-data-gets-misused">Where HRV Data Gets Misused</a></p>
<ul>
<li><p><a href="#heading-treating-hrv-as-real-time-data">Treating HRV as Real-time Data</a></p>
</li>
<li><p><a href="#heading-ignoring-measurement-method-differences">Ignoring Measurement Method Differences</a></p>
</li>
<li><p><a href="#heading-overcomplicating-the-output">Overcomplicating the Output</a></p>
</li>
<li><p><a href="#heading-skipping-data-quality-checks">Skipping Data Quality Checks</a></p>
</li>
</ul>
</li>
<li><p><a href="#heading-principles-for-working-with-hrv">Principles for Working with HRV</a></p>
</li>
<li><p><a href="#heading-a-note-on-privacy">A Note on Privacy</a></p>
</li>
<li><p><a href="#heading-wrap-up">Wrap Up</a></p>
</li>
</ul>
<h2 id="heading-what-hrv-actually-measures"><strong>What HRV Actually Measures</strong></h2>
<p>Heart Rate Variability (HRV) isn't heart rate. Instead, it’s the variability of time intervals between subsequent heartbeats. In case your heart works at 60 bpm, it doesn’t imply that each heartbeat happens exactly once per second. The intervals may vary from 900 milliseconds to 1100 milliseconds, and that’s what HRV actually is.</p>
<p>Increased HRV usually indicates proper functioning of the autonomic nervous system and the ability to change states efficiently, switching from stress to relaxation. Decreased HRV is often an indicator of being exhausted, sick, or under increased physiological stress.</p>
<p>This is the measure which top athletes obsessively monitor. Also, it can be helpful for those who suffer from chronic conditions, insomnia, and burnout.</p>
<p>Here’s the part that trips people up: HRV isn’t one number. It’s a family of metrics, each calculated differently.</p>
<ol>
<li><p><strong>RMSSD</strong> stands for Root Mean Square of Successive Differences and is the most common metric that you'll come across. RMSSD indicates short-term variation and forms the basis for the majority of HRV scores on wearable consumer devices.</p>
</li>
<li><p><strong>SDNN</strong> stands for Standard Deviation of NN intervals and indicates general variability, being used primarily in clinical research settings.</p>
</li>
<li><p>The <strong>LF/HF ratio</strong> refers to the HRV frequency domains, dividing the HRV into two parts of different frequencies.</p>
</li>
</ol>
<p>All of the major HRV providers, such as Apple Health, Garmin, Fitbit, and Oura, provide HRV scores, yet they don’t always agree on which metric they’re surfacing. And they don’t always tell you.</p>
<h2 id="heading-why-the-context-around-hrv-data-matters-more-than-the-number"><strong>Why the Context Around HRV Data Matters More Than the Number</strong></h2>
<p>HRV, in its raw form, is almost entirely meaningless. A reading of 45ms could either be an indication of peak physical health in one person or a warning sign of poor physical well-being in another. Factors such as age, physical fitness, timing of measurements, and even sleeping position influence the normal HRV value.</p>
<p>Understanding that this is perhaps the biggest factor in interpreting HRV is the first step when developing features around it.</p>
<p>Commercial wearables have managed to address this issue by establishing a personal baseline based on readings taken in 30-90 days of wearing the device and presenting deviation from this baseline rather than absolute values.</p>
<p>The lesson here is simple: if your product has anything to do with health (recovery apps, coaching platforms, and so on) then you must follow the same logic, otherwise your users will get confused.</p>
<p>Showing them a raw reading of 38ms won’t make much sense anyway. The better pattern: track trends over time, flag deviations, and let the data explain itself relative to the user’s own history. Not population averages, not clinical reference ranges, but their own.</p>
<h2 id="heading-where-hrv-data-gets-misused">Where HRV Data Gets Misused</h2>
<h3 id="heading-treating-hrv-as-real-time-data">Treating HRV as Real-time Data</h3>
<p>HRV isn't intended for real-time measurements. The most reliable HRV values can be obtained by collecting overnight data, as this allows minimizing external factors’ impact on the result.</p>
<p>This is why companies like <a href="https://wearablexp.com/smart-wearables/whoop-vs-oura-vs-apple-watch/">Oura, Apple, and WHOOP</a> rely precisely on nighttime HRV values. If a product is measuring HRV in the middle of workouts and business meetings, then you're most probably dealing with noise rather than insights.</p>
<h3 id="heading-ignoring-measurement-method-differences">Ignoring Measurement Method Differences</h3>
<p>ECG-based HRV, which can be measured by a chest strap or a professional-grade ECG monitor, is much more precise compared to PPG-based HRV measured by optical sensors incorporated into consumer wearables.</p>
<p>During nighttime, the accuracy difference between these types of data is minimal but grows when a person becomes more active. If your app needs precision – say, you’re building for clinical or research contexts – know your source.</p>
<h3 id="heading-overcomplicating-the-output">Overcomplicating the Output</h3>
<p>Users aren’t cardiologists. Having RMSSD, SDNN, and LF/HF appear in your dashboard may seem complete, but really, it just makes things confusing and causes analysis paralysis.</p>
<p>The most successful consumer HRV applications boil everything down to a readiness or recovery metric. Having more than two HRV metrics on one screen should make you think twice.</p>
<h3 id="heading-skipping-data-quality-checks">Skipping Data Quality Checks</h3>
<p>Wearable data is inherently messy due to motion artifacts, loose placement, uneven wear, and so on. Before including a reading in a calculation, do your homework and see whether data quality was flagged by the wearable. Apple’s HealthKit provides metadata for this purpose, as does the Oura API.</p>
<h2 id="heading-principles-for-working-with-hrv">Principles for Working with HRV</h2>
<p>There are a few patterns that hold up across most use cases:</p>
<ol>
<li><p><strong>Build for the baseline first:</strong> Put a data window threshold on any feature using HRV metrics as its basis. Fourteen days may be a good minimum, but thirty is preferable. No trends can be shown without sufficient historical data.</p>
</li>
<li><p><strong>Normalize before comparing:</strong> When comparing HRV across users (let’s say for a team wellness dashboard), it makes much more sense to use a z-score normalization with respect to a baseline of each user than just compare absolute numbers. A reading of 55ms for one user and 40ms for another might actually signify the same physiological state, once you account for each person's baseline.</p>
</li>
<li><p><strong>Design for trends, not single data points:</strong> One bad HRV day is almost certainly random. But three or four consecutive days of bad readings coming from an athlete used to having significantly higher readings is definitely something to pay attention to. Again, sparklines and rolling averages for seven days will help more than a single point comparison.</p>
</li>
<li><p><strong>Be honest about what HRV can’t tell you:</strong> It could show signs of physiological stress, but it can't differentiate between causes of this stress, such as intense training, poor sleep, general anxiety, or even developing illness.</p>
</li>
</ol>
<h2 id="heading-a-note-on-privacy"><strong>A Note on Privacy</strong></h2>
<p>HRV resides within the grey area that most product teams tend to overlook. While it may not be classified as PHI by HIPAA in consumer-oriented scenarios, it's very personal biometric information. HRV patterns may give an indication of stress levels, mental well-being, and even provide predictive information regarding the onset of diseases.</p>
<p>If you’re storing or processing HRV data, it's a good idea to consider your data retention practices, the third parties you share the information with, and whether your disclosures to users have been clear enough. Users are getting smarter about this. Regulators are, too.</p>
<h2 id="heading-wrap-up"><strong>Wrap Up</strong></h2>
<p>HRV is actually valuable data. This isn’t just marketing talk. There’s plenty of science behind HRV and the technology to measure it has been getting more refined. But it’s worth remembering that, as with most health data, it’s only valuable if used intelligently.</p>
<p>Know what you’re building upon. Design for personal context, not universal benchmarks. Make sure the data is easy to consume. And don’t take it any less seriously than your users do when they wear these devices every day, hoping it will make them feel better.</p>
<p>That’s really what it comes down to.</p>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ Sleep Tracking, Bluetooth Signals, and EMF: What Every Wearable User Should Know ]]>
                </title>
                <description>
                    <![CDATA[ You take off your shoes before bed. You probably don't take off your smart ring or your watch. Most of us sleep with a Bluetooth-enabled device sitting a few millimeters from our skin, all night, ever ]]>
                </description>
                <link>https://www.freecodecamp.org/news/sleep-tracking-bluetooth-signals-and-emf-in-wearables/</link>
                <guid isPermaLink="false">6a3aaa339a4579a7c98eadf8</guid>
                
                    <category>
                        <![CDATA[ Wearables ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Health Tech  ]]>
                    </category>
                
                    <category>
                        <![CDATA[ bluetooth ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Bluetooth Low Energy ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ Shradha Puri ]]>
                </dc:creator>
                <pubDate>Tue, 23 Jun 2026 15:45:55 +0000</pubDate>
                <media:content url="https://cdn.hashnode.com/uploads/covers/5e1e335a7a1d3fcc59028c64/1aedc780-3439-459f-b446-aba26798b51c.png" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>You take off your shoes before bed. You probably don't take off your smart ring or your watch. Most of us sleep with a Bluetooth-enabled device sitting a few millimeters from our skin, all night, every night, while transmitting small amounts of radiofrequency (RF) waves and collecting sleep data.</p>
<p>This thing is quietly recording your heart rate and movements while you’re sleeping. So it's a valid question to ask whether the wireless signals or electromagnetic field (EMF) radiation it emits could interfere with sleep quality, disrupt hormones such as melatonin, affect circadian rhythms, or produce other biological effects over time.</p>
<p>The concerns are part of the wider discussion on EMF’s and wireless technology. Although all smartphones, Wi-Fi, and wearables emit RF waves, the amounts of energy used and how they work can be quite different. Understanding what your sleep tracker is actually doing helps put those concerns into context.</p>
<h2 id="heading-table-of-contents"><strong>Table of Contents</strong></h2>
<ul>
<li><p><a href="#heading-how-sleep-trackers-measure-sleep">How Sleep Trackers Measure Sleep</a></p>
</li>
<li><p><a href="#heading-whats-actually-transmitting-from-your-ring-or-watch">What's Actually Transmitting From Your Ring or Watch</a></p>
</li>
<li><p><a href="#heading-how-that-stacks-up-against-safety-limits">How That Stacks Up Against Safety Limits</a></p>
</li>
<li><p><a href="#heading-where-the-melatonin-research-gets-misapplied">Where the Melatonin Research Gets Misapplied</a></p>
</li>
<li><p><a href="#heading-what-the-latest-research-actually-says">What the Latest Research Actually Says</a></p>
<ul>
<li><a href="#heading-the-pushback">The Pushback</a></li>
</ul>
</li>
<li><p><a href="#heading-what-this-means-for-how-you-wear-it-at-night">What This Means for How You Wear It at Night</a></p>
</li>
<li><p><a href="#heading-the-bigger-risk-isnt-the-radio">The Bigger Risk Isn't the Radio</a></p>
</li>
</ul>
<h2 id="heading-how-sleep-trackers-measure-sleep"><strong>How Sleep Trackers Measure Sleep</strong></h2>
<p>Before discussing the impact of signals and EMF, we should know what exactly happens when a device monitors your sleep.</p>
<p>Sleep trackers rarely actually measure your sleep but rather use sensors to track movements, heart rate, heart rate variability (HRV), breathing rate, temperature, and more.</p>
<p>The software analyzes data and distinguishes between states like awake, light sleep, deep sleep, and REM sleep. As opposed to professional polysomnography, sleep tracking devices don't measure brain waves and so can't actually observe sleep. They only make an educated guess.</p>
<p>This is critical to understand, because it's not the Bluetooth radio itself that measures your sleep, but rather sensors.</p>
<h2 id="heading-whats-actually-transmitting-from-your-ring-or-watch"><strong>What's Actually Transmitting From Your Ring or Watch</strong></h2>
<p>The chip in your Oura, Ultrahuman, or Apple Watch communicates with your phone via Bluetooth Low Energy (BLE). BLE was designed with a power budget rather than a performance budget because, in this case, power is more important than range when you have the receiver just a few inches away, in your pocket or on your nightstand.</p>
<p>The transmit power, according to the <a href="https://pmc.ncbi.nlm.nih.gov/articles/PMC5751532/">Bluetooth specification</a>, is capped at 100 milliwatts. But most chips used by consumers are well below the maximum power limit, often at 1-10 milliwatts.</p>
<p>By contrast, a cell phone during a voice call can transmit up to <a href="https://www.rfpage.com/is-bluetooth-safe/">250 to 2,000 milliwatts</a>. You're not carrying a miniaturized cell tower, you're carrying an item that transmits in bursts of low-power signals.</p>
<h2 id="heading-how-that-stacks-up-against-safety-limits"><strong>How That Stacks Up Against Safety Limits</strong></h2>
<p>The SAR metric is used to quantify the amount of RF energy tissue absorbs. This metric is measured in watts per kilogram. The <a href="https://support.realwear.com/knowledge/specific-absorption-rate-sar-information">Federal Communications Commission (FCC)</a> caps the SAR level to 1.6 W/kg averaged over 1 g of tissue. But according to International Commission on Non-Ionizing Radiation Protection (ICNIRP) standards, the average SAR should be maintained at 2 W/kg averaged over 10 g of tissue.</p>
<p>No wireless communication device will be certified and made available on the market unless it meets the criteria of the SAR metric.</p>
<p>In the United States, the SAR limit for wrist-worn devices is 4.0 W/kg. According to Apple's <a href="https://wearablexp.com/smart-watches/does-apple-watch-emit-radiation/">Apple Watch RF exposure data</a>, the watch has a reported SAR value of approximately 0.17 W/kg, while Oura reports a SAR value of 0.0003 W/kg for the Oura Ring. Both are well below regulatory limits, illustrating just how little RF energy these wearables typically emit.</p>
<p>According to an engineering evaluation published in 2024 by <a href="https://arxiv.org/pdf/1912.05282">Kim, Sharif and Nasim</a>, SAR levels associated with commercial wearable technology operated at 2.4 GHz have been found to comply with the regulatory threshold and the safety guideline at the distance of skin contact.</p>
<h2 id="heading-where-the-melatonin-research-gets-misapplied"><strong>Where the Melatonin Research Gets Misapplied</strong></h2>
<p>Melatonin is the natural hormone responsible for regulating your sleep-wake cycle, which is why it has been frequently mentioned in the context of the relationship between EMFs and sleep. Indeed, there have been numerous studies in the past indicating that exposure to specific forms of electromagnetic fields might have an impact on melatonin production, circadian rhythms, or oxidative stress.</p>
<p>But the results from these studies have been quite mixed. Some research has found a notable effect, while others have found no significant effect at all. Most importantly, most studies that are constantly being cited refer to extremely low-frequency (ELF) fields generated by power lines, electrical wiring, and household electricity in general and not the Bluetooth device radiofrequency signals.</p>
<p>That research is real, but it often concerns extremely low-frequency (ELF) fields, those at 50-60 Hz found in power lines and electrical wiring, rather than the 2.4 GHz radiofrequency used by your Bluetooth ring. These are different parts of the electromagnetic spectrum with different interaction mechanisms.</p>
<p>Citing ELF melatonin studies to explain RF wearable exposure is a bit like citing research on UV exposure to explain what your microwave does. Related field, wrong frequency range.</p>
<h2 id="heading-what-the-latest-research-actually-says"><strong>What the Latest Research Actually Says</strong></h2>
<p>The strongest evidence we have today comes from a series of systematic reviews commissioned by the <a href="https://pmc.ncbi.nlm.nih.gov/articles/PMC12490090/">World Health Organization</a>.</p>
<p>There were several reviews published between 2024 and 2025 which aimed to assess whether RF-EMF (Radiofrequency Electromagnetic Fields) exposure was connected with outcomes such as sleep disorders, headaches, and nonspecific symptoms.</p>
<p>No evidence suggesting a cause-and-effect relationship between RF-EMF exposure below current safety thresholds and sleep disorders was reported by either experimental or observational research.</p>
<p>This certainly doesn't solve the problem because of the uncertainty of the evidence. And this is quite low due to challenges in estimating actual RF exposures experienced by people. We're all surrounded by various signals emitted by our smartphones, Wi-Fi routers, laptops, cellular towers, and so on.</p>
<p>The conclusion is relatively simple, though: there's currently no evidence that would show that RF exposures using Bluetooth disrupts people’s sleep. That being said, researchers are still actively exploring the issue.</p>
<h3 id="heading-the-pushback"><strong>The Pushback</strong></h3>
<p>Not everyone agrees with these findings. Some researchers claim that WHO review fails to give enough weight to certain studies and that research findings on the subject are still lacking.</p>
<p>This criticism targets the whole body of work on RF-EMF radiation since most of them are based on mobile phones rather than wearable technology.</p>
<p>The debate is ongoing, but present research doesmn't show any disruptions caused by wearables with Bluetooth functionality.</p>
<h2 id="heading-what-this-means-for-how-you-wear-it-at-night"><strong>What This Means for How You Wear It at Night</strong></h2>
<p>If the thought of wearing a sleep-tracking wearable next to your body for a full eight hours leaves you feeling uncomfortable, the quickest solution won’t be getting rid of it. Many wearables offer a low-power mode, airplane mode, or similar settings that disable Bluetooth communication while allowing the device to continue collecting data through onboard sensors such as the accelerometer and optical heart rate sensor.</p>
<p>For people concerned about EMF exposure, this setting reduces wireless transmissions during the night while still preserving most sleep-tracking functionality on the device. The reduction in radiofrequency emissions is typically small in absolute terms because Bluetooth Low Energy already transmits at very low power and only intermittently. Still, you may prefer minimizing any unnecessary wireless activity while you sleep.</p>
<p>I’m not saying that disabling Bluetooth improves sleep quality or health outcomes. But if doing so helps you feel more comfortable or less worried about wearing a device overnight and its EMF, it can be a practical compromise that allows you to continue tracking your sleep without the added concern.</p>
<h2 id="heading-the-bigger-risk-isnt-the-radio"><strong>The Bigger Risk Isn't the Radio</strong></h2>
<p>The bigger sleep-tracking problem probably isn't EMF at all. Neurologists are seeing more patients who walk in fixated on hitting a target number of REM minutes when using a wearable device that measures sleep stages based on movement and heart rate.</p>
<p>Unlike a laboratory polysomnography test, where sleep stages are measured directly from brain activity, the measurement provided by the wearable device is only an inference based on movement and heart rate. The term used for such obsession is 'orthosomnia', which is better described as the downside of wearing a sleep tracker rather than anything related to EMFs.</p>
<p>If you're going to worry about something at 2 a.m., the accuracy of the sleep data is probably a better place to focus than the Bluetooth chip. Sleep trackers estimate sleep stages rather than measuring them directly, and that limitation can sometimes create more anxiety than the radio signals themselves.</p>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ How Wearables Track the Menstrual Cycle: The Sensors, the Algorithms, and the Accuracy Gap ]]>
                </title>
                <description>
                    <![CDATA[ Your Garmin shows poor recovery, WHOOP paints your day red, your resting heart rate is high, your HRV is low, and the app recommends that you rest. But here’s the thing: you don’t actually feel bad. F ]]>
                </description>
                <link>https://www.freecodecamp.org/news/how-wearables-track-the-menstrual-cycle-the-sensors-the-algorithms-and-the-accuracy-gap/</link>
                <guid isPermaLink="false">6a34144348f250210b480951</guid>
                
                    <category>
                        <![CDATA[ Wearables ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Health Tech  ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ Shradha Puri ]]>
                </dc:creator>
                <pubDate>Thu, 18 Jun 2026 15:52:34 +0000</pubDate>
                <media:content url="https://cdn.hashnode.com/uploads/covers/5e1e335a7a1d3fcc59028c64/f9883968-d2c8-4604-bd74-7e811ff52ca4.png" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>Your Garmin shows poor recovery, WHOOP paints your day red, your resting heart rate is high, your HRV is low, and the app recommends that you rest. But here’s the thing: you don’t actually feel bad.</p>
<p>For women who are in their reproductive years, chances are your wearable technology has misread your luteal phase symptoms as either a result of being overtrained or even sick. This is because the technology likely detected a symptom that it doesn’t actually understand.</p>
<p>Let’s get into how this is actually happening by going from sensors to algorithms and finally to where the accuracy gap actually lives.</p>
<h2 id="heading-table-of-contents"><strong>Table of Contents</strong></h2>
<ul>
<li><p><a href="#heading-what-the-menstrual-cycle-actually-does-to-your-biometrics">What the Menstrual Cycle Actually Does to Your Biometrics</a></p>
<ul>
<li><p><a href="#heading-resting-heart-rate-and-hrv">Resting Heart Rate and HRV</a></p>
</li>
<li><p><a href="#heading-heart-rate-variability-hrv">Heart Rate Variability (HRV)</a></p>
</li>
<li><p><a href="#heading-skin-temperature">Skin Temperature</a></p>
</li>
</ul>
</li>
<li><p><a href="#heading-how-wearables-measure-these-signals">How Wearables Measure These Signals</a></p>
<ul>
<li><p><a href="#heading-ppg-sensors-and-what-they-actually-capture">PPG Sensors and What They Actually Capture</a></p>
</li>
<li><p><a href="#heading-temperature-sensors-continuous-vs-spot-measurement">Temperature Sensors: Continuous vs. Spot Measurement</a></p>
</li>
</ul>
</li>
<li><p><a href="#heading-how-the-algorithms-work">How the Algorithms Work</a></p>
<ul>
<li><p><a href="#heading-calendar-based-vs-physiology-based-detection">Calendar-Based vs. Physiology-Based Detection</a></p>
</li>
<li><p><a href="#heading-how-machine-learning-classifies-cycle-phases">How Machine Learning Classifies Cycle Phases</a></p>
</li>
</ul>
</li>
<li><p><a href="#heading-why-the-accuracy-gap-exists">Why the Accuracy Gap Exists</a></p>
</li>
<li><p><a href="#heading-what-cycle-aware-algorithms-look-like-in-practice">What Cycle-Aware Algorithms Look Like in Practice</a></p>
</li>
<li><p><a href="#heading-wrapping-up">Wrapping Up</a></p>
</li>
</ul>
<h2 id="heading-what-the-menstrual-cycle-actually-does-to-your-biometrics"><strong>What the Menstrual Cycle Actually Does to Your Biometrics</strong></h2>
<p>Before jumping into the sensors and algorithms, here's what they're actually detecting. The menstrual cycle isn't the noise within wearable data, but an active component that alters the physiology upon which any recovery or health algorithm relies.</p>
<p>There are three signals that tell the story.</p>
<h3 id="heading-resting-heart-rate">Resting Heart Rate</h3>
<p><a href="https://pmc.ncbi.nlm.nih.gov/articles/PMC9005074/">Multiple studies</a> using continuous wearable monitoring have confirmed that resting heart rate increases 2-7 bpm from the follicular phase to the luteal phase. One prospective study of 91 women observed that resting heart rate was 3.8 bpm higher in the mid-luteal phase compared to the period of menstruation.</p>
<h3 id="heading-heart-rate-variability-hrv">Heart Rate Variability (HRV)</h3>
<p>On the other hand, HRV changes in the opposite direction. In particular,&nbsp; <a href="https://pmc.ncbi.nlm.nih.gov/articles/PMC6912442/">a meta-analysis</a> of more than 1,000 participants showed the reduction of vagally mediated HRV from follicular to luteal phases of the menstrual cycle.</p>
<p>For example, <a href="https://pmc.ncbi.nlm.nih.gov/articles/PMC5588411/">one study reported</a> that SDNN decreased from 154 ms in the follicular phase to 136 ms in the luteal phase, which represents a decrease of 12%. Progesterone is responsible for such effects. Specifically, it triggers the renin-angiotensin system (RAS), increases the total blood volume, raises HRj, and reduces parasympathetic influence. On the other hand, estrogen decreases HR (negative chronotropic effect) and leads to greater HRV.</p>
<p>So during the mid-luteal phase, you already have an increased RHR but a reduced HRV. To a recovery algorithm that does not know where you are within your menstrual cycle, this combination signifies stress, sickness or overtraining.</p>
<h3 id="heading-skin-temperature">Skin Temperature</h3>
<p>The temperature shift has been most thoroughly studied out of the three. <a href="https://pubmed.ncbi.nlm.nih.gov/33123618/">Postovulatory rise of basal body temperature</a> by 0.3–0.7°C due to progesterone’s effect has been known for over 100 years and constitutes the basis of traditional fertility awareness methods.</p>
<p>My Oura Ring data also shows that skin temperature usually increases during the luteal phase. It also tends to drop briefly just prior to ovulation due to an abrupt drop in body temperature related to estrogen.</p>
<p>The key point here is that signals change in the same direction at the same time, every cycle, predictably. When an algorithm treats these indicators separately, it's structurally wrong.</p>
<h2 id="heading-how-wearables-measure-these-signals"><strong>How Wearables Measure These Signals</strong></h2>
<h3 id="heading-ppg-sensors-and-what-they-actually-capture">PPG Sensors and What They Actually Capture</h3>
<p>Heart rate and HRV measurements from wearables are done by Photoplethysmography (PPG). This sensor emits LED light, generally green for heart rate and red &amp; infrared for SpO2, to shine on your skin. Light gets absorbed differently by blood depending on its volume, so as your heart beats and blood flows in capillaries, light reflected from your skin will be different for each heartbeat. Variation in light reflected is known as the PPG waveform.</p>
<p>Based on PPG waveform data, wearables calculate beat-to-beat intervals. While calculating the heart rate is relatively easy as it simply counts peaks per minute, HRV needs precise timing since it measures the variation in milliseconds between consecutive heartbeats. That’s where signal quality starts to matter a lot.</p>
<p>Placement of sensors on your skin also plays a vital role in this. Generally, finger devices such as smart rings like Oura and Ultrahuman give cleaner PPG signals compared to wrist-worn devices such as your Apple Watch, Garmin, or WHOOP. The finger has higher density capillaries, resulting in larger pulse amplitude and lower motion artifacts.</p>
<p>Wristwear makes up for this problem with more sophisticated signal processing techniques. But there's always a price to pay for that. For instance, Oura Ring 4 provides users with an 18-path multilayered wavelength PPG sensor with adaptive sensor configurations.</p>
<h3 id="heading-temperature-sensors-continuous-vs-spot-measurement">Temperature Sensors: Continuous vs. Spot Measurement</h3>
<p>Temperature sensors incorporated in current wearables measure skin temperature and not core body temperature. These sensors, called thermistors, are capable of detecting temperature fluctuations in terms of changes in electrical resistance.</p>
<p>While there's a relationship between skin temperature and core body temperature, the two aren't the same. Skin temperature responds to factors such as room temperature, weather conditions, and temperature variation caused by changes in blood flow around the skin surface.</p>
<p>Even so, continuous overnight monitoring of skin temperatures may provide better information compared to traditional basal body temperature (BBT). With the fertility awareness technique, temperature is always measured at the same time each morning, right before getting out of bed. Missing a measurement or a bad night of sleep may negatively impact results.</p>
<p>Wearables take a different approach. By collecting temperature data throughout the night, they can identify longer-term trends and reduce the impact of short-term fluctuations.</p>
<p>Some devices, such as the Apple Watch Series 8 and later, Fitbit Sense, and Oura Ring, have temperature sensors. Most smart rings track temperature changes from an individual’s baseline, not the absolute temperature itself. It makes identifying temperature increases, which happen after ovulation, easier.</p>
<h2 id="heading-how-the-algorithms-work"><strong>How the Algorithms Work</strong></h2>
<h3 id="heading-calendar-based-vs-physiology-based-detection">Calendar-Based vs. Physiology-Based Detection</h3>
<p>Perhaps the most basic way of detecting the menstrual cycle is through a calendar model. The user inputs the first day of their period, the app calculates the average cycle length, and predicts the fertile window forward from there.</p>
<p>Apps like Clue, Flo, and older versions of Apple’s period tracker use this as their foundation. It’s a simple algorithm that needs no sensor data at all.</p>
<p>The problem with calendar algorithms is accuracy. These types of methods operate on regular cycles, but these aren't common in many women. For ovulation detection, for example, <a href="https://pmc.ncbi.nlm.nih.gov/articles/PMC11829181/">studies reveal</a> that there's an average error of 3.44 days for calendar methods alone.</p>
<p>Also, calendar methods predict menstrual phases based only on dates entered by the user, whereas physiology-based approaches analyze sensor data such as temperature, heart rate and HRV to detect ovulation and cycle-related changes. For example, Oura uses heart rate and temperature to detect ovulation with an average error of 1.26 days.</p>
<h3 id="heading-how-machine-learning-classifies-cycle-phases">How Machine Learning Classifies Cycle Phases</h3>
<p>Machine learning algorithms don't use a single metric to determine where you are within your menstrual cycle. Rather, they examine patterns in several physiological indicators taken from wearables, such as skin temperature, heart rate, heart rate variability (HRV), and in some cases, electrodermal activity (EDA).</p>
<p>Over time, machine learning algorithms figure out which cycle stages correspond to which physiological patterns. For example:</p>
<ul>
<li><p>The luteal stage is characterized by an increase in skin temperature and changes in cardiovascular metrics.</p>
</li>
<li><p>Ovulation causes changes in patterns in terms of temperature and heart rate.</p>
</li>
<li><p>The menstrual phase can show its own distinct combination of physiological changes.</p>
</li>
<li><p>The follicular phase is generally the most difficult one to recognize since its biometric signatures aren't clearly defined and tend to coincide with those from other phases.</p>
</li>
</ul>
<p>A <a href="https://pubmed.ncbi.nlm.nih.gov/39889448/">2025 study</a> found that machine learning algorithms can effectively determine the menstrual, ovulatory, and luteal phases. The accuracy of the results decreased when the follicular phase was added to the list of phases.</p>
<p>Modern cycle tracking apps have become complex because of this reason and they no longer depend solely on temperature. It becomes easier for a device to identify the phases of the menstrual cycle with every additional physiological signal that it captures.</p>
<p>Other technologies like the <a href="https://wearablexp.com/smart-wearables/vivoo-flowpad-smart-menstrual-pad/">Vivoo FlowPad</a> are also emerging that attempt to collect menstrual health data directly rather than inferring it from wearable sensors.</p>
<h2 id="heading-why-the-accuracy-gap-exists"><strong>Why the Accuracy Gap Exists</strong></h2>
<p>The issue with wearables comes down to the fact that many of the metrics related to menstrual cycle phases aren’t exclusive to the menstrual cycle.</p>
<p>Take, for instance, the metrics such as a high resting heart rate, reduced HRV, and increased skin temperature. These could be observed during the luteal phase, but can also occur thanks to a range of other factors, including illness, lack of sleep, stress, consumption of alcohol, or even jet lag.</p>
<p>Yet another hurdle with menstrual tracking involves individual differences since some women might have significant changes during their menstrual cycles when it comes to temperature and HRV, whereas others will have minimal changes in those metrics.</p>
<p>This is why most menstrual tracking algorithms require individual baselines instead of population baselines, meaning that the more data is collected from a woman regarding her menstrual cycles, the better it gets at identifying her personal patterns.</p>
<h2 id="heading-what-cycle-aware-algorithms-look-like-in-practice"><strong>What Cycle-Aware Algorithms Look Like in Practice</strong></h2>
<p>Until 2025, most wearables considered tracking cycles and recovery as two separate concepts. Oura became the first big company to connect the two.</p>
<p>Its updated algorithm accounts for increased resting heart rate, decreased HRV, and increased body temperature, all common during the luteal phase. Instead of automatically lowering readiness scores, it checks whether those changes are a normal part of the menstrual cycle.</p>
<p>This reduced the number of falsely low recovery scores during the second half of the menstrual cycle. In 2026, Oura went further with a dedicated AI model focused on cycles, fertility, pregnancy, and menopause.</p>
<p>WHOOP chose a different route through its metric called cardiovascular amplitude that measures heart rate and HRV variability throughout the whole cycle. Rather than focusing on individual phases, it looks at the overall physiological impact of hormonal changes.</p>
<p>Natural Cycles became the first fertility app that obtained FDA approval for contraceptive use, collecting users' body temperature data with the help of their wearables’ sensors like the Apple Watch, Oura Ring, Garmin, or its own dedicated NC Band.</p>
<p>Garmin, Fitbit, and Samsung track menstrual cycles, but those insights remain largely separate from their recovery and readiness metrics.</p>
<h2 id="heading-wrapping-up"><strong>Wrapping Up</strong></h2>
<p>This boils down to the mismatch between measurements taken by wearables and what recovery algorithms were designed to handle.</p>
<p>PPG sensors and temperature sensors allow wearables to detect changes that happen across the menstrual cycle and they work well enough. Multi-parameter machine learning allows for reliable classification of the cycle phases, particularly those happening during ovulation.</p>
<p>But problems arise because many recovery algorithms have been trained on data biased towards male samples, where hormonal cycle variations are considered to be noise. These recovery algorithms lack the means to differentiate between luteal phase physiology and initial phases of an illness. Sensors won’t solve this problem, but algorithmic design will.</p>
<p>From the perspective of developing health apps using wearable device APIs, we already have access to health metrics that incorporate information about the current stage of the cycle. Oura provides it in specific endpoints, Apple integrates with HealthKit’s HKCategoryTypeIdentifier, and WHOOP ties it into its recovery model.</p>
<p>The problem here is that data can be accessed on these platforms via different APIs, data models, and integration techniques. While Oura, Apple HealthKit, and WHOOP may expose similar health metrics, there can still be differences in the sampling frequency, preprocessing methods, and metric definitions, making it hard to create algorithms that would work consistently across platforms.</p>
<p>This lack of standardization also contributes to the training data problem. Data collected by Oura, Apple Watch, and WHOOP can't always be combined easily since each platform stores and works with data differently. As a result, researchers and developers have to do additional work preparing and normalizing data before it can be used to train models.</p>
<p>There are sensors and the models have been improving, but the APIs are fragmented and the lack of training data is real. That’s where the work is.</p>
 ]]>
                </content:encoded>
            </item>
        
            <item>
                <title>
                    <![CDATA[ What the new Apple Watch’s EKG means for the future of consumer wearables and healthcare ]]>
                </title>
                <description>
                    <![CDATA[ By James Hsu When Apple announced this September that its newest Series 4 Apple Watch includes EKG functionality, I imagined millions of hearts worldwide fluttering with delight. The news was significant for several reasons. The chief reason is it is... ]]>
                </description>
                <link>https://www.freecodecamp.org/news/what-the-apple-watchs-new-ekg-feature-means-for-the-future-of-consumer-wearables-and-medicine-4189c070a4e/</link>
                <guid isPermaLink="false">66c365f4139b845d61e84bc1</guid>
                
                    <category>
                        <![CDATA[ Wearables ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Apple ]]>
                    </category>
                
                    <category>
                        <![CDATA[ Health, ]]>
                    </category>
                
                    <category>
                        <![CDATA[ iot ]]>
                    </category>
                
                    <category>
                        <![CDATA[ tech  ]]>
                    </category>
                
                <dc:creator>
                    <![CDATA[ freeCodeCamp ]]>
                </dc:creator>
                <pubDate>Wed, 24 Oct 2018 17:47:19 +0000</pubDate>
                <media:content url="https://cdn-media-1.freecodecamp.org/images/1*qXbNq_8QxwffeyKLMsrDwQ.jpeg" medium="image" />
                <content:encoded>
                    <![CDATA[ <p>By James Hsu</p>
<p>When Apple announced this September that its newest Series 4 Apple Watch includes EKG functionality, I imagined millions of hearts worldwide fluttering with delight.</p>
<p>The news was significant for several reasons. The chief reason is it is the first time a mainstream consumer wearable device will perform a sophisticated medical procedure. This same procedure we need to see the doctor for today.</p>
<p>To understand the significance, you need first to set aside the fact that health and fitness are already key reasons why consumers currently use wearables. Fitness trackers have had <em>heart rate</em> sensors for many years now.</p>
<p>(Heart rate sensors are convenient for fitness purposes, to be sure. But, they’re also primitive. Anyone with a finger can feel for a pulse and calculate a heart rate if necessary.)</p>
<p>An <a target="_blank" href="https://www.webmd.com/heart-disease/electrocardiogram-ekgs#1">EKG (or ECG/electrocardiogram)</a> is different than a heart rate measurement. For one, because an EKG looks at the heart’s electrical impulses to monitor for and identify specific heart anomalies. These anomalies are the immediate precursor to serious medical conditions. Conditions like strokes or heart attacks.</p>
<p><em>The technology can and will save lives.</em></p>
<p>By adding new and substantial medical features, Apple (and others) could be paving the way to a future in which wearables serve as the frontline for the diagnosis, treatment, and even prevention of serious medical conditions.</p>
<p><img src="https://cdn-media-1.freecodecamp.org/images/0*pexRirzLZVNNWU8t.jpg" alt="Image" width="800" height="456" loading="lazy">
<em>Hold your finger on the crown of the Series 4 Apple Watch, and you’ll get an EKG reading on the spot.</em></p>
<h3 id="heading-the-apple-watch-is-a-class-ii-medical-device">The Apple Watch is a class II medical device.</h3>
<p>Adding an EKG to the Apple Watch wasn’t just an engineering task.</p>
<p>It also required the attention and cooperation of the notoriously finicky Food and Drug Administration (FDA). The FD has cleared Apple’s use of two medical-grade features in the new Apple Watch: 1) the EKG, and 2) the Apple Watch’s ability to identify and notify users of an irregular heart rhythm.</p>
<p>It’s important to note that, with the FDA, “clearing” a device is not the same as “approving” one. The latter is much harder to do and requires much significant collaboration and testing to mitigate potential risks. Clearing the Apple watch took just one month from application to decision. Class II devices like the new Apple Watch don’t require FDA approval because the associated health risks aren’t deemed great enough to warrant a more rigorous vetting process.</p>
<p>It’s also important to understand that <a target="_blank" href="https://www.accessdata.fda.gov/cdrh_docs/pdf18/DEN180044.pdf">the FDA clearance letters</a> came with language stating that the cleared features are not intended for users under the age of 22, and are “not intended to replace traditional methods of diagnosis or treatment.”</p>
<p>Regarding the latter, what this means is that after your Apple Watch tells you it has detected a mild heart arrhythmia, you’ll probably want to follow up with your doctor to get a proper diagnosis.</p>
<p>On the other hand, if your Apple Watch tells you you’ve just had a heart attack, immediate urgency (and common sense) dictates that you’re going to go straight to the ER or call an ambulance, skipping the “traditional method of diagnosis” referenced in the FDA’s letter.</p>
<h3 id="heading-a-beachhead-for-new-medical-functionality">A beachhead for new medical functionality</h3>
<p>With the regulatory precedent established, Apple product managers are undoubtedly considering more medical functionality, to double down on this growing notion of the Apple Watch as a medical device.</p>
<p>If so, what might we see from Apple down the road?</p>
<p>Well, as it turns out, Apple has for <a target="_blank" href="https://www.theverge.com/2017/5/19/15662316/apple-watch-glucose-tracker-tim-cook">years been working on developing a blood glucose tracker</a> that ties to the Apple Watch. Such a tracker could help with diagnosis, treatment, and perhaps even prevention of type 2 diabetes.</p>
<p>Diabetes currently affects an estimated 30 million people in the United States alone. The challenge has been creating <em>noninvasive</em> technology that doesn’t require permeating the skin you to get a reading, as current glucose trackers must do. According to a CNBC report last year, Apple has assembled a new team to pursue this “holy grail” breakthrough.</p>
<p>Here’s Apple CEO Tim Cook on the opportunity with glucose trackers:</p>
<blockquote>
<p>“It’s mentally anguishing to stick yourself many times a day to check your blood sugar. There is lots of hope out there that if someone has constant knowledge of what they’re eating, they can instantly know what causes the response… and that they can adjust well before they become diabetic.”</p>
</blockquote>
<p><img src="https://cdn-media-1.freecodecamp.org/images/0*AHq3637kPWpZJ8nd.jpg" alt="Image" width="800" height="533" loading="lazy">
<em>Apple CEO Tim Cook appears to be gung-ho about enabling the Apple Watch as a medical device, with CNBC reporting last year that he was personally testing a blood glucose tracker for the Apple Watch.</em></p>
<h3 id="heading-impact-on-healthcare-practices-and-insurance-costs">Impact on healthcare practices and insurance costs</h3>
<p>Cook’s predecessor, the legendary visionary Steve Jobs, reportedly first envisioned the popularization of consumer wearables that could provide blood glucose readings and other health vitals.</p>
<p>If Jobs’ vision of a versatile wearable health tracker comes to fruition, what effect might this have on the time-tested practice of the “annual physical?” For one, we might very well see formal doctor checkups give way to daily or even hourly automated testing through wearables like the Apple Watch.</p>
<p>And if this happens, what implication might widespread use of the device have beyond users’ health, for instance, on healthcare costs and the healthcare system itself? North American healthcare provider United Healthcare is an example of one insurance provider that is already <a target="_blank" href="https://www.uhc.com/employer/programs-tools/for-employees/unitedhealthcare-motion">offering financial incentives to customers that use wearable fitness trackers to meet daily fitness goals</a>.</p>
<p>When customers get ahold of devices that also address the medical component of wellness and longevity, I’d certainly expect to see such financial incentives increase and healthcare premiums decrease.</p>
<h3 id="heading-wearable-medical-technology-is-not-a-one-horse-race">Wearable medical technology is not a one-horse race</h3>
<p>FitBit, the other big player in health and fitness wearables, <a target="_blank" href="https://www.wired.com/story/when-your-activity-tracker-becomes-a-personal-medical-device/">has had a blood oxygen sensor built into its Ionic watch for more than a year</a>. The sensor can be used to detect common breathing related disorders such as asthma, sleep apnea, and even heart arrhythmia conditions such as atrial fibrillation.</p>
<p>There’s a problem, though. At the time of this story’s publication, Fitbit has not yet publicly released software that makes use of the hardware sensor.</p>
<p>Samsung is another company that has demonstrated a commitment to adapting its wearable technologies to support medical use cases.</p>
<p>For instance, Samsung’s Gear VR headset is used by California-based <a target="_blank" href="https://irisvision.com/">IrisVision</a> to allow legally blind users to see clearly in all aspects of life. Using <a target="_blank" href="https://citrusbits.com/portfolio/irisvision/">custom IrisVision software</a>, the IrisVision headset uses proprietary visual acuity algorithms to amplify any remaining useful vision a user still has. The result is clear vision and, for many users, the restoration of independence in their daily lives. IrisVision has the financial support of the National Institute of Health (NIH) and was developed by leading vision experts from Johns Hopkins University, UC Berkeley, Stanford, and UCLA.</p>
<h3 id="heading-medical-wearables-will-empower-clinical-researchers">Medical wearables will empower clinical researchers</h3>
<p>Beyond consumer healthcare, clinical researchers stand to benefit from these recent developments in wearables, too. When doing any sort of clinical research, getting reliable data can be an enormous challenge, especially when a study depends on self-reported data or recollections.</p>
<p>Even for clinical studies that do use lab results, gathering data collection can be a challenge — costly, impractical, or even impossible.</p>
<p><img src="https://cdn-media-1.freecodecamp.org/images/0*Oq8V1mawbYvZH8ZL.jpg" alt="Image" width="800" height="532" loading="lazy">
<em>In clinical testing and research, data collection can be a considerable challenge without sophisticated wearables.</em></p>
<p>But, if these measurements can be taken automatically by a wearable device, that largely addresses the issue, providing rich, reliable, and (perhaps) actionable data to researchers whose work depends on the availability of data they can trust.</p>
<p>Case in point, Johns Hopkins University has for the past three years <a target="_blank" href="https://www.hopkinsmedicine.org/epiwatch/#.W8e46GhKiUk">been conducting a clinical study that allows participants to use their Apple Watches and the university’s EpiWatch app</a> to provide clinical data (heart rate and accelerometer data) to further their understanding of epilepsy.</p>
<p>And, just last September, the NIH granted $2.5M to <a target="_blank" href="http://www.biosensics.com/">BioSensics</a> to develop wearable sensors to monitor the symptoms of Huntington’s disease. <a target="_blank" href="https://clinicaltrials.gov/ct2/show/NCT03599076">A pilot study in collaboration with The University of Rochester is now underway</a>.</p>
<h3 id="heading-wearables-provide-the-sensors-and-hardware-but-user-experience-is-paramount">Wearables provide the sensors and hardware, but user experience is paramount.</h3>
<p>The hardware engineering associated with integrating medical sensors into small wearables is just one aspect of the challenge.</p>
<p>Another aspect of the challenge is inventing non-invasive or otherwise “user-friendly” sensors that can provide readings equivalent to what we, for example, currently need to draw blood to obtain. Frankly speaking, consumers will not buy a device that causes them pain or even startles them on a regular basis.</p>
<p>The regulatory hurdles (à la FDA) are another aspect of challenge, albeit one that seems promising based on the recent Apple clearances.</p>
<p>The final challenge is the software and user experience, which bring meaning to the data collected by the sensors. Sure, you can have an EKG provide readings — a line graph of electrical impulses — but how do you deliver that to your end user in a way that is not just useful, but is also intuitive and even enjoyable?</p>
<p>According to <a target="_blank" href="https://citrusbits.com/">CitrusBits</a> CEO, Harry Lee, apps are often the biggest competitive differentiator for wearables companies.</p>
<blockquote>
<p>“In the wearables space, the hardware aspect is already somewhat commoditized. Everyone, more or less, has access to the same sensors, microprocessors, and chips. Where companies like Apple, Fitbit, and CitrusBits stand apart is in their ability to design intuitive and robust apps for smartwatches and other devices, given inherent screen-size and control constraints. This is absolutely key to adoption, and we’ve already seen once-promising wearables companies such as Pebble forced to shut down in recent years, in part due to weak app offerings.”</p>
</blockquote>
<p>Looking ahead, the realization of Steve Jobs’ vision is clearly upon us: a future in which medical wearables will play a big role, perhaps even reducing the strain on existing healthcare systems.</p>
<p>It just may very well depend on a harmonious blend of computing hardware, non-invasive medical sensors, progressive regulatory oversight, and thoughtfully-crafted applications.</p>
 ]]>
                </content:encoded>
            </item>
        
    </channel>
</rss>
