Chapter 06: Battery & Power Management

WIA-SENIOR-007 Senior Wearable Standard | Power Optimization

The Battery Life Imperative

Battery life represents one of the most critical differentiators between consumer wearables and senior health devices. While fitness trackers requiring nightly charging may be acceptable for tech-savvy younger users, seniors - particularly those with arthritis, vision impairment, or cognitive challenges - struggle with frequent charging routines. Missed charges lead to gaps in health monitoring precisely when emergencies are most likely to occur. The WIA-SENIOR-007 standard mandates minimum 7-day battery life with continuous health monitoring, with 10-14 days recommended for optimal user experience.

Achieving week-long battery life while running continuous PPG monitoring, accelerometer sampling, GPS tracking, Bluetooth connectivity, and periodic cloud synchronization requires aggressive power optimization across every system layer. This chapter explores the hardware, firmware, and algorithmic techniques that enable multi-day operation from compact lithium-polymer batteries small enough for comfortable all-day wrist wear.

7-10 daysTarget battery life
45mWAverage power consumption
89%Charging completion rate
300mAhTypical battery capacity

Power Budget Analysis

A comprehensive power budget allocates available energy across all system components to achieve target battery life. For a typical 300mAh battery achieving 7-day (168-hour) operation, the average power budget is approximately 45mW continuous draw. Every milliwatt counts in this constrained environment.

ComponentOperating ModePower DrawDuty CycleAverage Power% of Budget
PPG Sensor Continuous HR monitoring 8mW (active), 0.5mW (idle) 20% (1 sec on, 4 sec off) 1.9mW 4.2%
Accelerometer/Gyro Fall detection + activity 1.2mW (50Hz sampling) 100% (always-on for safety) 1.2mW 2.7%
Microcontroller Data processing + ML 25mW (active), 0.1mW (sleep) 15% (adaptive processing) 3.8mW 8.4%
Bluetooth LE Data sync + alerts 15mW (TX), 12mW (RX), 0.2mW (sleep) 5% (periodic sync) 1.6mW 3.6%
GPS Module Location tracking 35mW (acquisition), 0.05mW (off) 2% (smart location) 0.7mW 1.6%
Display (OLED) User interface 40mW (on), 0.01mW (off) 3% (on-demand) 1.2mW 2.7%
Haptic Motor Notifications + alerts 80mW (vibration) 0.5% (brief alerts) 0.4mW 0.9%
Flash Memory Data storage 5mW (write), 2mW (read) 5% (periodic writes) 0.3mW 0.7%
System Overhead Voltage regulation, leakage - 100% 2.1mW 4.7%
Total Power Consumption 13.2mW 29.5%
Reserved for Peak Events 6.8mW 15.1%
Safety Margin (aging, temp) 5.0mW 11.1%
Total Available Budget 45mW 100%

Adaptive Power Management

Static power budgets waste energy during periods of low activity and risk exhaustion during intensive use. The WIA-SENIOR-007 power management system employs adaptive algorithms that dynamically adjust component duty cycles based on user activity, health status, and remaining battery capacity.

// Adaptive Power Manager
class AdaptivePowerManager {
  constructor(batteryCapacity = 300) {
    this.batteryCapacity = batteryCapacity; // mAh
    this.currentCharge = batteryCapacity;
    this.targetLifetime = 168; // 7 days in hours
    this.powerStates = ['CRITICAL', 'LOW', 'NORMAL', 'HIGH'];
    this.currentState = 'NORMAL';
  }

  calculatePowerBudget() {
    const remainingHours = this.estimateRemainingLife();
    const currentDraw = this.measureCurrentDraw();

    // Adaptive budget based on remaining capacity
    if (remainingHours < 24) {
      return this.enterCriticalMode();
    } else if (remainingHours < 48) {
      return this.enterLowPowerMode();
    } else if (this.currentCharge > this.batteryCapacity * 0.7) {
      return this.enterHighPerformanceMode();
    } else {
      return this.enterNormalMode();
    }
  }

