In this post
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.
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.