vishal soniShlok Gupta
Published © MIT

LoRa Based Messenger

A portable device for LONG RANGE Texting in remote locations without requiring a cellular network or Wi-Fi router

IntermediateFull instructions providedOver 1 day2,815
LoRa Based Messenger

Things used in this project

Hardware components

LoRa Sx1278
×3
HC-05 Bluetooth Module
HC-05 Bluetooth Module
×3
Arduino Nano R3
Arduino Nano R3
×3
18650 cell
×3
2 Pin DIP Switch
×3
10 uf 50 volt capacitor
×3
BC547c Transistor
×3
Resistor 1k ohm
Resistor 1k ohm
×12
Buzzer
Buzzer
×3
2Pin 2.54mm male female connectors
×3
Lora Antenna 433mhz
×3
15CM SMA Female to IPEX4 Connector Cable 11mm RG0.81
×3
AMS1117-3.3 Voltage Regulator
×3

Software apps and online services

Arduino IDE
Arduino IDE
Bluetooth Serial Monitor

Hand tools and fabrication machines

Soldering iron (generic)
Soldering iron (generic)
Soldering Station, 110 V
Soldering Station, 110 V
Solder Wire, Lead Free
Solder Wire, Lead Free

Story

Read more

Schematics

Circuit Diagram of prototype

Code

for user 1

C/C++
//User1 my side Device code 
 
 
#include <SPI.h>              // include libraries
#include <LoRa.h>
 
byte msgCount = 0;            // count of outgoing messages
byte localAddress = 0xBB;     // address of this device
byte destination = 0xFF;      // destination to send to
 
int buzzer=2;
 
String outgoing;              // outgoing message
String Mymessage;             // stores message from the bluetooth
 
int calling;                  // stores the command
 
void setup() {
  Serial.begin(9600);                   // initialize serial
  Serial.println("LoRa Duplex");
 
  if (!LoRa.begin(433E6)) {             // initialize ratio at 915 MHz
    Serial.println("LoRa init failed. Check your connections.");
    while (true);                       // if failed, do nothing
  }
 
  Serial.println("LoRa init succeeded.");
  pinMode(buzzer,OUTPUT);
}
 
void loop() {
 
   if(Serial.available()>0)
   {
    //read data
    Mymessage=Serial.readString();
    sendMessage(Mymessage);
    delay(100);
    Mymessage = "";
   }
 
 
      // parse for a packet, and call onReceive with the result:
  onReceive(LoRa.parsePacket());
  }
 
 
 
 
 
void sendMessage(String outgoing) {
  LoRa.beginPacket();                   // start packet
  LoRa.write(destination);              // add destination address
  LoRa.write(localAddress);             // add sender address
  LoRa.write(msgCount);                 // add message ID
  LoRa.write(outgoing.length());        // add payload length
  LoRa.print(outgoing);                 // add payload
  LoRa.endPacket();                     // finish packet and send it
  msgCount++;                           // increment message ID
}
 
void onReceive(int packetSize) {
  if (packetSize == 0) return;          // if there's no packet, return
 
  // read packet header bytes:
  int recipient = LoRa.read();          // recipient address
  byte sender = LoRa.read();            // sender address
  byte incomingMsgId = LoRa.read();     // incoming msg ID
  byte incomingLength = LoRa.read();    // incoming msg length
 
  String incoming = "";
 
  while (LoRa.available()) {
    incoming += (char)LoRa.read();
  }
 
  if (incomingLength != incoming.length()) {   // check length for error
    //Serial.println("error: message length does not match length");
    ;
    return;                             // skip rest of function
  }
 
  // if the recipient isn't this device or broadcast,
  if (recipient != localAddress && recipient != 0xFF) {
   // Serial.println("This message is not for me.");
    ;
    return;                             // skip rest of function
  }
 
  // if message is for this device, or broadcast, print details:
  //Serial.println("Received from: 0x" + String(sender, HEX));
  //Serial.println("Sent to: 0x" + String(recipient, HEX));
  //Serial.println("Message ID: " + String(incomingMsgId));
 // Serial.println("Message length: " + String(incomingLength));
 // Serial.println("Message: " + incoming);
//  Serial.println("RSSI: " + String(LoRa.packetRssi()));
//  Serial.println("Snr: " + String(LoRa.packetSnr()));
// Serial.println();
   String q = getValue(incoming, ',', 0);
    // Serial.println("q: " + q);
 
calling = q.toInt();
    //Serial.println(q);
if(calling== 69)
{
 digitalWrite(buzzer, HIGH);
 delay(1000);
 digitalWrite(buzzer,LOW);
 delay(1000);
  digitalWrite(buzzer, HIGH);
 delay(1000);
 digitalWrite(buzzer,LOW);
 delay(1000);
  digitalWrite(buzzer, HIGH);
 delay(1000);
 digitalWrite(buzzer,LOW);
 delay(1000);
 
 calling = 0;  
    
  }
 
  else 
  Serial.println(q);
}
String getValue(String data, char separator, int index)
{
    int found = 0;
    int strIndex[] = { 0, -1 };
    int maxIndex = data.length() - 1;
 
    for (int i = 0; i <= maxIndex && found <= index; i++) {
        if (data.charAt(i) == separator || i == maxIndex) {
            found++;
            strIndex[0] = strIndex[1] + 1;
            strIndex[1] = (i == maxIndex) ? i+1 : i;
        }
    }
    return found > index ? data.substring(strIndex[0], strIndex[1]) : "";
}