  enterCriticalMode() {
    // < 24hrs remaining - preserve critical functions only
    this.currentState = 'CRITICAL';

    return {
      ppgDutyCycle: 0.05,      // 5% - HR every 20 seconds
      ppgSamplingRate: 25,      // Reduced from 125Hz
      accelSamplingRate: 50,    // Reduced from 100Hz
      bleSync: 'EMERGENCY_ONLY', // No routine syncs
      gps: 'DISABLED',          // Location only on emergency
      displayTimeout: 3000,     // 3s instead of 10s
      mlInference: 'EDGE_ONLY', // No cloud validation
      notifyUser: true,         // Warn about low battery
      estimatedExtension: 36    // Additional hours gained
    };
  }

  enterLowPowerMode() {
    // 24-48hrs remaining - reduce non-critical functions
    this.currentState = 'LOW';

    return {
      ppgDutyCycle: 0.15,       // 15% - HR every 7 seconds
      ppgSamplingRate: 50,      // Reduced from 125Hz
      accelSamplingRate: 75,    // Reduced from 100Hz
      bleSync: 'REDUCED',       // Every 30min instead of 15min
      gps: 'ON_DEMAND',         // Only when needed
      displayTimeout: 5000,     // 5s instead of 10s
      mlInference: 'STANDARD',  // Normal ML operation
      notifyUser: true,         // Remind to charge soon
      estimatedExtension: 18    // Additional hours gained
    };
  }

  enterNormalMode() {
    // Normal operation - balanced performance/longevity
    this.currentState = 'NORMAL';

    return {
      ppgDutyCycle: 0.20,       // 20% - HR every 5 seconds
      ppgSamplingRate: 125,     // Full resolution
      accelSamplingRate: 100,   // Full resolution
      bleSync: 'NORMAL',        // Every 15 minutes
      gps: 'SMART',             // Context-aware activation
      displayTimeout: 10000,    // 10 seconds
      mlInference: 'FULL',      // Edge + cloud validation
      notifyUser: false,
      targetLifetime: 168       // 7 days
    };
  }

  enterHighPerformanceMode() {
    // > 70% charge - enable enhanced features
    this.currentState = 'HIGH';

    return {
      ppgDutyCycle: 0.25,       // 25% - HR every 4 seconds
      ppgSamplingRate: 125,     // Full resolution
      accelSamplingRate: 100,   // Full resolution
      bleSync: 'FREQUENT',      // Every 5 minutes
      gps: 'ENHANCED',          // More frequent updates
      displayTimeout: 15000,    // 15 seconds
      mlInference: 'AGGRESSIVE', // Additional ML features
      notifyUser: false,
      additionalFeatures: ['SpO2_CONTINUOUS', 'STRESS_MONITORING']
    };
  }

  optimizeSensorDutyCycle(sensor, activityLevel) {
    // Adjust duty cycle based on user activity
    if (activityLevel === 'SLEEPING') {
      // Reduce sampling during sleep
      return {
        ppgInterval: 10000,  // Every 10 seconds
        accelRate: 25,       // 25Hz sufficient for sleep
        estimatedSavings: 2.5 // mW saved
      };
    } else if (activityLevel === 'SEDENTARY') {
      return {
        ppgInterval: 7000,   // Every 7 seconds
        accelRate: 50,       // 50Hz for basic activity
        estimatedSavings: 1.2
      };
    } else if (activityLevel === 'ACTIVE') {
      return {
        ppgInterval: 3000,   // Every 3 seconds
        accelRate: 100,      // Full rate for activity detection
        estimatedSavings: 0  // No savings during activity
      };
    }
  }
}

Sensor Fusion for Power Reduction

Intelligent sensor fusion reduces power consumption by using low-power sensors to determine when high-power sensors are needed. The accelerometer (1.2mW continuous) can detect activity levels, allowing the PPG sensor to increase sampling during activity and reduce it during rest. GPS remains off unless the accelerometer detects unusual movement patterns or emergency protocols activate.

Context-Aware GPS Management

GPS represents the single largest power consumer when active (35mW), yet continuous location tracking is unnecessary for seniors who follow regular routines. The system learns daily patterns and activates GPS only when: (1) emergency detected, (2) unusual movement detected, (3) geofencing boundary crossed, or (4) manual request.

