Wireless control over a long distance with the LoRa modem
A Practical Telemetry System
To demonstrate the utility of the LoRa modem module, I packaged two Raspberry Pis into waterproof plastic boxes. One Pi was set up as the transmitter running the switch application, with two control switches and an LED mounted externally (Figure 5). Toggling either switch causes a packet to be sent to the receiver. The LED flashes when the transmitter receives an ACK from the receiver.
The second Pi runs the relay application and has a small module with two relays [11] wired and mounted internally, and a single LED mounted externally that flashes on reception of a valid packet from the transmitter (Figure 6).
This is pretty much the simplest application of LoRa. You can configure a lot more, such as an example spreading factor, channel frequency, and bandwidth that allow you to tailor the radio link to a specific situation. I was able to outfit both modules to run on solar-charged battery packs (Figure 7).
Software
The software for this system builds on the test software described earlier. The complete code for both switch and relay applications, together with a makefile are available for download from my GitHub page [12]. Only the end-user parts of the code are listed here; for brevity, I have omitted error-reporting code.
Listing 1 shows the switch module. This module sets up the required GPIO pins and then enters a loop looking for pin changes from the external switches. In detecting a change, it sends a message to the receiver to turn on or off the associated relay.
Listing 1
The Switch
§§number 01 #include "SX1272.h" 02 #include <stdio.h> 03 #include <syslog.h> 04 05 int main () 06 { 07 // set up the LoRa modem 08 sx1272.ON(); 09 sx1272.setMode(4); 10 sx1272.setHeaderON(); 11 sx1272.setChannel(CH_17_868); 12 sx1272.setCRC_ON(); 13 sx1272.setPower('M'); 14 sx1272.setNodeAddress(3); 15 16 // set up GPIO: 2 inputs and one output 17 bcm2835_gpio_fsel(RPI_V2_GPIO_P1_18,BCM2835_GPIO_FSEL_INPT); 18 bcm2835_gpio_set_pud(RPI_V2_GPIO_P1_18,BCM2835_GPIO_PUD_UP); 19 bcm2835_gpio_fsel(RPI_V2_GPIO_P1_08, BCM2835_GPIO_FSEL_INPT); 20 bcm2835_gpio_set_pud(RPI_V2_GPIO_P1_08, BCM2835_GPIO_PUD_UP); 21 bcm2835_gpio_fsel(RPI_V2_GPIO_P1_16,BCM2835_GPIO_FSEL_OUTP); 22 23 // get the current switch states 24 uint8_t oldLev_08=bcm2835_gpio_lev(RPI_V2_GPIO_P1_08); 25 uint8_t oldLev_18=bcm2835_gpio_lev(RPI_V2_GPIO_P1_18); 26 27 while(1) 28 { 29 // get the new states 30 uint8_t lev_08=bcm2835_gpio_lev(RPI_V2_GPIO_P1_08); 31 uint8_t lev_18=bcm2835_gpio_lev(RPI_V2_GPIO_P1_18); 32 33 //if state is different, send message and update 34 if(lev_08 != oldLev_08) 35 { 36 char *msg=(char*)(!lev_08?"ON0":"OFF0"); 37 syslog(LOG_USER,msg); 38 uint8_t e = sx1272.sendPacketTimeoutACKRetries(8, msg); 39 40 if(e==0) 41 { 42 // flash the LED 43 bcm2835_gpio_set(RPI_V2_GPIO_P1_16); 44 bcm2835_delay(500); 45 bcm2835_gpio_clr(RPI_V2_GPIO_P1_16); 46 // update rthe state 47 oldLev_08=lev_08; 48 } 49 } 50 51 //if state is different, send message and update 52 if(lev_18 != oldLev_18) 53 { 54 char *msg = (char*)(!lev_18?"ON1":"OFF1"); 55 syslog(LOG_USER,msg); 56 uint8_t e=sx1272.sendPacketTimeoutACKRetries(8, msg); 57 58 if(e==0) 59 { 60 // flash the LED 61 bcm2835_gpio_set(RPI_V2_GPIO_P1_16); 62 bcm2835_delay(500); 63 bcm2835_gpio_clr(RPI_V2_GPIO_P1_16); 64 // update rthe state 65 oldLev_18=lev_18; 66 } 67 } 68 69 // wait a bit & repeat 70 bcm2835_delay(500); 71 } 72 }
Listing 2 shows the relay module, which sets up the required GPIO pins and then enters a loop listening for messages from the switch module. In detecting a message, it turns on or off the associated relay.
Listing 2
The Relay
§§number 01 #include "SX1272.h" 02 #include <stdio.h> 03 #include <string.h> 04 05 int main () 06 { 07 // set up the LoRa modem 08 sx1272.ON(); 09 sx1272.setMode(4); 10 sx1272.setHeaderON(); 11 sx1272.setChannel(CH_17_868); 12 sx1272.setCRC_ON(); 13 sx1272.setPower('M'); 14 sx1272.setNodeAddress(8); 15 16 // set up GPIO: 3 outputs 17 bcm2835_gpio_fsel(RPI_V2_GPIO_P1_26,BCM2835_GPIO_FSEL_OUTP); 18 bcm2835_gpio_fsel(RPI_V2_GPIO_P1_18,BCM2835_GPIO_FSEL_OUTP); 19 bcm2835_gpio_fsel(RPI_V2_GPIO_P1_16,BCM2835_GPIO_FSEL_OUTP); 20 21 // turn both relays off 22 bcm2835_gpio_clr(RPI_V2_GPIO_P1_18); 23 bcm2835_gpio_clr(RPI_V2_GPIO_P1_26); 24 25 while(1) 26 { 27 // wait for an incoming message and sens an ACK 28 if (sx1272.receivePacketTimeoutACK(10000) == 0) 29 { 30 // get the packet data and act on it 31 char *msg = (char *)sx1272.packet_received.data; 32 printf("%s\n", msg); 33 sx1272.getRSSI(); 34 35 if(strcmp("ON0", msg)==0) 36 { 37 bcm2835_gpio_set(RPI_V2_GPIO_P1_18); 38 } 39 40 if(strcmp("OFF0", msg)==0) 41 { 42 bcm2835_gpio_clr( RPI_V2_GPIO_P1_18); 43 } 44 45 if(strcmp("ON1", msg)==0) 46 { 47 bcm2835_gpio_set(RPI_V2_GPIO_P1_26); 48 } 49 50 if(strcmp("OFF1", msg)==0) 51 { 52 bcm2835_gpio_clr(RPI_V2_GPIO_P1_26); 53 } 54 55 // flash the LED 56 bcm2835_gpio_set(RPI_V2_GPIO_P1_16); 57 bcm2835_delay(500); 58 bcm2835_gpio_clr(RPI_V2_GPIO_P1_16); 59 } 60 } 61 }
Next Steps
For further development, I should point out that LoRa data flow is truly bidirectional. There's nothing to stop the remote node, in this case the relay node, from sending unsolicited packets to the switch node. So any node can be both a sender and a receiver. It is also possible to send broadcast packets to any node listening on the same channel, as well as to send unacknowledged packets, similar to TCP/IP's UDP packets. A complete, freely available WAN implementation called LoRaWAN [13] even turns a bunch of LoRa nodes and a gateway node into a true network, with semantics very similar to TCP/IP.
« Previous 1 2 3 Next »
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
Fedora 41 Released with New Features
If you're a Fedora fan or just looking for a Linux distribution to help you migrate from Windows, Fedora 41 might be just the ticket.
-
AlmaLinux OS Kitten 10 Gives Power Users a Sneak Preview
If you're looking to kick the tires of AlmaLinux's upstream version, the developers have a purrfect solution.
-
Gnome 47.1 Released with a Few Fixes
The latest release of the Gnome desktop is all about fixing a few nagging issues and not about bringing new features into the mix.
-
System76 Unveils an Ampere-Powered Thelio Desktop
If you're looking for a new desktop system for developing autonomous driving and software-defined vehicle solutions. System76 has you covered.
-
VirtualBox 7.1.4 Includes Initial Support for Linux kernel 6.12
The latest version of VirtualBox has arrived and it not only adds initial support for kernel 6.12 but another feature that will make using the virtual machine tool much easier.
-
New Slimbook EVO with Raw AMD Ryzen Power
If you're looking for serious power in a 14" ultrabook that is powered by Linux, Slimbook has just the thing for you.
-
The Gnome Foundation Struggling to Stay Afloat
The foundation behind the Gnome desktop environment is having to go through some serious belt-tightening due to continued financial problems.
-
Thousands of Linux Servers Infected with Stealth Malware Since 2021
Perfctl is capable of remaining undetected, which makes it dangerous and hard to mitigate.
-
Halcyon Creates Anti-Ransomware Protection for Linux
As more Linux systems are targeted by ransomware, Halcyon is stepping up its protection.
-
Valve and Arch Linux Announce Collaboration
Valve and Arch have come together for two projects that will have a serious impact on the Linux distribution.