Product

Why We Put a Color Display on a Pen

Chase Coe   March 4, 2026   4 min read

Most smart pens hide behind an app. You write something, then you have to pull out your phone to see the result. We thought that defeated the whole purpose.

The Design Philosophy

Nexus Pen's core principle is zero context switching. If you have to put down the pen to interact with AI, you've already lost the moment. The color display keeps everything in your line of sight — answers, settings, status — without ever breaking your flow.

Why Full-Color IPS

We chose a 1.14-inch full-color IPS display (135×240 resolution, ST7789 driver) for several reasons:

  • Wide viewing angles — IPS panels stay accurate and readable even when you're glancing down at the pen at an angle, not looking at it straight-on
  • True color — Full RGB color lets us use Nexus Pen's gold-on-black palette, mode-specific colors, and icons instead of a single-tone display
  • Readability — High contrast and a bright backlight mean text stays crisp and readable even in bright classrooms
  • Thin profile — The display module is incredibly thin, which matters when your enclosure is a pen

What Appears on Screen

The display adapts to context. In idle mode, it shows connection status and battery level. During a conversation with Donna, it shows her response as scrolling text. In settings mode, it becomes a full menu system navigated with the pen's three buttons.

We even built a developer mode (accessible through a secret code in settings) that shows system diagnostics and easter eggs for our most curious users.

The Technical Challenge

Driving a full-color display while simultaneously streaming BLE audio and processing button inputs on an ESP32 is a juggling act. The SPI bus that communicates with the display can briefly block the main loop, which would cause audio stuttering if we weren't careful.

Our solution: oversized I2S DMA buffers that hold hundreds of milliseconds of audio — more than enough to survive any display update. The audio never skips, even when the screen is refreshing.

The Result

Users consistently tell us the display is their favorite feature. It transforms Nexus Pen from a "pen that connects to an app" into a truly standalone smart device. You can get answers, adjust settings, and interact with Donna without ever touching your phone.

That's the future we're building: intelligence you can hold in your hand.

Back to Blog