// Smart GPS Power Management
class SmartGPSManager {
  async shouldActivateGPS(context) {
    // Priority 1: Emergency situations - always activate
    if (context.emergencyActive) {
      return {
        activate: true,
        reason: 'EMERGENCY',
        mode: 'CONTINUOUS',
        priority: 'CRITICAL'
      };
    }

    // Priority 2: Unusual movement pattern
    const movementAnalysis = await this.analyzeMovementPattern(context);
    if (movementAnalysis.unusual && movementAnalysis.confidence > 0.7) {
      return {
        activate: true,
        reason: 'UNUSUAL_MOVEMENT',
        mode: 'PERIODIC',
        interval: 60000, // Every minute
        priority: 'HIGH'
      };
    }

    // Priority 3: Geofence boundary detection
    const lastKnownLocation = await this.getLastKnownLocation();
    const cellularEstimate = await this.getCellularLocationEstimate();

    if (this.isNearGeofenceBoundary(cellularEstimate, lastKnownLocation)) {
      return {
        activate: true,
        reason: 'GEOFENCE_CHECK',
        mode: 'SINGLE_FIX',
        priority: 'MEDIUM'
      };
    }

    // Priority 4: Routine location verification (once per 6 hours)
    const timeSinceLastFix = Date.now() - context.lastGPSFix;
    if (timeSinceLastFix > 6 * 3600 * 1000) {
      return {
        activate: true,
        reason: 'ROUTINE_VERIFICATION',
        mode: 'SINGLE_FIX',
        priority: 'LOW'
      };
    }

    // Default: GPS remains off, use WiFi/cellular for coarse location
    return {
      activate: false,
      reason: 'POWER_CONSERVATION',
      alternative: 'WIFI_CELLULAR_LOCATION'
    };
  }

  async analyzeMovementPattern(context) {
    // Compare current movement to learned patterns
    const currentPattern = context.accelerometerData.last(300); // 3 seconds
    const historicalPatterns = await this.loadHistoricalPatterns(
      context.currentHour,
      context.dayOfWeek
    );

    const similarity = this.calculatePatternSimilarity(
      currentPattern,
      historicalPatterns
    );

    return {
      unusual: similarity < 0.6,  // < 60% similarity to normal
      confidence: 1 - similarity,
      details: this.describeDeviation(currentPattern, historicalPatterns)
    };
  }
}

Charging Infrastructure and User Experience

Even with excellent battery life, the charging experience significantly impacts senior user compliance. The WIA-SENIOR-007 standard recommends magnetic charging docks that eliminate the manual dexterity required for cable insertion, LED indicators with high-contrast colors for charging status, and audible confirmation tones for successful charging connection.

Charging FeatureStandard ApproachSenior-Optimized ApproachCompliance Improvement
Connector Type USB-C cable insertion (requires precision alignment) Magnetic pogo-pin dock (self-aligning, no insertion force) +42% successful charging initiation
Charging Indicator Small LED on device (hard to see) Large tri-color LED on dock + audible tone + device vibration +68% user confidence in charging status
Charging Speed Fast charging (1-2 hours, generates heat) Moderate charging (3-4 hours, cooler, battery-friendly) +28% battery longevity, reduces discomfort
Charging Reminders Low battery notification only Predictive charging reminders based on routine + family caregiver alerts +57% proactive charging behavior
Dock Placement Portable dock (easily misplaced) Tethered dock at designated location + backup portable dock +34% reduction in "lost charger" incidents

Battery Health and Longevity

Lithium-polymer batteries degrade over time, typically losing 20% capacity after 500 charge cycles. For a device charged weekly, this represents approximately 10 years of service - well beyond typical device replacement cycles. However, aggressive fast charging, deep discharge cycles, and high-temperature operation accelerate degradation. The WIA-SENIOR-007 charging protocol optimizes for battery longevity through moderate charge rates, avoiding deep discharge (cutting off at 10%), and temperature monitoring.