for user 2

C/C++
//User2 my Friend Device code 
 

#include <SPI.h>              // include libraries
#include <LoRa.h>
 
byte msgCount = 0;            // count of outgoing messages
byte localAddress = 0xFF;     // address of this device
byte destination = 0xBB;      // destination to send to
 
int buzzer=2;
 
String outgoing;              // outgoing message
String Mymessage;             // stores message from the bluetooth
 
int calling;                  // stores the command
 
void setup() {
  Serial.begin(9600);                   // initialize serial
  Serial.println("LoRa Duplex");
 
  if (!LoRa.begin(433E6)) {             // initialize ratio at 915 MHz
    Serial.println("LoRa init failed. Check your connections.");
    while (true);                       // if failed, do nothing
  }
 
  Serial.println("LoRa init succeeded.");
  pinMode(buzzer,OUTPUT);
}
 
void loop() {
 
   if(Serial.available()>0)
   {
    //read data
    Mymessage=Serial.readString();
    sendMessage(Mymessage);
    delay(100);
    Mymessage = "";
   }
 
 
      // parse for a packet, and call onReceive with the result:
  onReceive(LoRa.parsePacket());
  }
 
 
 
 
 
void sendMessage(String outgoing) {
  LoRa.beginPacket();                   // start packet
  LoRa.write(destination);              // add destination address
  LoRa.write(localAddress);             // add sender address
  LoRa.write(msgCount);                 // add message ID
  LoRa.write(outgoing.length());        // add payload length
  LoRa.print(outgoing);                 // add payload
  LoRa.endPacket();                     // finish packet and send it
  msgCount++;                           // increment message ID
}
 
void onReceive(int packetSize) {
  if (packetSize == 0) return;          // if there's no packet, return
 
  // read packet header bytes:
  int recipient = LoRa.read();          // recipient address
  byte sender = LoRa.read();            // sender address
  byte incomingMsgId = LoRa.read();     // incoming msg ID
  byte incomingLength = LoRa.read();    // incoming msg length
 
  String incoming = "";
 
  while (LoRa.available()) {
    incoming += (char)LoRa.read();
  }
 
  if (incomingLength != incoming.length()) {   // check length for error
    //Serial.println("error: message length does not match length");
    ;
    return;                             // skip rest of function
  }
 
  // if the recipient isn't this device or broadcast,
  if (recipient != localAddress && recipient != 0xBB) {
   // Serial.println("This message is not for me.");
    ;
    return;                             // skip rest of function
  }
 
  // if message is for this device, or broadcast, print details:
  //Serial.println("Received from: 0x" + String(sender, HEX));
  //Serial.println("Sent to: 0x" + String(recipient, HEX));
  //Serial.println("Message ID: " + String(incomingMsgId));
 // Serial.println("Message length: " + String(incomingLength));
 // Serial.println("Message: " + incoming);
//  Serial.println("RSSI: " + String(LoRa.packetRssi()));
//  Serial.println("Snr: " + String(LoRa.packetSnr()));
// Serial.println();
   String q = getValue(incoming, ',', 0);
    // Serial.println("q: " + q);
 
calling = q.toInt();
    //Serial.println(q);
if(calling== 69)
{
 digitalWrite(buzzer, HIGH);
 delay(1000);
 digitalWrite(buzzer,LOW);
 delay(1000);
  digitalWrite(buzzer, HIGH);
 delay(1000);
 digitalWrite(buzzer,LOW);
 delay(1000);
  digitalWrite(buzzer, HIGH);
 delay(1000);
 digitalWrite(buzzer,LOW);
 delay(1000);
 
 calling = 0;  
    
  }
 
  else 
  Serial.println(q);
}
String getValue(String data, char separator, int index)
{
    int found = 0;
    int strIndex[] = { 0, -1 };
    int maxIndex = data.length() - 1;
 
    for (int i = 0; i <= maxIndex && found <= index; i++) {
        if (data.charAt(i) == separator || i == maxIndex) {
            found++;
            strIndex[0] = strIndex[1] + 1;
            strIndex[1] = (i == maxIndex) ? i+1 : i;
        }
    }
    return found > index ? data.substring(strIndex[0], strIndex[1]) : "";
}

Credits

vishal soni
7 projects • 8 followers
Engineer ,Electronic Enthusiast
Contact
Shlok Gupta
1 project • 5 followers
Just a mere developer
Contact

Comments

Please log in or sign up to comment.