All posts Technology

Bluetooth and Bluetooth Low Energy are not the same thing

In short

Bluetooth Classic was designed to replace a cable and stream continuously; Bluetooth Low Energy was designed to sleep almost always and wake for milliseconds at a time. A pen that must live for days on a tiny cell has only one sane choice.

The post compares the two protocols honestly, explains BLE's sleep-mostly rhythm, and shows how the pen still moves a rich 208-per-second sensor stream through it.

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

In this post

  1. Two protocols wearing one logo
  2. The rhythm of a BLE connection
  3. Getting a firehose through a straw
  4. What Classic would have cost

Two protocols wearing one logo

Bluetooth Classic, the one in your car and headphones, was born to replace a serial cable: set up a link, then stream continuously. It is superb at audio and terrible at battery. Bluetooth Low Energy arrived years later with a different soul: assume the device is asleep almost always, wake for a few milliseconds, exchange small packets, sleep again. Same brand, same 2.4 GHz band, fundamentally different machines.

The rhythm of a BLE connection

A BLE link is a heartbeat. Pen and phone agree on a connection interval, and meet only at those beats; between beats the pen's radio is off, costing nearly nothing. When you write, each beat carries a bundle of fresh sensor samples. When you rest, beats pass empty and the pen sinks toward sleep. Power scales with how much you actually write, which is exactly the behaviour a pen should have.

Classic: always on radio active the whole session BLE: mostly asleep brief beats, sleep in between battery: hours battery: days
The essential difference in one picture: Classic keeps the radio busy for the whole session; BLE wakes for millisecond beats and sleeps between them.

Getting a firehose through a straw

The pen produces 208 sensor snapshots a second across sixteen channels. Raw BLE was not built for firehoses, so the firmware negotiates the larger packet sizes and faster physical rates modern BLE offers, bundles samples so each packet carries several, and checksums every packet with a rolling counter so the receiving side can prove that nothing was lost. Reliable-by-verification beats hopeful streaming.

What Classic would have cost

Run the same pen on Bluetooth Classic and the radio alone would eat the battery in well under a day, before the sensors drew a microamp. It would also demand a bigger battery, which means a fatter pen, which breaks the whole product promise. Choosing BLE is not a detail; it is one of the decisions that makes an everyday sensor pen possible at all.

Key takeaways

  • Classic streams continuously; BLE sleeps almost always and wakes briefly. Different tools.
  • A BLE connection is a negotiated heartbeat; power scales with real writing.
  • Bundled packets, checksums and counters make the 208-per-second stream provably complete.
  • On Classic the radio alone would kill the pen's battery inside a day.

When a protocol's core assumption matches your product's life, everything downstream gets easier. BLE assumes sleep. So does a pen in a pencil case.

Read next