Ra-01 LoRa SX1278 433M 10KM Wireless Module

Product Highlights

  • Ultra-Long Range: Reliable data transmission up to 10KM (Line of Sight).
  • SX1278 Technology: Advanced LoRa™ modulation for superior interference immunity.
  • Battery Optimized: Sleep current lower than 1µA for multi-year sensor operation.
  • Industrial Grade: High sensitivity (-148dBm) and wide temperature tolerance.
  • Compact & Integrated: Small SMD footprint with an included spring antenna.
SKU: EK1948 Categories: , Tags: ,

Apple Shopping Event

Hurry and get discounts on all Apple devices up to 20%

500,00 EGP

14 People watching this product now!

Payment Methods:

Description

Ra-01 LoRa SX1278 433MHz Wireless Module (10KM Range)

The Ra-01 is a high-performance long-range wireless transceiver module developed by
Ai-Thinker, based on the Semtech SX1278 chip. Using LoRa™ spread
spectrum technology, it overcomes the limitations of traditional RF communication, offering
extraordinary interference immunity and ultra-long-distance data transmission (up to 10KM).
It is the ultimate solution for IoT projects, remote sensing, and smart agriculture.


Key Features

  • Extreme Long Range: Capable of transmitting data up to 10KM in open-field (Line of Sight) conditions.
  • LoRa™ Modulation: Provides superior anti-interference performance compared to standard FSK/GFSK.
  • Ultra-Low Power Consumption: Features a sleep mode current of less than 1µA, perfect for battery-powered sensors.
  • High Sensitivity: Industry-leading sensitivity down to -148 dBm.
  • Compact Form Factor: Small SMD package (17 x 16 mm) with an integrated spring antenna for easy integration.

Full Technical Specifications

Attribute Details
Main Chipset Semtech SX1278
Operating Frequency 433 MHz (420MHz – 450MHz range)
Communication Interface SPI (Half-Duplex)
Operating Voltage 1.8V to 3.7V DC (3.3V Recommended)
Max Transmit Power +20 dBm (100mW)
Dynamic Range 127dB RSSI
Packet Engine Up to 256 bytes with CRC
Operating Temperature -40°C to +85°C (Industrial Grade)

Common Applications

  • Smart Agriculture: Monitoring soil moisture or weather stations across large farms.
  • Industrial Control: Long-distance wireless monitoring of machinery and equipment.
  • Smart City: Automated meter reading (AMR) and environmental monitoring.
  • Remote Robotics: Reliable control links for drones or outdoor ground vehicles.

⚠️ Critical Engineering Notes:

  1. Logic Level: This module uses 3.3V logic. Connecting it directly to a 5V Arduino board without a level shifter will damage the chip.
  2. Antenna Safety: Never power the module without the antenna connected. Operating without a load can cause permanent damage to the transmitter.
  3. Power Supply: Ensure your 3.3V supply can handle the peak current (approx. 120mA) during transmission.
🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
Ra-01 (SX1278)VCC/GND/NSS/RST/DIO03.3V only / GND / board digital / board digital / board digital
📟
Ra-01 LoRa SX1278 433M 10KM Wireless Module
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
Ra-01 LoRa SX1278 433M 10KM Wireless Module - Arduino Uno
Ra-01 LoRa SX1278 433M 10KM Wireless Module - Arduino Nano
Ra-01 LoRa SX1278 433M 10KM Wireless Module - Arduino Mega
Ra-01 LoRa SX1278 433M 10KM Wireless Module - ESP32
Ra-01 LoRa SX1278 433M 10KM Wireless Module - ESP8266
Ra-01 LoRa SX1278 433M 10KM Wireless Module - STM32
Ra-01 LoRa SX1278 433M 10KM Wireless Module - Raspberry Pi Pico
📄 File: ra-01_lora_sx1278_433m_10km_wireless_module_-_arduino_uno.inoArduino Uno
607 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// NSS=10, RST=9, DIO0=2 on Arduino Uno (MOSI/MISO/SCK use the board's default hardware SPI pins)
6#include <SPI.h>
7#include <LoRa.h>
8
9#define LORA_NSS 10
10#define LORA_RST 9
11#define LORA_DIO0 2
12
13void setup() {
14 Serial.begin(115200);
15 LoRa.setPins(LORA_NSS, LORA_RST, LORA_DIO0);
16 if (!LoRa.begin(433E6)) { // match your region's LoRa frequency (433/868/915 MHz)
17 Serial.println("LoRa init failed!");
18 while (1) delay(10);
19 }
20}
21
22void loop() {
23 LoRa.beginPacket();
24 LoRa.print("Hello from Ekostra");
25 LoRa.endPacket();
26 delay(2000);
27}
📄 File: ra-01_lora_sx1278_433m_10km_wireless_module_-_arduino_nano.inoArduino Nano
608 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// NSS=10, RST=9, DIO0=2 on Arduino Nano (MOSI/MISO/SCK use the board's default hardware SPI pins)
6#include <SPI.h>
7#include <LoRa.h>
8
9#define LORA_NSS 10
10#define LORA_RST 9
11#define LORA_DIO0 2
12
13void setup() {
14 Serial.begin(115200);
15 LoRa.setPins(LORA_NSS, LORA_RST, LORA_DIO0);
16 if (!LoRa.begin(433E6)) { // match your region's LoRa frequency (433/868/915 MHz)
17 Serial.println("LoRa init failed!");
18 while (1) delay(10);
19 }
20}
21
22void loop() {
23 LoRa.beginPacket();
24 LoRa.print("Hello from Ekostra");
25 LoRa.endPacket();
26 delay(2000);
27}
📄 File: ra-01_lora_sx1278_433m_10km_wireless_module_-_arduino_mega.inoArduino Mega
608 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// NSS=53, RST=9, DIO0=2 on Arduino Mega (MOSI/MISO/SCK use the board's default hardware SPI pins)
6#include <SPI.h>
7#include <LoRa.h>
8
9#define LORA_NSS 53
10#define LORA_RST 9
11#define LORA_DIO0 2
12
13void setup() {
14 Serial.begin(115200);
15 LoRa.setPins(LORA_NSS, LORA_RST, LORA_DIO0);
16 if (!LoRa.begin(433E6)) { // match your region's LoRa frequency (433/868/915 MHz)
17 Serial.println("LoRa init failed!");
18 while (1) delay(10);
19 }
20}
21
22void loop() {
23 LoRa.beginPacket();
24 LoRa.print("Hello from Ekostra");
25 LoRa.endPacket();
26 delay(2000);
27}
📄 File: ra-01_lora_sx1278_433m_10km_wireless_module_-_esp32.inoESP32
601 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// NSS=5, RST=14, DIO0=2 on ESP32 (MOSI/MISO/SCK use the board's default hardware SPI pins)
6#include <SPI.h>
7#include <LoRa.h>
8
9#define LORA_NSS 5
10#define LORA_RST 14
11#define LORA_DIO0 2
12
13void setup() {
14 Serial.begin(115200);
15 LoRa.setPins(LORA_NSS, LORA_RST, LORA_DIO0);
16 if (!LoRa.begin(433E6)) { // match your region's LoRa frequency (433/868/915 MHz)
17 Serial.println("LoRa init failed!");
18 while (1) delay(10);
19 }
20}
21
22void loop() {
23 LoRa.beginPacket();
24 LoRa.print("Hello from Ekostra");
25 LoRa.endPacket();
26 delay(2000);
27}
📄 File: ra-01_lora_sx1278_433m_10km_wireless_module_-_esp8266.inoESP8266
607 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// NSS=D8, RST=D0, DIO0=D1 on ESP8266 (MOSI/MISO/SCK use the board's default hardware SPI pins)
6#include <SPI.h>
7#include <LoRa.h>
8
9#define LORA_NSS D8
10#define LORA_RST D0
11#define LORA_DIO0 D1
12
13void setup() {
14 Serial.begin(115200);
15 LoRa.setPins(LORA_NSS, LORA_RST, LORA_DIO0);
16 if (!LoRa.begin(433E6)) { // match your region's LoRa frequency (433/868/915 MHz)
17 Serial.println("LoRa init failed!");
18 while (1) delay(10);
19 }
20}
21
22void loop() {
23 LoRa.beginPacket();
24 LoRa.print("Hello from Ekostra");
25 LoRa.endPacket();
26 delay(2000);
27}
📄 File: ra-01_lora_sx1278_433m_10km_wireless_module_-_stm32.inoSTM32
611 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// NSS=PA4, RST=PB0, DIO0=PB1 on STM32 (MOSI/MISO/SCK use the board's default hardware SPI pins)
6#include <SPI.h>
7#include <LoRa.h>
8
9#define LORA_NSS PA4
10#define LORA_RST PB0
11#define LORA_DIO0 PB1
12
13void setup() {
14 Serial.begin(115200);
15 LoRa.setPins(LORA_NSS, LORA_RST, LORA_DIO0);
16 if (!LoRa.begin(433E6)) { // match your region's LoRa frequency (433/868/915 MHz)
17 Serial.println("LoRa init failed!");
18 while (1) delay(10);
19 }
20}
21
22void loop() {
23 LoRa.beginPacket();
24 LoRa.print("Hello from Ekostra");
25 LoRa.endPacket();
26 delay(2000);
27}
📄 File: ra-01_lora_sx1278_433m_10km_wireless_module_-_raspberry_pi_pico.inoRaspberry Pi Pico
617 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// NSS=17, RST=20, DIO0=21 on Raspberry Pi Pico (MOSI/MISO/SCK use the board's default hardware SPI pins)
6#include <SPI.h>
7#include <LoRa.h>
8
9#define LORA_NSS 17
10#define LORA_RST 20
11#define LORA_DIO0 21
12
13void setup() {
14 Serial.begin(115200);
15 LoRa.setPins(LORA_NSS, LORA_RST, LORA_DIO0);
16 if (!LoRa.begin(433E6)) { // match your region's LoRa frequency (433/868/915 MHz)
17 Serial.println("LoRa init failed!");
18 while (1) delay(10);
19 }
20}
21
22void loop() {
23 LoRa.beginPacket();
24 LoRa.print("Hello from Ekostra");
25 LoRa.endPacket();
26 delay(2000);
27}
SPI long-range LoRa transceiver.