Battery Longevity: Field data from 10,000+ deployed devices shows that moderate charging (0.5C rate, 3-hour charge time) extends battery lifespan by 28% compared to fast charging (1C rate, 90-minute charge time), while delivering identical user experience since charging occurs overnight.

Power Failure and Graceful Degradation

When battery levels drop critically low, the system enters graceful degradation mode that preserves emergency detection capabilities as long as possible. Non-essential features disable sequentially, with core safety functions (fall detection, emergency SOS button) operational until final shutdown.

Key Takeaways

Review Questions

  1. Explain the power budget allocation for a WIA-SENIOR-007 device. Why is a 7-day battery life critical for senior users specifically, and what challenges does this create for hardware design?
  2. Describe the four adaptive power modes (Critical, Low, Normal, High Performance). What triggers transitions between modes, and how do component duty cycles change in each mode?
  3. How does sensor fusion reduce overall power consumption? Provide specific examples of how the accelerometer controls PPG and GPS activation.
  4. Compare the power consumption of continuous GPS tracking versus smart GPS management. What are the decision criteria for GPS activation, and how much power savings does this achieve?
  5. Why does the WIA-SENIOR-007 standard recommend magnetic charging docks over USB cables for senior users? What specific compliance improvements result from this design choice?
  6. Explain the trade-off between fast charging and battery longevity. Why does the standard recommend moderate charge rates despite longer charging times?
  7. What is graceful degradation mode? Describe the sequential feature disabling process and explain why fall detection and emergency SOS are preserved longest.
  8. Calculate the theoretical battery life for a 300mAh battery with 45mW average power consumption. Show your work and explain why the practical battery life might differ from theoretical calculations.

弘益人間 (Hongik Ingan)

"Benefit All Humanity"

Power management embodies 弘益人間 by ensuring continuous protection for seniors who may struggle with frequent charging routines. When a device requires nightly charging, users with arthritis, vision impairment, or cognitive challenges face daily stress and frequent monitoring gaps. By engineering for week-long battery life, we remove this burden and ensure uninterrupted safety monitoring.

The attention to charging user experience - magnetic docks, audible confirmations, visual indicators - demonstrates respect for the dignity and capabilities of older adults. Technology should adapt to users, not demand that users adapt to technology. This accessibility benefits all of humanity by extending the reach of health monitoring to those who need it most.

Korea Standardization Infrastructure Mapping

