The shipping fee depends on your address
Standard: 9-15 business days,fee is down to $3.99
Express: 4-7 business days,fee is down to $5.99
WE'RE READY TO BUILD A CUSTOM PRODUCT FOR YOU.
If you're looking for a custom product, we can help. Kindly contact us via email support@keszoox.com and send us the details for your need, then we'll let you know how we can deliver the right solution.We make into production usually Within 1 - 3 Bussiness Days.
Expect customization orders.The nRF24L01+PA+LNA 2.4GHz RF Wireless Modules are RF transceiver modules that can be used for wireless communications at up to 1100 meters.
These modules operate the same as the standard nRF24L01+, but it adds a power amplifier and detachable antenna to give it an extended range of up to 1100 meters vs the 100 meters of the standard nRF24L01+. The maximum range will vary depending on data rate chosen and on whether there are obstructions to the signal.
The modules operate in the 2.4GHz band at data rates of 250Kbps, 1Mbps or 2Mbps. Max operating current is < 115mA.
The module can use up to 125 different channels spaced 1Mhz apart which cover the frequency spectrum from 2.400GHz to 2.525GHz. This gives the possibility to have a network composed of up to 125 independently working transceivers. Each channel can have up to 6 addresses, or each module can communicate with up to 6 other modules at the same time. Networks can be configured as Star and Tree networks.
The module operates at 3.0V – 3.6V, but the I/O is 5V tolerant, so it can be directly connected to a 5V Arduino or other microcontroller without using any logic level converters. The module power cannot be driven off the 3.3V power pin as the power draw is more than that pin can safely handle. It will need a separate 3.3V source or it can be used with our adapter module below which takes 5V in and has a built-in 3.3V regulator. The adapter also provides pin-out labels, power LED and power supply filtering.
The module uses 5 signal pins in addition to the power and ground pins. Communications with the module use the SPI bus which is composed of 3 pins (MOSI, MISO, SCK). These pins connect to the same SPI pins on the microcontroller. The other 2 pins (CSN, CE) are used for setting the module into standby/active mode as well as switching between transmit or command mode and these can be attached to any 2 digital pins on the microcontroller. In addition, there is an interrupt pin which isn’t typically used.
The module has a 2×4-pin header on the assembly. See pic for layout as the boards may not have the pins labeled.
2 x 4 Header
If our adapter is used (available below), that will ensure that the power to the module is as good as it can be since it includes its own built-in 3.3V regulator and filter caps.
The examples below setup a simple one-way link between a transmitter and receiver using any two Arduinos or similar microcontrollers. The transmitter continually increments a number and transmits the numbers to the receiver that dutifully displays them in the Serial Monitor window.
The modules are being powered off of the Arduino 5V using our adapter modules.
It uses the RF24 library which can be downloaded using the Arduino IDE.
The SPI interface signals are hardwired to specific pins on the different Arduino boards so you will use the pins associated with the boards that you are using. Here is a table of some common pinouts. Note that these SPI pins are also available on the ICSP header if the board has one. In some cases, like the Leonardo, these pins are only available on the ICSP header.
SPI (SCK) | SPI (MOSI) | SPI(MISO) | |
Uno | 13 | 11 | 12 |
Mega | 52 | 51 | 50 |
Nano | 13 | 11 | 12 |
Pro Micro | 15 | 16 | 14 |
Leonardo | ICSP-3 | ICSP-4 | ICSP-1 |
The final 2 connections are the control lines CE (sets RX or TX mode of operation) and CSN (Chip Select). these can be any 2 I/O lines. In our examples, we use pins 7 for CE & 8 for CSN, but these can be changed to other pins if needed. You just need to reassign them in the statement: RF24 radio(7, 8);
/* * nRF24L01 Transmitter Test Software * * Exercises the nRF24L01 Module. This code runs on the transmitter 'Master' device. * Use the nRF24L01_Receiver_Test software for the receiving 'Slave' device * * This uses the RF24.h library which can be installed from the Arduino IDE * Pins used for the SPI interface are determined by the Arduino being used. * The other two pins are arbitrary and can be changed if needed. Redfine them in the RF24 * statement. Default shown here is to use pins 7 & 8 */ #include <SPI.h> #include <nRF24L01.h> #include <RF24.h> RF24 radio(7, 8); // CE, CSN // Define instance of RF24 object called 'radio' and define pins used const byte address[6] = "00001"; // Define address/pipe to use. unsigned long count = 0; // Use to count the number of messages sent char countStr[10]; // Create a char array to hold count as a string //=============================================================================== // Initialization //=============================================================================== void setup() { radio.begin(); // Start instance of the radio object radio.openWritingPipe(address); // Setup pipe to write data to the address that was defined radio.setPALevel(RF24_PA_MAX); // Set the Power Amplified level to MAX in this case radio.stopListening(); // We are going to be the transmitter, so we will stop listening } //=============================================================================== // Main //=============================================================================== void loop() { count++; // Increment the count ltoa(count,countStr, 10); // Convert the count and put into the char array. char text[30] = "Sending Message: "; // Create our base message. strcat (text, countStr); // Append the count to the base message radio.write(&text, sizeof(text)); // Write the char array. delay(1000); // Delay for 1 second, then repeat }
/* * nRF24L01 Receiver Test Software * * Exercises the nRF24L01 Module. This code runs on the receiver 'slave' device. * Use the nRF24L01_Transmitter_Test software for the transmitting 'master' device * * This uses the RF24.h library which can be installed from the Arduino IDE * Pins used for the SPI interface are determined by the Arduino being used. * The other two pins are arbitrary and can be changed if needed. Redfine them in the RF24 * statement. Default shown here is to use pins 7 & */ #include <SPI.h> #include <nRF24L01.h> #include <RF24.h> RF24 radio(7, 8); // CE, CSN // Define instance of RF24 object called 'radio' and define pins used const byte address[6] = "00001"; // Define address/pipe to use. This can be any 5 alphnumeric letters/numbers //=============================================================================== // Initialization //=============================================================================== void setup() { Serial.begin(9600); // Start serial port to display messages on Serial Monitor Window radio.begin(); // Start instance of the radio object radio.openReadingPipe(0, address); // Setup pipe to write data to the address that was defined radio.setPALevel(RF24_PA_MAX); // Set the Power Amplified level to MAX in this case radio.startListening(); // We are going to be the receiver, so we need to start listening } //=============================================================================== // Main //=============================================================================== void loop() { if (radio.available()) { char text[32] = ""; // Clear buffer radio.read(&text, sizeof(text)); // Read incoming message into buffer Serial.println(text); // Print the message to the Serial Monitor window } }
Notes:
Operating Ratings | ||
Vcc | Range | 3.0 to 3.6V (3.3V Typical) |
Imax | Transmission Mode | 115mA Transmission Mode 45mA Receiving Mode 4.2uA Power-down Mode |
Band | 2.4GHz | |
Data Rates | 250Kbps / 1Mbps / 2Mbps | |
RF Channels | 125 | |
Output Power | Maximum | +20dBm |
Receiving Sensitivity | -92dBm (2Mbps mode) -95dBm (1Mbps mode) -104dBm (250Kbps mode) |
|
Transmission Distance | No obstructions | 520m (2Mbps mode) 750m (1Mbps mode) 1100m (250Kbps mode) |
Dimensions | L x W (PCB) | 41 x 15mm (1.6 x 0.6″) |
Length with antenna (straight) | 152mm (6″) | |
Country of Origin | China | |
Datasheets | nRF24L01+ Nordic |
Further Reading
WE'RE READY TO BUILD A CUSTOM PRODUCT FOR YOU.
All orders are dispatched from our warehouse. The shipments are fully tracked—from our door to yours. Please allow 3-5 business days for your order to be processed in addition to the shipping times below.
Standard: 9-15 business days. Express: 4-7 business days.
Please note that shipping providers are extremely busy during this time, and some orders might experience a delay on top of usual delivery times. If your order is late, please allow 5-10 days more than indicated in standard shipping times before contacting our customer service. Thank you for your understanding.
All orders are 100% tracked. You’ll receive an email with a tracking number and a link to track your parcel once your order leaves our warehouse. Please allow 24-48 hours for the tracking link to start showing shipping information.
Receive our latest updates about our products & promotions.
Thanks for subscribing!
This email has been registered!