Edge AI is crossing from pilots into mainstream products in 2026. Of the roughly 21 billion connected IoT devices in service, most still send their data off-device for processing. But purpose-built silicon is moving that work onboard: the first STM32 microcontrollers with a dedicated neural processing unit (NPU) reached volume production at the end of 2024, and value-tier edge-AI modules have fallen to price points that make local inference an economical default.
Once inference runs locally, a sensor is evaluated less by how cleanly it digitizes a signal and more by how useful its output is to the model beside it. This has three consequences:
These developments also help protect privacy. Time-of-flight and radar report distance and motion, not images, and in-sensor vision keeps raw pixels on the die, so a presence sensor can do its job without a camera feed ever leaving the part.
The headline figure for an edge AI part is usually its TOPS rating (trillions of operations per second), and it’s the wrong thing to size a design around. Two accelerators rated at the same TOPS can post very different real throughput because performance depends on memory bandwidth, the operators the silicon supports, and how well the vendor’s compiler maps your network onto it.
On most edge designs, moving tensors is the limiter, so the processor stalls waiting on memory well before it runs short of math. Energy per inference, not peak TOPS, is the number that tracks what a battery sees. It helps to think in two regimes, split by where the model lives: on-chip SRAM or external DRAM.
On a microcontroller, the ceiling is on-chip SRAM: often just 256 KB to 512 KB. That budget has to hold the model’s activations and working buffers (the runtime tensors), so the model must be small and quantized to fit, with its weights kept in flash. Quantization is the lever: converting weights from 32-bit floating point to 8-bit integers shrinks a model by roughly three to four times with little accuracy loss, enough that a quantized MobileNet-class network lands in about 1 MB of flash where the float version would not.
On a larger edge SoC running vision pipelines or a small language model, the constraint moves to external LPDDR, where capacity counts for less than how fast weights and activations can be streamed. Memory is a sourcing question too. The 2026 reallocation of DRAM capacity toward AI data centers has lifted LPDDR prices and tightened supply. Vendors fight the same battle on the bandwidth side: in May, Synaptics called memory bandwidth the primary bottleneck for on-device language-model inference and pointed to aggressive weight compression as the way to claw back throughput.
Staying always-on without draining the battery comes down to stacking detectors by cost: the expensive stages stay dark until a cheaper one earns the right to wake them. Whatever runs continuously sets the system’s idle draw, so the job is to make that bottom stage as cheap as possible and let it gate everything above it.
A smart MEMS microphone runs a tiny neural network for voice-activity detection at tens of microamps, then escalates to a deeper model for keyword spotting only when it hears speech, and wakes the host only after that.
An IMU’s machine-learning core classifies activity on-sensor and raises an interrupt. The host processor and any accelerator stay in deep sleep until a class of interest appears.
A 60 GHz radar, such as Infineon’s BGT60LTR11AIP, or a multi-zone time-of-flight sensor handles presence detection with on-chip processing, waking a camera or a full vision pipeline only once it confirms a person is there.
The savings show up in how these products spend most of their time: idle. For a rough sense of scale, a system that keeps a host awake to listen draws in the milliamps, while a tiered front end idles at tens of microamps and draws milliamps only for a fraction of a second when something is happening. On a coin cell, the difference between always-on and tiered is the difference between days and years of life.
Across sensing, memory, and power, the design logic boils down to two principles that should drive your part selection:
Each function you push into the sensor is one that the host processor, the memory, and the interface no longer carry. The trade-off is flexibility. Push intelligence into the sensor when the task is stable and well understood. Keep it on the host when the model will change often or needs retraining in the field, where reflashing firmware beats respinning a fixed engine.
For guidance on where in the stack each piece of intelligence belongs, see The Edge-Sensing BOM: What to Spec, from IMUs to Interfaces, which works through the BOM line by line: IMUs, time-of-flight, radar, microphones, sensor hubs, memory, and interfaces.