Product Specifications

General

Type: Transceiver Module
Architecture: For all MCUs (microcontrollers)
Operating Frequency Range: 868 - 1020 MHz / 868-915 MHz
Engine IC (Integrated Circuit): Semtech SX1276
Control Method: Using AT commands
Dynamic Range RSSI (Received Signal Strength Indication): 127 dB
Antenna Type: PCB integrated
Data Encryption Type: AES128
Filter Insertion Loss: 1 dB - 3 dB
RF (Radio Frequency) Sensitivity: -148 dB (minimum)
RF (Radio Frequency) Input Level: 10 dBm (maximum)
Frequency Accuracy: ±2 ppm
Communication Range: 15 km (maximum, depending on the radio frequency parameters)
Cycling (erase/write) EEPROM data memory: 300K (in cycles)
Operating Temperature: -40 - 85˚C

Power

Operating Voltage (VDD): +2.8 - +3.6 volts
RF (Radio Frequency) Output Power Range: -4 - 15 dBm
Digital Input Level High Voltage: (0.7*VDD) - (VDD) volts
Digital Input Level Low Voltage: 0 - (0.3*VDD) volts
Digital Output Level High Voltage: +0.9 - (VDD) volts
Digital Output Level Low Voltage: 0.1 volts (maximum)
Transmit Current: 43mA
Receive Current: 16.5mA
Sleep Current: 0.5μA

Weight and Size Dimensions

Product Weight: 3g
Product Size (L x W x H): 45.2 x 16.8 x 4.8 mm

Pinout

VDD - Input Voltage (+)
TXD - Data Transmit
RXD - Data Receive
NRST - Reset (Active Low)
GND - GND (-)

Product Review

After some tests with this LoRa transceiver module, I found some very surprising aspects of this product which absolutely shocked me, which includes:
1. Its very far range, up to a few kilometres with this module's small size and its small antenna. This product can be really useful for long-range communication devices.
2. The simple UART (serial) interface which this module runs on, and this interface makes it simple to hook this module up to a microcontroller when programming or reading information from it.
3. This product's excellent immunity to block out unwanted, outside signals which can possibly interfere with the transmission and receiving of data.
4. Along with my above comment about its immunity, this transceiver module also has a high sensitivity, thus, there is a higher chance for a clear line for data to be passed between modules and not be distorted.
5. Even though there are very long-range parameters set on this module, its current consumption is considered to be very low. The low operating current minimizes any major power draw, especially in any portable projects which doesn't have a large power supply in-hand.
6. The module's very compact, small size with its built-in antenna for smaller-scale projects like a two-way communication system or remote control electronics.

Arduino Reyax RYLR896 LoRa Transceiver Module Sample Code (Transmitter)

#define ledPin 2
unsigned long lastTransmission;
const int interval = 1000;

void setup(){
    Serial.begin(115200);
    pinMode(ledPin,OUTPUT);
}

void loop(){
    if (millis() > lastTransmission + interval){
        Serial.println("AT+SEND=0,8,Testing!");
        digitalWrite(ledPin,HIGH);
        delay(100);
        digitalWrite(ledPin, LOW);
        lastTransmission = millis();
    }
}

Arduino Reyax RYLR896 LoRa Transceiver Module Sample Code (Receiver)

#define ledPin 2
String incomingString;

void setup(){
    Serial.begin(115200);
    pinMode(ledPin,OUTPUT);
}

void loop(){
    if (Serial.available()){
        incomingString = Serial.readString();
        if(incomingString.indexOf("Testing!") == 0){
            digitalWrite(ledPin,HIGH);
            delay(100);
            digitalWrite(ledPin,LOW);
        }
    }
}

Reyax Product Page

Picture

Check out the product here: http://reyax.com.cn/products/rylr896/

Amazing opportunities

Also, be sure to check out PCBWay, a leading manufacturer and distributor in PCB design and manufacturing. They have amazing prices and excellent quality in their services, so don't miss out on them! Plus, PCBWay has an amazing website, online Gerber viewer function and a gift shop so make sure to check out their links below:

PCBWay Free Online Gerber Viewer Function:  https://www.pcbway.com/project/OnlineGerberViewer.html

PCBWay Gift Shop: https://www.pcbway.com/projects/gifts.html...

Read more »