Why Smart Glasses Need a Battery Revolution
Smart glasses like the Ray-Ban Meta and Oakley Meta Vanguards are packed with cameras, speakers, AI workloads, and even displays—all squeezed into the temple arms. Traditional pouch cells, used in most phones and laptops, simply can't be reshaped to fit such narrow spaces. Their folds waste volume, tolerances eat into precious millimeters, and at small sizes they struggle to deliver peak power for multitasking.
Meta's engineers knew they needed a battery that could claim every micron of space—rigid, precise, and shaped to the product. That's where steel-can cells come in, but not the ones you'd find in power tools. They had to push the boundaries to create batteries as narrow as 7mm, thinner than an adult's pinky finger.
The Electrode Architecture Breakthrough
Traditional steel-can cells use a wound 'jelly roll' of electrode material. Meta replaced that with die-cut stacked layers, similar to wiring small resistors in parallel. This dramatically lowers impedance, which is crucial when the device demands peak power—like when you're recording a video while asking the AI a question. Lower impedance means fewer brownouts and a more responsive device.
Tolerances That Matter
A steel-can cell holds its shape to roughly 100 microns. On a 10mm-wide battery, that gives back real usable volume, translating directly into additional energy density and runtime. It's a small detail that makes a big difference when every millimeter counts.

From Gen 1 to Gen 2: Real-World Gains
From Gen 1 to Gen 2, the Meta Ray-Ban's cell capacity grew from 160 mAh to 210 mAh—a 30% bump. Yet the product shipped with claims of double the runtime. How? The chemistry didn't change. The gains came from system-level efficiency improvements: better power management, tighter firmware control, and a form factor that allowed for a larger cell.
Dual-Battery System Complexity
The Oakley Meta Vanguards feature a battery in each temple arm, introducing a systems puzzle. The cells are symmetric, but the electronic loads aren't split evenly between the two sides. This creates cross-charging risks and sequencing complexity at boot and shutdown. Engineers had to synchronize the batteries carefully to avoid issues.
The Display Challenge
The Meta Ray-Ban Display glasses introduced the most demanding power profile yet. Its screen draws sustained power rather than short bursts, requiring a 248 mAh steel-can cell—the largest in Meta's lineup. This design pushes the limits of what's possible in such a small form factor.
# Conceptual example: Estimating battery runtime for smart glasses
# This is a simplified model to illustrate the engineering trade-offs
def estimate_runtime(capacity_mah, avg_power_mw, voltage=3.7):
"""Calculate runtime in hours based on battery capacity and average power draw."""
energy_wh = (capacity_mah / 1000) * voltage
runtime_hours = energy_wh / (avg_power_mw / 1000)
return runtime_hours
# Example: Gen 1 vs Gen 2
runtime_gen1 = estimate_runtime(160, 500) # ~1.18 hours
runtime_gen2 = estimate_runtime(210, 400) # ~1.94 hours
print(f"Gen 1 runtime: {runtime_gen1:.2f} hours")
print(f"Gen 2 runtime: {runtime_gen2:.2f} hours")
Note: Actual runtime depends on many factors, but this shows how capacity and power efficiency interact.

Limitations and Considerations
While steel-can batteries offer significant advantages, they're not without trade-offs. The rigid shape means they can't be molded to every device, and manufacturing at such narrow widths is complex and costly. Additionally, dual-battery systems add engineering complexity, requiring careful synchronization to prevent cross-charging and ensure safe operation.
Next Steps for Learning
If you're interested in battery technology for wearables, consider exploring:
- Power management ICs: Learn how to design efficient power delivery systems.
- Embedded firmware: Understand how software controls battery charging and discharging.
- Mechanical engineering: Study how to integrate batteries into tight form factors.
For more on the latest in AI and hardware, check out our React Conf 2025 takeaways and Messenger's privacy-preserving browsing protection.

Conclusion: The Future of Wearable Power
Meta's ultra-narrow steel-can battery technology is a game-changer for smart glasses and other wearables. By rethinking electrode architecture and tolerances, they've achieved higher energy density and runtime without compromising form factor. As Meta scales this technology across vendors, we can expect even more innovative wearables that last longer and do more.
Whether you're a developer, engineer, or tech enthusiast, understanding these advancements is crucial for building the next generation of devices. For the full story, listen to the Meta Tech Podcast episode.