Description:
The Ra-01 LoRa module is made by Ai-Thinker company, the manufacturer of the ESP32S module, the module uses SX1278 IC, works on 433MHz frequency. It is a high quality made module. The dimension is very small, only 17 x 16 mm, with all the SX1278 pins breakout. The antenna is a spring antenna, well tested by experienced engineer.
The SX1287 transceivers feature the LoRaTM long range modem that provides ultra-long range spread spectrum communication and high interference immunity whilst minimising current consumption.
Using Semtech’s patented LoRaTM modulation technique SX1287 can achieve a sensitivity of over -148dBm using a low cost crystal and bill of materials. The high sensitivity combined with the integrated +20 dBm power amplifier yields industry leading link budget making it optimal for any application requiring range or robustness. LoRaTM also provides significant advantages in both blocking and selectivity over conventional modulation techniques, solving the traditional design compromise between range, interference immunity and energy consumption.
These devices also support high performance (G)FSK modes for systems including WMBus, IEEE802.15.4g. The SX1287 deliver exceptional phase noise, selectivity, receiver linearity and IIP3 for significantly lower current consumption than competing devices.
Note: We provide free breakout board and male pin header for this module, please choose "Yes" for "Adapter breakout board" option.
Features:
Specifications:
Documents:
433E6 ) to work.
Mikroelectron Code:
#include <SPI.h>
#include <LoRa.h>
//define the pins used by the transceiver module
#define ss 5
#define rst 14
#define dio0 2
int counter = 0;
void setup() {
//initialize Serial Monitor
Serial.begin(9600);
// while (!Serial);
// Serial.println("LoRa Sender");
//setup LoRa transceiver module
LoRa.setPins(ss, rst, dio0);
//replace the LoRa.begin(---E-) argument with your location's frequency
//433E6 for Asia
//866E6 for Europe
//915E6 for North America
while (!LoRa.begin(433E6)) {
Serial.println(".");
delay(500);
}
// Change sync word (0xF3) to match the receiver
// The sync word assures you don't get LoRa messages from other LoRa transceivers
// ranges from 0-0xFF
//LoRa.setSyncWord(0xF3);
Serial.println("LoRa Initializing OK!");
}
void loop() {
Serial.print("Sending packet: ");
Serial.println(counter);
//Send LoRa packet to receiver
LoRa.beginPacket();
LoRa.print("hello ");
LoRa.print(counter);
LoRa.endPacket();
counter++;
delay(10000);
}
Quantity | |
---|---|
87 in stock | |
5 JD | 1+ units |
4.75 JD | 10+ units |
4.5 JD | 25+ units |
4.25 JD | 100+ units |