If you're building a connected product — whether it's a smart home sensor, an industrial monitor, or a wearable fitness tracker — one of the first decisions you'll face is: which wireless technology should I use?
It's a question I get asked a lot, and the answer is almost never straightforward. The wireless landscape is wide, and each technology comes with its own set of trade-offs. Wi-Fi, Bluetooth LE, Zigbee, LoRaWAN, Z-Wave, cellular IoT — they all have their strengths, and choosing the wrong one can mean redesigning your product later (which is never fun).
In this post, we'll cover:
- The key factors you should evaluate when selecting a wireless technology
- A practical overview of the most popular wireless protocols used in IoT
- A side-by-side comparison to help you narrow down the right fit
- How to match a technology to your specific project requirements
Let's get into it.
Key Factors to Consider
Before diving into individual technologies, let's first understand the criteria that actually matter when making this decision. I recommend evaluating your project against these seven factors:
1. Range
How far does your data need to travel? This is often the single biggest differentiator between wireless technologies.
Some protocols are designed for short-range communication (a few meters to about 100 meters), while others can reach kilometers. For example, Bluetooth LE is great for connecting a sensor to a phone across a room, but if you need to send data from a remote weather station 5 km away, you'll want something like LoRaWAN.
Here's a rough breakdown:
- Short range (up to ~100 m): Bluetooth LE, Zigbee, Z-Wave, NFC
- Medium range (up to ~200 m): Wi-Fi
- Long range (1–15+ km): LoRaWAN, Sigfox, NB-IoT, LTE-M
2. Power Consumption
If your device runs on a battery (especially a coin cell), power consumption is critical. Technologies like Bluetooth LE and Zigbee were specifically designed for ultra-low power operation, allowing devices to run for months or even years on a single battery.
On the other hand, Wi-Fi is notoriously power-hungry. It's great when you have a wall outlet, but I do not recommend it for battery-powered devices — your battery will be dead before you know it. The exception is Wi-Fi HaLow (802.11ah), which was specifically designed for low-power IoT, but it hasn't seen widespread adoption yet.
3. Data Rate and Throughput
How much data do you need to send, and how fast? A temperature sensor reporting once per minute has very different needs than a security camera streaming video.
Wi-Fi leads here with throughput in the hundreds of Mbps. Bluetooth LE offers up to 2 Mbps (with the LE 2M PHY), which is plenty for most sensor data and even firmware updates. Technologies like LoRaWAN and Sigfox trade speed for range — they're designed for tiny payloads (a few bytes to a few hundred bytes) sent infrequently.
4. Cost
Cost shows up in several places: the chip or module itself, the antenna design, certification fees, and any recurring connectivity costs (like cellular data plans).
Bluetooth LE and Zigbee tend to be very affordable on the hardware side. Cellular IoT (NB-IoT, LTE-M) adds ongoing subscription costs, which can add up fast when you're deploying thousands of devices. LoRaWAN sits in an interesting middle ground — you can deploy your own gateway and avoid recurring fees, or use a public network like The Things Network.
5. Security
Every wireless technology has its own security model, and they're not all equal. Bluetooth LE supports AES-128 encryption and multiple pairing methods (including Secure Connections with ECDH key exchange). Wi-Fi uses WPA3. Zigbee has network-level encryption built into the protocol.
For any product that handles sensitive data — medical devices, access control, payment systems — I recommend going beyond the default security features and implementing application-layer encryption on top.
6. Interoperability
Will your device need to talk to smartphones, other IoT devices, or cloud services? Bluetooth LE has a huge advantage here because virtually every smartphone on the market supports it. Wi-Fi is similarly ubiquitous. Zigbee and Z-Wave are more common in dedicated smart home hubs (like Amazon Echo or Samsung SmartThings).
If phone-to-device communication is important for your use case (and it usually is), Bluetooth LE is hard to beat.
7. Scalability
How many devices do you need to support in one network? A smart home with 10 sensors has different requirements than an industrial facility with 10,000.
Mesh networking protocols like Zigbee and Bluetooth Mesh can scale to hundreds or thousands of nodes. LoRaWAN gateways can handle thousands of end devices. Wi-Fi access points, by comparison, typically support a few dozen concurrent connections before performance degrades.
Popular Wireless Technologies: An Overview
Now that we've established the evaluation criteria, let's take a closer look at the most commonly used wireless technologies in IoT projects.
Bluetooth Low Energy (Bluetooth LE)
Bluetooth LE is one of the most widely adopted wireless technologies in IoT. It operates in the 2.4 GHz ISM band and is designed for short-range, low-power communication.
What makes Bluetooth LE particularly attractive is its universal smartphone support — every modern iOS and Android device includes a Bluetooth LE radio. This makes it the go-to choice for consumer products like fitness trackers, smart watches, medical devices, and beacons.
Key characteristics:
- Range: Typically 10–100 meters (up to 400+ meters with Coded PHY in Bluetooth 5.0+)
- Data rate: 1 Mbps (LE 1M PHY) or 2 Mbps (LE 2M PHY)
- Power: Ultra-low — great for coin-cell-powered devices
- Topology: Point-to-point, broadcast, and mesh (via Bluetooth Mesh)
- Best for: Wearables, health/medical, beacons, smart home accessories, asset tracking
Wi-Fi
Wi-Fi needs no introduction. It's the workhorse of home and enterprise networking, operating in the 2.4 GHz and 5 GHz bands (and now 6 GHz with Wi-Fi 6E).
For IoT, Wi-Fi makes sense when you need high throughput, have access to mains power, and want direct IP connectivity to the internet without a gateway. Think smart displays, security cameras, and voice assistants.
Key characteristics:
- Range: ~50–200 meters (varies by environment and standard)
- Data rate: Up to several Gbps (Wi-Fi 6/6E)
- Power: High — not ideal for battery-powered devices
- Topology: Star (access point to clients)
- Best for: High-bandwidth devices with access to mains power
Zigbee
Zigbee is a low-power, low-data-rate mesh networking protocol based on IEEE 802.15.4. It operates in the 2.4 GHz band and is widely used in smart home and building automation.
Zigbee's strength is its mesh networking capability — each node can relay messages for other nodes, extending the effective range of the network and providing redundancy. This makes it well-suited for whole-home or whole-building deployments with many sensors and actuators.
Key characteristics:
- Range: 10–100 meters per hop (extended via mesh)
- Data rate: 250 kbps
- Power: Low — suitable for battery-powered devices
- Topology: Mesh
- Best for: Smart home, lighting control, building automation, industrial sensors
Z-Wave
Z-Wave is similar to Zigbee in many ways — it's a low-power mesh networking protocol designed for smart home applications. The key difference is that Z-Wave operates in the sub-1 GHz band (around 908 MHz in North America), which gives it better wall penetration and less interference from Wi-Fi and Bluetooth devices that crowd the 2.4 GHz band.
The trade-off is that Z-Wave has a lower data rate (100 kbps) and the ecosystem is more controlled — all Z-Wave devices must be certified by the Z-Wave Alliance, which ensures interoperability but limits the number of available chipsets.
Key characteristics:
- Range: ~30–100 meters per hop (extended via mesh)
- Data rate: 100 kbps
- Power: Low
- Topology: Mesh
- Best for: Smart home (especially in Wi-Fi-congested environments)
LoRaWAN
LoRaWAN (Long Range Wide Area Network) is built on Semtech's LoRa modulation technology and is designed for long-range, low-power communication. It operates in sub-1 GHz ISM bands and can achieve ranges of 5–15 km in rural environments.
LoRaWAN is ideal for applications where you need to send small amounts of data over long distances — think agricultural sensors, environmental monitoring, and smart city infrastructure. The data rates are low (0.3–50 kbps), but for many IoT use cases, that's more than enough.
Key characteristics:
- Range: 5–15+ km (rural), 1–5 km (urban)
- Data rate: 0.3–50 kbps
- Power: Very low — multi-year battery life possible
- Topology: Star-of-stars (end devices to gateways to network server)
- Best for: Agriculture, environmental monitoring, asset tracking, smart cities
Cellular IoT (NB-IoT and LTE-M)
Cellular IoT technologies like NB-IoT (Narrowband IoT) and LTE-M leverage existing cellular infrastructure to provide wide-area IoT connectivity. They're managed by mobile network operators, which means you get broad coverage out of the box — but you also pay for a data subscription.
NB-IoT is optimized for stationary devices sending small, infrequent payloads (like smart meters). LTE-M supports higher data rates and mobility, making it suitable for asset trackers and connected vehicles.
Key characteristics:
- Range: Cellular coverage area (km+)
- Data rate: NB-IoT ~250 kbps, LTE-M ~1 Mbps
- Power: Low (with PSM and eDRX power-saving modes)
- Topology: Star (device to base station)
- Best for: Smart metering, fleet tracking, remote monitoring where other infrastructure doesn't exist
Side-by-Side Comparison
Let's put it all in a table to make it easier to compare. Keep in mind that these are typical values — actual performance varies based on environment, configuration, and implementation.
| Technology | Range | Data Rate | Power | Best For |
|---|---|---|---|---|
| Bluetooth LE | 10–100 m | 1–2 Mbps | Ultra-low | Wearables, health, beacons, smart home |
| Wi-Fi | 50–200 m | Up to Gbps | High | Cameras, displays, mains-powered devices |
| Zigbee | 10–100 m (mesh) | 250 kbps | Low | Smart home, lighting, building automation |
| Z-Wave | 30–100 m (mesh) | 100 kbps | Low | Smart home (sub-1 GHz, less interference) |
| LoRaWAN | 1–15+ km | 0.3–50 kbps | Very low | Agriculture, environment, smart cities |
| NB-IoT | Cellular coverage | ~250 kbps | Low | Smart metering, remote monitoring |
| LTE-M | Cellular coverage | ~1 Mbps | Low | Fleet tracking, mobile assets |
How to Decide: A Practical Framework
With all these options, how do you actually make the decision? Let's walk through five questions that I've found get you to the right answer pretty quickly:
- Does your device need to communicate with a smartphone? If yes, Bluetooth LE is almost certainly part of your solution (either as the primary protocol or for provisioning/configuration).
- Is your device battery-powered? If yes, eliminate Wi-Fi and lean toward Bluetooth LE, Zigbee, or LoRaWAN depending on range needs.
- How far does the data need to travel? Under 100 meters? Short-range protocols work fine. Over 1 km? You're looking at LoRaWAN, cellular IoT, or Sigfox.
- How much data and how often? Frequent, large payloads favor Wi-Fi or LTE-M. Infrequent, small payloads open up all the low-power options.
- Do you need mesh networking? If you have many devices that need to relay messages across a large area, Zigbee, Z-Wave, or Bluetooth Mesh are your best options.
In many real-world products, the answer is actually a combination of technologies. For example, a smart home hub might use Zigbee or Z-Wave to communicate with sensors, Wi-Fi to connect to the internet, and Bluetooth LE for initial setup via a phone app. Don't feel like you have to pick just one.
Conclusion
In this post, we covered the key factors to evaluate when choosing a wireless technology — range, power consumption, data rate, cost, security, interoperability, and scalability. We also walked through the most popular options (Bluetooth LE, Wi-Fi, Zigbee, Z-Wave, LoRaWAN, and cellular IoT) and how they compare across these dimensions.
Here are the key takeaways:
- Bluetooth LE is the best choice for short-range, battery-powered devices that need smartphone connectivity.
- Wi-Fi is your best bet when you need high throughput and have mains power available.
- Zigbee and Z-Wave excel in smart home mesh networks with many nodes.
- LoRaWAN is unmatched for long-range, low-power applications where data rates are small.
- Cellular IoT (NB-IoT/LTE-M) makes sense when you need wide-area coverage without deploying your own infrastructure.
- Many products use multiple technologies — don't feel locked into picking just one.
You should now have a solid framework for evaluating which wireless technology fits your next project. The right choice depends on your specific requirements, and taking the time to evaluate these factors upfront will save you from costly redesigns down the road.