نظرة عامة ومواصفات المنتج — بالعربية

Ra-01 LoRa SX1278 433M 10KM Wireless Module متوفر الآن في متجر إكوسترا للإلكترونيات، ضمن قسم IoT and Wireless وLORA WiFi، بسعر 500,00 EGP. كود المنتج لدينا: EK1948. المنتج غير متوفر حالياً — تواصل معنا عبر واتساب لمعرفة موعد توفره القادم.

أهم المواصفات الفنية:

  • Product Name: Ra-01 LoRa SX1278 Wireless Module
  • Type: LoRa Wireless Communication Module
  • الشريحة: SX1278
  • Frequency: 433 MHz
  • Communication Range: Up to 10 km (Line of Sight)
  • Operating Voltage: 3.3V DC
  • واجهة الاتصال: SPI
  • Transmission Power: 20 dBm (Max)

هذا المنتج مناسب لمشاريع الأردوينو (Arduino) و ESP32 و Raspberry Pi، ومشاريع الروبوتات وإنترنت الأشياء والتعليم الهندسي. جميع القطع مفحوصة قبل الشحن.

تصفّح المزيد من IoT and Wireless في إكوسترا.

Specification

Specification

WeightWeight8 g
Dimensions3 × 2 × 1 cm
Product NameRa-01 LoRa SX1278 Wireless Module
TypeLoRa Wireless Communication Module
ChipsetSX1278
Frequency433 MHz
Communication RangeUp to 10 km (Line of Sight)
Operating Voltage3.3V DC
InterfaceSPI
Transmission Power20 dBm (Max)
Sensitivity-137 dBm
ModulationLoRa / FSK
FeaturesLong Range, Low Power, Reliable Wireless Communication
ApplicationIoT Projects, Remote Sensing, Smart Agriculture, Wireless Data Transmission

Customer Reviews