2.4GHz Wireless Transceiver nRF 24L01 (85 meter)

nRF24L01 2.4GHz wireless transceiver with up to 2Mbps and ultra-low power.

Apple Shopping Event

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

65,00 EGP

4 People watching this product now!

Payment Methods:

Description

The nRF24L01 2.4GHz Wireless Transceiver Module is a highly integrated, ultra-low-power RF solution for the 2.4GHz ISM band. Operating at up to 2Mbps with GFSK modulation for excellent efficiency and interference resistance, this module is particularly suitable for industrial control and wireless communication applications.

With peak RX/TX currents below 14mA and a sub-μA power-down mode, the nRF24L01 provides exceptional power management for battery-operated devices. Built-in hardware CRC error detection ensures reliable data transmission, while the 1.9 to 3.6V supply range supports various power sources. Its multi-purpose antenna design delivers stable communication over significant distances.

🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
nRF24L01VCC/GND/CE/CSN3.3V only / GND / board digital pin / board digital pin
📟
2.4GHz Wireless Transceiver nRF 24L01 (85 meter)
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
2.4GHz Wireless Transceiver nRF 24L01 (85 meter) - Arduino Uno
2.4GHz Wireless Transceiver nRF 24L01 (85 meter) - Arduino Nano
2.4GHz Wireless Transceiver nRF 24L01 (85 meter) - Arduino Mega
2.4GHz Wireless Transceiver nRF 24L01 (85 meter) - ESP32
2.4GHz Wireless Transceiver nRF 24L01 (85 meter) - ESP8266
2.4GHz Wireless Transceiver nRF 24L01 (85 meter) - STM32
2.4GHz Wireless Transceiver nRF 24L01 (85 meter) - Raspberry Pi Pico
📄 File: 2.4ghz_wireless_transceiver_nrf_24l01_(85_meter)_-_arduino_uno.inoArduino Uno
499 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// CE=9, CSN=10 on Arduino Uno (MOSI/MISO/SCK use the board's default hardware SPI pins)
6#include <SPI.h>
7#include <RF24.h>
8
9RF24 radio(9, 10);
10const byte address[6] = "1Node";
11
12void setup() {
13 Serial.begin(115200);
14 radio.begin();
15 radio.openWritingPipe(address);
16 radio.setPALevel(RF24_PA_LOW);
17 radio.stopListening();
18}
19
20void loop() {
21 const char text[] = "Hello from Ekostra";
22 radio.write(&text, sizeof(text));
23 delay(1000);
24}
📄 File: 2.4ghz_wireless_transceiver_nrf_24l01_(85_meter)_-_arduino_nano.inoArduino Nano
500 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// CE=9, CSN=10 on Arduino Nano (MOSI/MISO/SCK use the board's default hardware SPI pins)
6#include <SPI.h>
7#include <RF24.h>
8
9RF24 radio(9, 10);
10const byte address[6] = "1Node";
11
12void setup() {
13 Serial.begin(115200);
14 radio.begin();
15 radio.openWritingPipe(address);
16 radio.setPALevel(RF24_PA_LOW);
17 radio.stopListening();
18}
19
20void loop() {
21 const char text[] = "Hello from Ekostra";
22 radio.write(&text, sizeof(text));
23 delay(1000);
24}
📄 File: 2.4ghz_wireless_transceiver_nrf_24l01_(85_meter)_-_arduino_mega.inoArduino Mega
500 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// CE=9, CSN=10 on Arduino Mega (MOSI/MISO/SCK use the board's default hardware SPI pins)
6#include <SPI.h>
7#include <RF24.h>
8
9RF24 radio(9, 10);
10const byte address[6] = "1Node";
11
12void setup() {
13 Serial.begin(115200);
14 radio.begin();
15 radio.openWritingPipe(address);
16 radio.setPALevel(RF24_PA_LOW);
17 radio.stopListening();
18}
19
20void loop() {
21 const char text[] = "Hello from Ekostra";
22 radio.write(&text, sizeof(text));
23 delay(1000);
24}
📄 File: 2.4ghz_wireless_transceiver_nrf_24l01_(85_meter)_-_esp32.inoESP32
491 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// CE=4, CSN=5 on ESP32 (MOSI/MISO/SCK use the board's default hardware SPI pins)
6#include <SPI.h>
7#include <RF24.h>
8
9RF24 radio(4, 5);
10const byte address[6] = "1Node";
11
12void setup() {
13 Serial.begin(115200);
14 radio.begin();
15 radio.openWritingPipe(address);
16 radio.setPALevel(RF24_PA_LOW);
17 radio.stopListening();
18}
19
20void loop() {
21 const char text[] = "Hello from Ekostra";
22 radio.write(&text, sizeof(text));
23 delay(1000);
24}
📄 File: 2.4ghz_wireless_transceiver_nrf_24l01_(85_meter)_-_esp8266.inoESP8266
497 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// CE=D3, CSN=D8 on ESP8266 (MOSI/MISO/SCK use the board's default hardware SPI pins)
6#include <SPI.h>
7#include <RF24.h>
8
9RF24 radio(D3, D8);
10const byte address[6] = "1Node";
11
12void setup() {
13 Serial.begin(115200);
14 radio.begin();
15 radio.openWritingPipe(address);
16 radio.setPALevel(RF24_PA_LOW);
17 radio.stopListening();
18}
19
20void loop() {
21 const char text[] = "Hello from Ekostra";
22 radio.write(&text, sizeof(text));
23 delay(1000);
24}
📄 File: 2.4ghz_wireless_transceiver_nrf_24l01_(85_meter)_-_stm32.inoSTM32
499 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// CE=PB0, CSN=PA4 on STM32 (MOSI/MISO/SCK use the board's default hardware SPI pins)
6#include <SPI.h>
7#include <RF24.h>
8
9RF24 radio(PB0, PA4);
10const byte address[6] = "1Node";
11
12void setup() {
13 Serial.begin(115200);
14 radio.begin();
15 radio.openWritingPipe(address);
16 radio.setPALevel(RF24_PA_LOW);
17 radio.stopListening();
18}
19
20void loop() {
21 const char text[] = "Hello from Ekostra";
22 radio.write(&text, sizeof(text));
23 delay(1000);
24}
📄 File: 2.4ghz_wireless_transceiver_nrf_24l01_(85_meter)_-_raspberry_pi_pico.inoRaspberry Pi Pico
507 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// CE=20, CSN=17 on Raspberry Pi Pico (MOSI/MISO/SCK use the board's default hardware SPI pins)
6#include <SPI.h>
7#include <RF24.h>
8
9RF24 radio(20, 17);
10const byte address[6] = "1Node";
11
12void setup() {
13 Serial.begin(115200);
14 radio.begin();
15 radio.openWritingPipe(address);
16 radio.setPALevel(RF24_PA_LOW);
17 radio.stopListening();
18}
19
20void loop() {
21 const char text[] = "Hello from Ekostra";
22 radio.write(&text, sizeof(text));
23 delay(1000);
24}
SPI 2.4GHz transceiver - very popular for Arduino-to-Arduino wireless links.

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

2.4GHz Wireless Transceiver nRF 24L01 (85 meter) متوفر الآن في متجر إكوسترا للإلكترونيات، ضمن قسم IoT and Wireless، بسعر 65,00 EGP. كود المنتج لدينا: NRF2401. المنتج غير متوفر حالياً — تواصل معنا عبر واتساب لمعرفة موعد توفره القادم.

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

  • Item Type: Wireless Module
  • الموديل: NRF24L01
  • Frequency: 2400 MHz (2.4GHz)
  • Data Rate: Up to 2Mbps
  • Modulation: GFSK
  • Supply Voltage: 1.9 ~ 3.6V
  • التيار: RX/TX < 14mA
  • Features: Hardware CRC error detection

منتج أصلي بجودة مضمونة من إكوسترا، مع دعم فني ومتابعة بعد البيع لكل عملائنا في مصر.

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

Specification

Specification

WeightWeight10 g
Dimensions5 × 4 × 2 cm
Item TypeWireless Module
ModelNRF24L01
Frequency2400 MHz (2.4GHz)
Data RateUp to 2Mbps
ModulationGFSK
Supply Voltage1.9 ~ 3.6V
CurrentRX/TX < 14mA
FeaturesHardware CRC error detection

Customer Reviews