

The RFM92/95 Breakout (433MHz) is a compact module designed for wireless communication, operating at a frequency of 433MHz. It is ideal for low-power applications such as remote sensors, Internet of Things (IoT) devices, and other wireless data transmission systems. This module features a built-in transceiver, enabling both data transmission and reception, making it a versatile choice for bidirectional communication.
Common applications include:








The RFM92/95 Breakout module is based on the Semtech SX1276/77/78/79 LoRa transceiver chip, which supports long-range communication with low power consumption. Below are the key technical details:
| Parameter | Value |
|---|---|
| Frequency Range | 433MHz |
| Modulation Techniques | LoRa™, FSK, GFSK, OOK |
| Output Power | Up to +20 dBm (100mW) |
| Sensitivity | Down to -148 dBm |
| Data Rate | 0.018 kbps to 37.5 kbps |
| Operating Voltage | 1.8V to 3.7V |
| Current Consumption | 10.8mA (Rx), 120mA (Tx @ +20dBm) |
| Communication Interface | SPI |
| Operating Temperature | -40°C to +85°C |
| Dimensions | 16mm x 16mm |
The RFM92/95 Breakout module has the following pinout:
| Pin Name | Pin Number | Description |
|---|---|---|
| GND | 1 | Ground connection |
| VCC | 2 | Power supply input (1.8V to 3.7V) |
| SCK | 3 | SPI Clock input |
| MISO | 4 | SPI Master-In-Slave-Out (data output from the module) |
| MOSI | 5 | SPI Master-Out-Slave-In (data input to the module) |
| NSS | 6 | SPI Chip Select (active low) |
| DIO0 | 7 | Digital I/O pin 0 (used for interrupts or status signaling) |
| DIO1 | 8 | Digital I/O pin 1 (used for interrupts or status signaling) |
| RESET | 9 | Reset pin (active low) |
| ANT | 10 | Antenna connection for RF signal transmission and reception |
Below is an example of how to connect the RFM92/95 Breakout to an Arduino UNO and send data using the LoRa library.
| RFM92/95 Pin | Arduino UNO Pin |
|---|---|
| VCC | 3.3V |
| GND | GND |
| SCK | D13 |
| MISO | D12 |
| MOSI | D11 |
| NSS | D10 |
| RESET | D9 |
| DIO0 | D2 |
#include <SPI.h>
#include <LoRa.h> // Include the LoRa library
#define NSS 10 // Chip Select pin
#define RESET 9 // Reset pin
#define DIO0 2 // DIO0 pin
void setup() {
Serial.begin(9600); // Initialize serial communication
while (!Serial);
Serial.println("Initializing LoRa module...");
// Initialize LoRa module
LoRa.setPins(NSS, RESET, DIO0);
if (!LoRa.begin(433E6)) { // Set frequency to 433MHz
Serial.println("LoRa initialization failed!");
while (1);
}
Serial.println("LoRa initialized successfully!");
}
void loop() {
Serial.println("Sending packet...");
LoRa.beginPacket(); // Start a new packet
LoRa.print("Hello, world!"); // Add data to the packet
LoRa.endPacket(); // Send the packet
delay(5000); // Wait 5 seconds before sending the next packet
}
No Communication with the Module
Poor Signal Range
Module Not Responding
Interference with Other Devices
Q: Can I use the RFM92/95 Breakout with a 5V microcontroller?
A: The module operates at 1.8V to 3.7V. Use a level shifter for SPI signals if your microcontroller operates at 5V.
Q: What is the maximum range of the RFM92/95 module?
A: The range depends on environmental factors, antenna quality, and LoRa settings. In ideal conditions, it can achieve up to 10km.
Q: Can I use this module for FSK or OOK modulation?
A: Yes, the RFM92/95 supports FSK, GFSK, and OOK modulation in addition to LoRa.
Q: How do I optimize power consumption?
A: Use the module's sleep mode when not transmitting or receiving data to minimize power usage.