Wi-Fi HaLow (802.11ah) for Long-Range, Low-Power IoT: What It Is and When to Use It Over LoRa
Every maker who's tried to get a WiFi sensor node to reach the far corner of a property, a detached garage, or a basement workshop has run into the same wall: standard 2.4GHz and 5GHz WiFi just doesn't punch through walls and distance the way you'd like, and the usual fallback — LoRa — solves range but forces you into a low-bandwidth, packet-based protocol that can't simply run an HTTP request or an MQTT-over-TCP connection the way a normal WiFi device can. Wi-Fi HaLow (IEEE 802.11ah) sits in the gap between those two options: it's real WiFi — same IP stack, same sockets, same libraries you already know — but transmitted in the sub-1GHz band, giving it dramatically better range and wall penetration than 2.4GHz while still supporting kilobits-to-megabits of throughput, far beyond what LoRa can offer.
This guide explains what HaLow actually is, how it compares to the wireless options makers already reach for, and where it realistically fits in a project today given how new and limited the hardware ecosystem still is.
What Makes HaLow Different
HaLow operates in the sub-1GHz ISM band (900MHz in the US, with regional variants elsewhere) rather than the crowded 2.4GHz band. Lower frequency radio waves propagate farther and penetrate walls, foliage, and other obstructions more effectively than higher frequencies — the same physical principle that gives old-school 900MHz cordless phones better range than 2.4GHz WiFi, or why LoRa itself uses sub-GHz spectrum. The difference is that HaLow retains the full 802.11 protocol stack: devices get real IP addresses, use standard WPA3 security, and appear on your network like any other WiFi client, rather than requiring a dedicated gateway and packet-based application protocol the way LoRaWAN does.
HaLow vs. LoRa vs. Standard WiFi vs. Zigbee/Thread
ProtocolTypical RangeThroughputNetworking ModelPower Draw 2.4GHz WiFi30-100m outdoor, poor through multiple wallsTens to hundreds of MbpsStandard IP, direct to routerHigh (100s of mA active) Wi-Fi HaLow (802.11ah)Up to ~1km outdoor, strong wall penetration~150kbps to several Mbps depending on configStandard IP, direct to a HaLow access pointLow-to-moderate; supports sleep states LoRa/LoRaWAN2-15km outdoor (line of sight dependent)~0.3-50kbpsPacket-based, needs a gateway and application serverVery low; built for years on a coin cell Zigbee/Thread10-30m per hop, mesh-extendable~250kbpsMesh network, needs a coordinator/border routerLowWhere HaLow Actually Wins
The clearest use case is a project that needs both real range and enough bandwidth to move more than a tiny sensor payload — a camera snapshot, a firmware-sized OTA update, or a chatty MQTT feed with many topics — while living somewhere 2.4GHz WiFi can't reliably reach. A detached shop, a barn, a remote gate camera, or an outbuilding sensor cluster are all better fits for HaLow than for LoRa, precisely because you want the device to behave like a normal networked IP client (SSH into it, pull a live video stream, run a web dashboard) rather than a store-and-forward telemetry packet.
Where LoRa or Standard WiFi Still Win
If your payload really is small and infrequent — a temperature reading every ten minutes — LoRa's power efficiency and longer realistic range still make it the better choice, and the ESP32 LoRaWAN ecosystem on this site is far more mature than HaLow's today. And if your device is already within reliable 2.4GHz range, there's no reason to add HaLow's cost and complexity; standard WiFi's throughput and hardware selection remain unmatched at short range.
Hardware Reality in 2026
HaLow hardware is still a narrow field compared to 2.4GHz WiFi or LoRa. Module and access-point availability comes primarily from a small number of chipset vendors (Morse Micro and Newracom are the names to search for), sold as USB dongles, SDIO modules, or pre-certified breakout boards rather than the drop-in ESP32-class SoCs makers are used to. Expect to pair a HaLow radio module with a host microcontroller or SBC over SPI/SDIO rather than finding a single-chip HaLow equivalent of an ESP32 — and expect to build or buy a dedicated HaLow access point, since your existing home router almost certainly doesn't speak 802.11ah. Check current module datasheets carefully before committing a project to HaLow: firmware maturity and regulatory certification (FCC Part 15 in the US) vary significantly between vendors, and driver support for hobbyist platforms is still thin compared to how plug-and-play ESP32 WiFi has become.
Regulatory Notes
The exact frequency allocation and power limits for the 900MHz ISM band HaLow uses differ by country — the US, Europe, and parts of Asia all use different sub-bands and duty-cycle rules. Confirm your HaLow module is certified for your region before deploying it outdoors; unlike WiFi and Bluetooth, where global chipset certification is nearly universal, sub-GHz devices are region-specific and running an uncertified device can put you in the same regulatory gray area as an unlicensed LoRa or ham transmission outside its allocated band.
HaLow isn't going to replace either 2.4GHz WiFi or LoRa in most projects — it's a specialist tool for the specific case where you need genuine IP networking at a range those two can't cover. For a detached shop, a gate camera, or a property-wide sensor mesh where a LoRa gateway feels like overkill but 2.4GHz simply won't reach, it's worth tracking as the hardware ecosystem matures.