Skip to main content
Back to blog

What is LoRa and why does it matter for off-grid communication?

·5 min readOutdoor Tech

Most wireless communication depends on infrastructure. Wi-Fi needs a router. Cellular needs a tower. Bluetooth needs devices within 30 feet of each other. LoRa (Long Range) is different. It is a radio technology that can transmit small amounts of data over several kilometers without any infrastructure at all.

How LoRa works

LoRa uses a spread spectrum modulation technique that trades data speed for range and reliability. Instead of sending data fast over a short distance (like Wi-Fi), it sends data slowly over a long distance. A typical LoRa transmission might only carry a few hundred bytes per second, but it can travel 5-15 kilometers in open terrain and 2-5 kilometers in urban environments.

The physics are straightforward: LoRa operates on sub-gigahertz frequencies (868 MHz in Europe, 915 MHz in the US). Lower frequencies travel farther and penetrate obstacles better than the 2.4 GHz and 5 GHz bands that Wi-Fi uses. The tradeoff is bandwidth, but for many applications, you do not need much.

What you can do with it

LoRa is not for streaming video or browsing the web. It is for sending small messages, sensor data, GPS coordinates, and status updates over distances that would be impossible with other wireless technologies.

Practical use cases:

Off-grid messaging. Send text messages to friends on a hiking trip without cell coverage. This is what Meshtastic does (I wrote a separate post about it).

Sensor networks. A weather station in your garden sends temperature and humidity data to a receiver inside your house. A soil moisture sensor in a remote field reports to a base station kilometers away.

Asset tracking. Attach a small LoRa GPS tracker to equipment, vehicles, or animals and receive location updates without cellular coverage.

Emergency communication. When cell towers go down during natural disasters, LoRa devices can still communicate. Some search and rescue organizations are exploring LoRa mesh networks for exactly this reason.

The hardware

LoRa devices are cheap. A basic LoRa module (like the Semtech SX1276) costs under $5. Complete development boards with a microcontroller, LoRa radio, and sometimes GPS and a display (like the Heltec WiFi LoRa 32 or LILYGO T-Beam) cost $15-40.

The most popular boards for getting started:

LILYGO T-Beam: ESP32 microcontroller + LoRa radio + GPS + battery holder. This is the most popular board for Meshtastic because it has everything built in. About $25-35.

Heltec WiFi LoRa 32: ESP32 + LoRa + small OLED display. No built-in GPS but cheaper and has a screen. About $15-20.

RAK WisBlock: A modular system where you pick a base board and snap on radio, sensor, and GPS modules. More flexible but slightly more complex to set up.

LoRa vs LoRaWAN

This distinction confuses a lot of people. LoRa is the radio modulation technology (the physical layer). LoRaWAN is a network protocol built on top of LoRa that adds encryption, device management, and integration with cloud services through gateways.

LoRa (raw): Two devices talking directly to each other or in a mesh network. No infrastructure needed. This is what Meshtastic and most hobbyist projects use.

LoRaWAN: Devices send data to gateways, which forward it to a network server (like The Things Network). This is more structured and is used for IoT deployments, smart agriculture, and industrial monitoring.

For personal projects and outdoor communication, raw LoRa (or LoRa mesh like Meshtastic) is usually what you want. LoRaWAN makes more sense for large-scale sensor deployments where you need central data collection.

Range in practice

The theoretical maximum range for LoRa is over 700 kilometers (achieved with line-of-sight and ideal conditions). In practice, expect:

  • Urban: 1-3 kilometers through buildings and obstacles
  • Suburban: 3-8 kilometers with some line of sight
  • Rural/open terrain: 5-15 kilometers
  • Elevated antenna (hilltop, tall building): 20-50+ kilometers

Range depends heavily on antenna quality, antenna height, terrain, and the specific LoRa settings (spreading factor and bandwidth). A device in your pocket will get less range than one with an external antenna mounted high up.

LoRa operates on license-free ISM bands, so you do not need a radio license to use it. However, there are duty cycle and power limits that vary by region:

  • EU (868 MHz): 1% duty cycle (transmit for 1% of the time), max 25 mW ERP
  • US (915 MHz): More relaxed, up to 1 W ERP, frequency hopping required

For normal use (text messages, sensor data), you will never hit these limits. They only matter for high-throughput or continuously transmitting applications.

Why I find it interesting

LoRa sits at the intersection of outdoor adventure and tinkering, two things I care about. The idea that you can send a message to someone 10 kilometers away on a $25 device with no cell towers, no internet, and no subscription is genuinely compelling. It is communication infrastructure you own and control, which aligns with the same philosophy behind self-hosting.

The technology is mature enough to be reliable but new enough that the community is still figuring out creative applications. It is a fun space to experiment in.

Sources

Enjoying the blog? Subscribe via RSS to get new posts in your reader.

Subscribe via RSS