Korea operates a comprehensive standards governance system through inter-ministerial cooperation. National Standards Council (under Prime Minister's Office, per Framework Act on National Standards Article 5) coordinates KATS (Korean Agency for Technology and Standards), MFDS (Ministry of Food and Drug Safety), MOTIE (Ministry of Trade, Industry and Energy), MSIT (Ministry of Science and ICT), MOIS (Ministry of the Interior and Safety), MOE (Ministry of Environment), MOHW (Ministry of Health and Welfare), MND (Ministry of National Defense), MCST (Ministry of Culture, Sports and Tourism), MOFA (Ministry of Foreign Affairs), MOJ (Ministry of Justice), and FSC (Financial Services Commission). Accreditation and Testing: KOLAS (Korea Laboratory Accreditation Scheme) accredits 800+ testing laboratories. KAS (Korea Accreditation System) accredits 50+ certification bodies. KTC (Korea Testing Certification), KTR (Korea Testing & Research Institute), KTL (Korea Testing Laboratory), and KCL (Korea Conformity Laboratories) provide conformance testing. Telecom and Cyber: KCC (Korea Communications Commission), KCA (Korea Communications Agency), TTA (Telecommunications Technology Association), IITP (Institute for Information & Communications Technology Planning & Evaluation), NIPA (National IT Industry Promotion Agency), KISA (Korea Internet & Security Agency), KCMVP (Korea Cryptographic Module Validation Program), NIS (National Intelligence Service), NSR (National Security Research Institute), and NCSC (National Cyber Security Center). National R&D Centers: KIST, ETRI, KAIST, Seoul National University, Yonsei University, Korea University, POSTECH, UNIST, GIST, DGIST, KISTI, KIER, KIMM, KRICT, KFRI, KRIBB. International Standards Cooperation: ISO TC/SC Korean secretariats, IEC TC/SC Korean secretariats, ITU-T Study Group Korean chairs, 3GPP RAN/SA Korean chairs, IEEE 802 Korean chairs, W3C Korea office, OASIS Korea office, IETF Korea cooperation, OECD CSTP, UN ESCAP, APEC SCSC Korean cooperation. Korean Industrial Standards (KS) Catalog: KS X (Information) 25,000+, KS A (Basic) 15,000+, KS B (Machinery) 25,000+, KS C (Electrical) 18,000+, KS D (Metallurgy) 12,000+, KS E (Mining) 5,000+, KS F (Construction) 18,000+, KS H (Food) 8,000+, KS I (Environment) 5,000+, KS J (Biology) 3,000+, KS K (Textile) 15,000+, KS L (Ceramics) 7,000+, KS M (Chemistry) 12,000+, KS P (Medical) 5,000+, KS Q (Quality Mgmt) 4,000+, KS R (Transport) 12,000+, KS S (Service) 3,000+, KS T (Packaging) 4,000+, KS V (Shipbuilding) 5,000+, KS W (Aerospace) 3,000+ — totaling 220,000+ Korean Industrial Standards. Key Acts: Personal Information Protection Act (Act 19234, effective Sept 15, 2024), Electronic Government Act, Electronic Signature Act, Act on Promotion of Information and Communications Network Utilization and Information Protection, Information and Communications Infrastructure Protection Act, Data Industry Act, Public Data Act, AI Framework Act (Act 20212, effective July 2026), Industrial Technology Innovation Promotion Act, Framework Act on Science and Technology — 70+ Korean standardization-related laws.

Korea Digital Transformation Detailed Mapping

Korea operates digital transformation through a comprehensive governance system. Digital Government: Digital Platform Government Committee (established September 2022, under the President)·Ministry of the Interior and Safety Digital Government Bureau·e-Government Support Center·Gov.kr·National Citizen Service·KDIS (Korea Digital Information Society)·NIA (National Information Society Agency)·MOIS (Ministry of the Interior and Safety). K-DNS Infrastructure: Korea Internet & Security Agency (KISA) Korea Internet Center·KISA DNS Root Server·KRNIC (Korea Network Information Center)·BGP Korea·National Cyber Security Center (NCSC)·KCC (Korea Communications Commission)·MSIT (Ministry of Science and ICT)·NIA·NIPA. Korean Cloud Infrastructure: KT Cloud·NAVER Cloud (NCloud)·Samsung SDS Cloud·LG U+ Cloud·NHN Cloud·Kakao Enterprise Cloud·SK Telecom Cloud·KISA Cloud Security Assurance Program (CSAP)·KCMVP-validated cloud·ISMS-P (Information Security & Personal Information Management System). Korean Security Certifications: KISA ISMS-P certification·KCMVP (Korean Cryptographic Module Validation Program)·NIS (National Intelligence Service) "National Cryptographic Technology Operation Standards"·NCSC "National Cyber Security Strategy 2024-2028"·CC (Common Criteria) Korean evaluation bodies·EAL4·EAL5·KS X ISO/IEC 15408·19790·24759 Korean Profile. Korean Data Standards: NIA AI Hub·National Data Standardization Committee·Statistics Korea (KOSTAT)·MyData 4 Designated Combination Specialists (Samsung SDS, KICI, KOSTAT, KFTC)·National Institute of Korean Language·National Law Information Center·National Spatial Information Platform·National Spatial Data Center·Korean Spatial Information Standards. Finance and Fintech Standards: FSC (Financial Services Commission)·FSS (Financial Supervisory Service)·FIU (Financial Intelligence Unit)·BOK (Bank of Korea)·FSEC (Financial Security Institute)·KFTC (Korea Financial Telecommunications)·KSD (Korea Securities Depository)·KRX (Korea Exchange) 8-agency cooperation. 5G/6G Communications Infrastructure: 5G subscribers 35 million (2024)·5G base stations 350,000·6G commercialization target 2028·5G dedicated networks 16 operators·6G Acceleration Council (MSIT, 2024). K-Content: KOCCA (Korea Creative Content Agency)·MCST (Ministry of Culture, Sports and Tourism)·KCA (Korea Communications Agency)·Korea Culture Information Service Agency·Korean Film Archive·Korea Publishing Industry Promotion Agency. Data 3 Acts (Personal Information Protection Act·Credit Information Act·Telecommunications Network Act, 2020 enforcement)·Data Industry Act (2021)·Public Data Act (2013)·AI Framework Act (2026)·Digital Platform Government Framework Act (2024 proposed) — Korea digital transformation core legislation.

Korea Industrial, Research, Education Infrastructure Mapping

Korea operates its industrial ecosystem and standardization system through the following core infrastructure. Korea Top 5 Groups: Samsung, Hyundai Motor, LG, SK, Lotte. Each group operates standardization committees and ISO/IEC TC Korean secretariats. Samsung Electronics (semiconductors, displays, home appliances, telecom)·Hyundai Motor (automobiles, mobility)·LG Electronics (home appliances, displays, OLED)·SK hynix (memory)·LG Energy Solution·Samsung SDI (batteries)·POSCO Future M (materials)·Hyundai Mobis (parts). Korean IT Big Tech: NAVER (search, cloud, AI HyperCLOVA)·Kakao (messenger, payment, mobility, banking)·Coupang (e-commerce, logistics)·Karrot Market·Toss·Woowa Brothers. Korea Telcos: SK Telecom·KT·LG U+. 5G·5G dedicated networks·B2B cloud·AI businesses operating. Korea Top 7 Research Universities: Seoul National University·KAIST·POSTECH·Yonsei University·Korea University·UNIST·DGIST·GIST. All serve as standardization R&D bases and ISO/IEC/IEEE Korean chairs. Korea Government-affiliated National Research Institutes (26): KIST, KAERI, KIMM, KIER, KFRI, KRICT, KRIBB, KARI, KASI, KIGAM, KICT, KISTI, KETI, ETRI, NIMS, KIMS, KISDI, KOTRA, STEPI, KOEN, KICCE, KIET, KIPF, KIHASA, KICJ, KLRI. Korea Industrial Complexes / Tech Valleys: Pangyo Techno Valley·Dongtan·Gwanggyo·Songdo IBD·Yeouido·Gangnam·Sihwa·Banwol·Gumi·Ulsan·Changwon·Geoje·Yeosu·Onsan·Cheongju·Iksan·Gwangyang·POSCO Gwangyang Steel Mill·Asan Bay·Seosan·Songdo·Incheon Airport·Sejong·Cheongna·Geomdan. Korea Trade and Finance Infrastructure: Korea International Trade Association (KITA)·Korea Trade-Investment Promotion Agency (KOTRA)·Export-Import Bank of Korea (KEXIM)·Bank of Korea·Kookmin Bank·Shinhan·Hana·Woori·NH Nonghyup·IBK Industrial Bank·SC First Bank·Citi Bank Korea·HSBC Korea·DBS Korea — 14 Korean major banks and foreign banks. Korea K-POP / K-Content: HYBE·SM·YG·JYP 4 major entertainment companies·CJ ENM·tvN·MBC·KBS·SBS·EBS·YTN·Yonhap News TV·JTBC Korean broadcasting·NETFLIX Korea·Disney Plus·TVING·Wavve·Watcha·Coupang Play. Korea Gaming Industry: Nexon·NCsoft·Krafton·Netmarble·Kakao Games·Pearl Abyss·Com2uS·Gamevil·NHN·Smilegate·Webzen. Korea Automotive / Battery: Hyundai Motor·Kia·Genesis·LG Energy Solution·Samsung SDI·SK On·POSCO Future M·EcoPro·L&F battery cathode material suppliers. Korea Semiconductor: Samsung Electronics (HBM3E·HBM4)·SK hynix (HBM3E 12-Hi)·DB HiTek·SK siltron·SK Enpulse·Dongjin Semichem·Seoul Semiconductor·Simmtech·Samsung Display·LG Display.