Skip to content

Easily make encrypted, point-to-point LoRa communicators. Made as a university IoT project.

License

Notifications You must be signed in to change notification settings

rwinkhart/LoRaComm

Repository files navigation

Arduino LoRaComm

LoRaComm aims to allow easily creating pairs of portable, encrypted, point-to-point LoRa communicators.

The project is developed and tested on Arduino Uno R3's and was created as part of a university project. As such, many technical choices (language, GUI framework, etc.) do not reflect my usual preferences.

Hardware Guide

Required (per-device; multiply by 2)

  • 1x Arduino Uno R3 or similar board
    • Needs 3.3V out for LoRa module
    • 17 digital pins are needed for a full portable build; only 2 are needed for a minimal docked build
    • Analog pins can be repurposed as digital
  • 1x REYAX RYLR998 UART LoRa modules
  • A method of powering the devices (battery for portable use OR USB serial for docked/web GUI use)
  • Connection medium (breadboard/jumper wires/etc.)

Recommended (per-device; multiply by 2)

  • 1x 1602 LCD + 2.2kΩ resistor (for contrast control)
    • Used to display in-progress and received messages
    • Can be used without by docking to web GUI
  • 1x 4x4 digital matrix keypad
    • Used as portable input
    • Can be used without by docking to web GUI
  • 1x LED + relevant resistor (330Ω used in testing)
    • Used as notification LED
  • 1x USB UART adapter
    • Used for easy programming of LoRa modules
    • Can be done from Arduino directly if needed (just somewhat annoying and harder to debug)
    • See here for an excellent tutorial on programming and understanding basic usage of these LoRa modules
  • A friend to use the devices with

Fritzing Diagram

Please note that the LoRa module in the diagram (RYLR890) is not the one intended for use in this project (RYLR998). A Fritzing part for the RYLR998 does not currently exist.

Fritzing Diagram

LoRa Module Programming

All settings for the RYLR998 LoRa modules are left at factory defaults except for:

  • Baud rate
    • Set to 9600 to compensate for slower Arduino boards/for consistency with Arduino IDE
    • Configure with AT+IPR=9600
  • Network ID
    • Set to anything, as long as it matches between your two modules
    • Configure with AT+NETWORKID=<n>
  • Address
    • One module should use 1 as the address and the other should use 2
    • Configure with AT+ADDRESS=<n>

Keypad Matrix Legend

Keypad Matrix Legend

Software Guide

Arduino Boards

Dependencies

See here for any dependencies not included in Arduino IDE.

Setup

Simply create a 1loracomm folder in your Arduino project directory and download all of the provided *.ino files from this repository.

Warning

The 3DES encryption/decryption key (desKey) provided in 1loracomm.ino is meant to be a placeholder and must be changed before flashing. Since the placeholder key is publicly visible in this repository, it functionally provides no security.

Once you've modified desKey, flash both Arduino boards with the same code. Target LoRa addresses do not need to be specified in the code, as they are determined dynamically at runtime based on the address of the local LoRa module.

Web GUI

Dependencies

  • Node-RED
    • Palettes
      • @flowfuse/node-red-dashboard (AKA Dashboard 2.0)
      • node-red-node-serialport

Setup

The web GUI is a very simple application built in Node-RED. The flows.json containing the GUI is included in this repository. Import it into your Node-RED editor and change the physical serial interface assigned to the serial port to match your environment.

Usage (Portable Mode)

The keypad uses a custom rendition of manual multi-press dialing. Each character key has 4 possible outputs (three that alternate on sequential presses and one that can only be typed from numeric mode).

To use it, press a key the number of times necessary to correspond to your desired character. If you want to type a number or an apostrophe, you must first switch to numeric mode using the "N" key (you can switch back using the "A" key). You may also use the shift key to type capital variations of any letter or to perform a backspace using the "space" key.

After typing your desired input, you must follow it up with the "space" key to confirm it and display it on the connected LCD. To simply type a space, you must press "space" twice.

Once you are ready to send your message, press the "->" key. Once the message is verified to have been received by the LoRa peer, the message will clear from the LCD. If the message never clears from the LCD, either the message itself or the peer verification was lost in transit. Simply press send again (the peer will not display duplicate messages when just the verification was lost).

Demonstration of Physical Build

Coming soon

Research documentation

To be published upon completion of university course