Table of Contents
How Smartwatches Measure Heart Rate: Sensors Explained for Kids
Your smartwatch shines green light into your wrist to measure heart rate using photoplethysmography — the same optical physics used in hospital pulse oximeters. Here's how it works and what to teach kids.
Your kid watched you glance at your smartwatch after a run and asked, “How does it know your heart rate if it’s just sitting on your wrist?” You said something about sensors and kept walking.
That was actually a great physics question, and the answer connects optics, biology, and signal processing in a way most adults have never been taught. The green light on the back of your Apple Watch or Fitbit isn’t decorative. It’s doing something genuinely clever — something that was borrowed from hospital technology and miniaturized down to a wristband.
Here’s what it’s actually measuring, how it works, and why your kid learning the physics behind it will serve them in medicine, engineering, or any field that involves biological sensors.
Why Smartwatch Health Sensors Are More Interesting Than They Look
The global smartwatch market reached $46 billion in 2023 (IDC, 2023). Heart rate monitoring is the most-used health feature. But most wearers — and most parents — have no idea how the measurement is made.
This matters for a few reasons. First, accuracy: knowing how the measurement works tells you when to trust it and when not to (tight fit matters, motion artifact degrades the signal, dark skin tones historically caused underperformance in early algorithms — a documented bias now being corrected). Second, the underlying technology is the same used in medical-grade pulse oximeters. Understanding one means understanding both. Third, these sensors are becoming clinical: Apple Watch’s ECG feature is FDA-cleared for detecting atrial fibrillation. The line between wearable and medical device is blurring fast.
Explained Like You’re 5: The Flashlight and the Sponge
Your heart pumps blood through your body in pulses. Every beat pushes a wave of blood through your arteries, including the tiny capillaries right under your skin.
Now imagine pressing a flashlight against a thin balloon filled with red water. When the balloon is more full (more water = more blood), less light passes through. When it’s less full, more light gets through.
A smartwatch does something similar, but using light reflection instead of transmission. It shines a green LED into your wrist. Blood absorbs green light very efficiently. When your heart beats, more blood floods into your wrist’s capillaries — and slightly more green light is absorbed (less reflected back to the sensor). In between beats, capillary blood volume drops slightly — more light reflects back.
The sensor measures that tiny fluctuation in reflected light intensity, hundreds of times per second. The pattern of peaks and valleys is your heart rate. This technique is called photoplethysmography (PPG — “photo” meaning light, “plethysmo” meaning volume, “graphy” meaning measurement).
How Photoplethysmography Actually Works
The sensor on the back of your smartwatch contains three components: one or more green LEDs, a photodetector (a light-sensitive semiconductor that converts incoming light to electrical current), and an analog-to-digital converter that turns the photodetector’s current into digital data the processor can analyze.
Why green? Oxyhemoglobin (oxygenated blood) absorbs green light (wavelength ~530 nm) very strongly — much more so than surrounding tissue. This maximizes the contrast between the signal (blood volume change) and the background noise (skin, fat, muscle). Red and infrared light are used for blood oxygen (SpO2) measurements using a slightly different technique.
The raw signal from the photodetector is messy. Motion — walking, wrist gestures, typing — creates noise that can be larger than the actual heartbeat signal. A typical resting heart rate produces about a 1–3% change in reflected light. A brisk arm swing can produce a 10–20% change. Separating the signal from the motion artifact requires digital signal processing: bandpass filters that pass only the frequency range of human heart rates (0.5–3.5 Hz, roughly 30–210 BPM), accelerometer data fusion (the watch’s accelerometer measures motion and helps subtract it from the optical signal), and sometimes machine learning algorithms trained on thousands of labeled exercise recordings.
Blood oxygen (SpO2) uses the same optical principle but with red (~660 nm) and infrared (~940 nm) light. Oxygenated and deoxygenated blood absorb these two wavelengths differently. The ratio of red to infrared absorption tells the algorithm what percentage of hemoglobin is carrying oxygen. Hospital pulse oximeters clamp to your finger and measure transmission; smartwatch SpO2 sensors measure reflection with less accuracy (typically ±2–4% vs. ±1–2% for finger clip devices).
ECG (Electrocardiography) on Apple Watch and some Samsung devices is fundamentally different from PPG. It measures actual electrical signals from the heart, using electrodes on the watch case back and the digital crown. When you touch the crown, you complete a circuit across your chest. This produces a single-lead ECG — not as diagnostically comprehensive as a 12-lead hospital ECG, but sufficient to detect certain arrhythmias like atrial fibrillation. The FDA has cleared Apple Watch ECG as a Class II medical device.
Smartwatch Health Sensor Comparison Table
| Sensor | What It Measures | Method | Typical Accuracy | FDA Status |
|---|---|---|---|---|
| PPG (heart rate) | Heart rate in BPM | Optical — green LED reflection | ±1–2 BPM at rest; worse during exercise | Cleared as Class II device (Apple Watch) |
| PPG (SpO2) | Blood oxygen % | Optical — red + infrared LED ratio | ±2–4% (lower accuracy than finger clip) | Cleared for wellness; not medical diagnosis |
| ECG | Electrical heart signal | Two-electrode circuit through body | Single-lead; detects AFib, some arrhythmias | FDA-cleared for AFib detection (Apple, Samsung) |
| Skin temperature | Surface temperature | Thermistor or infrared sensor | ±0.1–0.5°C (relative trends, not absolute) | Not currently cleared for clinical use |
| Galvanic skin response (GSR) | Stress/arousal (sweat) | Electrical impedance of skin | Correlates with arousal; not a clinical metric | Not cleared for clinical use |
| Accelerometer (steps/activity) | Movement, steps, sleep | 3-axis MEMS accelerometer | Steps: ±10–15%; sleep staging: research-grade only | Not a medical device |
Why Kids Should Know This
Biomedical engineering is one of the fastest-growing engineering fields. The U.S. Bureau of Labor Statistics projects 10% growth in biomedical engineering roles through 2031, faster than the average for all occupations. But the skills shortage is real — engineers who understand both the biology and the electronics of health sensors are rare and valuable.
More broadly, health sensors are becoming part of infrastructure. Continuous glucose monitors, cardiac monitors, neural interfaces, and eventually drug delivery systems will all use optical, electrical, or chemical sensors embedded in the body or worn on it. Kids who understand the operating principles of today’s smartwatch sensors are building intuition for tomorrow’s medical devices.
This also connects to AI: the machine learning models that detect AFib in Apple Watch were trained on millions of ECG recordings and validated in clinical studies (Perez et al., 2019, New England Journal of Medicine). The same pipeline — sensor data → signal processing → ML model → clinical output — will define biomedical AI for the next 30 years.
For broader context on how hardware knowledge shapes engineering careers, see the article on why kids who understand hardware will lead in the AI era.
How to Teach Your Kid About Health Sensors
Ages 5–8: Make a Simple Pulse Detector
This works surprisingly well. Have your child press their index finger gently against a small LED flashlight. In a darkened room, hold the finger up to the light. You can often see the slight redness change with each heartbeat as blood pulses through the fingertip. This is transmission-mode PPG — the same principle as a hospital pulse oximeter, just with a flashlight instead of a calibrated sensor.
Time it: count the color changes for 15 seconds, multiply by 4. Compare to their resting heart rate taken by counting pulse at the wrist. How close are the numbers?
Ages 9–12: Measure Your Own Heart Rate with Light
A Raspberry Pi with a simple PPG sensor module (MAX30102 or SFH7050 — under $10) lets kids build a working heart rate monitor. The sensor module handles the LED and photodetector; the Pi reads the data via I2C. Free Python libraries (heartpy) handle the signal processing.
Have your child measure their heart rate sitting, after 50 jumping jacks, and 5 minutes later. Plot the data. Ask: “Why is the signal noisy during exercise?” (Motion artifact.) “What would you do to fix that?” (Add accelerometer data, improve filtering.)
Ages 13+: Study the Bias Problem in Optical Sensors
Early PPG sensors in smartwatches were validated primarily on lighter-skinned populations. Melanin — the pigment that gives skin its color — also absorbs green light. This caused clinically meaningful underperformance in darker-skinned users, particularly for SpO2. A 2021 study in JAMA Internal Medicine (Fawzy et al.) found that pulse oximeters missed hypoxemia significantly more often in Black patients than white patients during the COVID-19 pandemic.
Have your teen read the original research and discuss: What would you change in the sensor design? (Different wavelengths. Validation studies across diverse populations. Adaptive algorithms.) This connects engineering, ethics, and public health in a single case study.
The Angle That Surprises Most Parents
Heart rate accuracy on smartwatches is good enough for most uses — but “most uses” doesn’t include medical decisions. A 2019 study in npj Digital Medicine (Benedetto et al.) found that consumer PPG heart rate accuracy degrades significantly during moderate to high-intensity exercise, precisely when accurate monitoring might matter most. Motion artifact, wrist positioning, and skin-sensor contact all affect results.
This isn’t a reason to distrust wearables. It’s a reason to understand what they’re measuring and what they’re not. A smartwatch that says your SpO2 is 94% does not mean you need to go to the emergency room — or that you don’t. It means you should seek clinical confirmation for any medically significant reading. The FDA’s clearances for Apple Watch’s ECG and AFib detection are narrow and specific — not blanket endorsements of all health data from the device.
Kids who understand why sensors have limitations are kids who will use technology critically rather than blindly. That’s a more valuable skill than knowing how to navigate any particular app.
What to Watch for Over the Next Few Months
Month one: Can your child explain what the green light on a smartwatch is actually doing? Not “measuring heartbeat” — but why green light specifically, and what the sensor is actually detecting.
Month three: Do they ask about the accuracy of health measurements they encounter? A friend’s sleep tracker. A school nurse’s pulse ox. That skeptical curiosity — “how does this actually work?” — is the marker you’re looking for.
For older kids: Can they explain the difference between PPG heart rate and ECG? That distinction — optical (volume) vs. electrical (signal) — represents genuine systems-level understanding.
FAQ: Smartwatch Health Sensors for Parents
Are smartwatch heart rate readings accurate enough to rely on?
For resting heart rate and general activity tracking: yes, ±1–3 BPM in most conditions. For high-intensity exercise: accuracy degrades due to motion artifact. For medical decisions (is my heart rate concerning?): use them as a starting point, not a conclusion — consult a physician for clinically significant readings.
Can my kid wear a smartwatch for health monitoring?
Children’s smartwatches (Apple Watch SE, Garmin Vivofit Jr.) are safe to wear. The LED intensities in consumer wearables are far below levels that could cause eye or skin damage. However, children’s physiological data is not what these algorithms were trained on, so accuracy claims apply primarily to adults.
What is the difference between heart rate and heart rate variability?
Heart rate is beats per minute — a single average number. Heart rate variability (HRV) is the variation in time between individual heartbeats. High HRV generally indicates good cardiovascular fitness and autonomic nervous system health. Many smartwatches now track HRV during sleep. It’s a more sensitive indicator of recovery and stress than heart rate alone.
How does Apple Watch detect atrial fibrillation?
The Watch takes intermittent background ECG readings using the same circuit as the active ECG feature. An on-device neural network analyzes the rhythm for signs of AFib (irregular, unpatterned heartbeat). If AFib is detected across multiple readings, the user is notified. The feature was validated in the Apple Heart Study, published in New England Journal of Medicine (2019), involving over 400,000 participants.
Do smartwatches work equally well on all skin tones?
Early-generation devices had documented accuracy issues on darker skin tones due to higher melanin absorption of green light. Manufacturers have improved algorithms and added longer-wavelength LEDs (red, infrared) to address this. The issue has not been fully resolved, and independent testing still shows performance variation. The FDA has begun requiring race/ethnicity-diverse validation for new pulse oximeter submissions.
About the author Ricky Flores is the founder of HiWave Makers and an electrical engineer with 15+ years of experience building consumer technology at Apple, Samsung, and Texas Instruments. He writes about how kids learn to build, think, and create in a tech-saturated world. Read more at hiwavemakers.com.
Sources
- Perez, M.V., et al. (2019). “Large-Scale Assessment of a Smartwatch to Identify Atrial Fibrillation.” New England Journal of Medicine, 381, 1909–1917. https://doi.org/10.1056/NEJMoa1901183
- Benedetto, S., et al. (2019). “Wrist-worn devices for the measurement of heart rate and energy expenditure.” npj Digital Medicine, 2, 65. https://doi.org/10.1038/s41746-019-0160-9
- Fawzy, A., et al. (2021). “Racial and Ethnic Discrepancy in Pulse Oximetry and Delayed Identification of Treatment Eligibility Among Patients With COVID-19.” JAMA Internal Medicine, 182(7), 730–738. https://doi.org/10.1001/jamainternmed.2022.1906
- Tamura, T., et al. (2014). “Wearable Photoplethysmographic Sensors — Past and Present.” Electronics, 3(2), 282–302. https://doi.org/10.3390/electronics3020282
- U.S. Bureau of Labor Statistics. (2023). “Occupational Outlook Handbook: Biomedical Engineers.” https://www.bls.gov/ooh/architecture-and-engineering/biomedical-engineers.htm
- IDC Research. (2023). “Worldwide Smartwatch Market Quarterly Tracker.” IDC Report. https://www.idc.com/tracker/showproductinfo.jsp?prod_id=1835
- FDA. (2022). “De Novo Request Summary — Apple Watch ECG.” FDA 510(k) Database. https://www.accessdata.fda.gov/scripts/cdrh/cfdocs/cfpmn/pmn.cfm