All posts Technology

Chasing microamps: low-power engineering inside the pen

In short

Low-power design is a ladder of sleep states: fully awake while you write, progressively deeper sleep as the pen sits idle, with the motion sensor itself standing guard so the processor can power down and still wake the instant the pen is picked up.

This post explains the ladder, why 'off' is really a very deep sleep with one eye open, and the measurement culture that keeps idle current honest.

The short version. The full post has the detail and the why.

In this post

  1. The ladder of sleep
  2. The sensor that guards the sleeping processor
  3. Milliamps, microamps, and honesty
  4. Power bugs are real bugs

The ladder of sleep

Power states in a well-behaved device form a ladder. Writing: everything on, sensors at full rate, radio streaming. Pen resting a few seconds: sensor rates drop, the stream pauses. Resting minutes: the processor itself sleeps between housekeeping ticks, radio advertising slows. Idle long enough: nearly everything powers down. Each rung costs less; the craft is moving down promptly without ever feeling asleep to the user.

The sensor that guards the sleeping processor

The trick that makes deep sleep usable is delegation. Our motion sensors contain tiny built-in engines that can watch for movement on their own, drawing almost nothing. So the processor hands them one instruction, wake me if anything moves, and switches off. Pick the pen up and the sensor taps the processor awake before your hand reaches the paper. The user experiences a pen that is simply always ready; the battery experiences a pen that was barely on.

writing · mA resting · fractions of mA idle · tens of µA deep sleep · single µA wake motion sensor stands guard
The sleep ladder: each idle rung costs orders of magnitude less, and the motion sensor's built-in watchdog climbs the pen back to awake the moment it is picked up.

Milliamps, microamps, and honesty

Active power is measured in milliamps and decides your writing day. Idle power is measured in microamps, thousandths of a milliamp, and decides whether the pen survives a fortnight in a bag. The two regimes are engineered differently and measured differently, and the second is unforgiving: one forgotten pull-up resistor or one peripheral left clocked can triple the idle draw, invisibly. So idle current is a measured, tracked number on real hardware, not an assumption.

Power bugs are real bugs

We treat a power regression exactly like a crash: something measurable broke. Every firmware change that touches a peripheral answers the same review question, what does this cost when idle? It is slower than not asking. It is also why the product can promise that a pen left in a drawer greets you weeks later with charge to spare.

Key takeaways

  • Power states form a ladder; the craft is descending quickly without the user noticing.
  • The motion sensor itself watches for pick-up so the processor can fully sleep.
  • Active life is a milliamp problem; shelf life is a microamp problem, measured separately.
  • Idle current is tracked like a test suite: a regression is a bug, not a footnote.

Nobody ever praised a pen for its idle current. They just trust it to be alive when they pick it up, and that trust is built a microamp at a time.

Read next