The NRF24L01 is a 2.4GHz transceiver module that allows your Arduino boards (or robots!) to communicate wirelessly β both sending and receiving data!
Itβs ideal for robot-to-robot comms, wireless sensors, remote controllers, and DIY IoT projects. ππΆ
βοΈ Key Features
Feature | Description |
---|---|
Frequency | 2.4 GHz (ISM band) |
Range | ~100m (with PA+LNA version) |
Data rate | Up to 2 Mbps |
Communication | SPI |
Voltage | 3.3V ONLY (β οΈ not 5V-tolerant!) |
Multi-device mode | Supports 6 data pipes |
Power consumption | Very low (great for batteries) π |
β οΈ Needs 3.3V β connecting VCC to 5V will fry it!
𧩠Pinout (8 pins)
Pin | Function |
---|---|
GND | Ground |
VCC | 3.3V power only β οΈ |
CE | Chip Enable |
CSN | SPI Chip Select |
SCK | SPI Clock |
MOSI | SPI Data to module |
MISO | SPI Data from module |
IRQ | Interrupt (optional) |
π Wiring with Arduino UNO
NRF24L01 | Arduino UNO |
---|---|
GND | GND |
VCC | 3.3V |
CE | D9 |
CSN | D10 |
SCK | D13 |
MOSI | D11 |
MISO | D12 |
IRQ | Not used |
π Pro tip: Add a 10Β΅F capacitor between VCC and GND to stabilize power (especially if using the PA+LNA long-range version).
π¦ Libraries to Use
Install via Arduino IDE Library Manager:
RF24
by TMRh20 (most popular & well-documented)- Comes with examples like
GettingStarted
,pingpair
, etc.
π¬ Arduino Code Example (Transmitter)
#include <SPI.h>
#include <nRF24L01.h>
#include <RF24.h>
RF24 radio(9, 10); // CE, CSN
const byte address[6] = "00001";
void setup() {
Serial.begin(9600);
radio.begin();
radio.openWritingPipe(address);
radio.setPALevel(RF24_PA_LOW);
radio.stopListening(); // Set as transmitter
}
void loop() {
const char text[] = "Hello Robot!";
radio.write(&text, sizeof(text));
Serial.println("Sent: Hello Robot!");
delay(1000);
}
π― Use a second Arduino with the same code, but with radio.startListening()
instead β and boom, wireless comms!
π§ͺ Use Cases
- π§ Wireless remote control (joysticks, sliders)
- π€ Robot-to-robot communication
- π Sensor networks (e.g., temperature nodes)
- π§ Swarm robotics
- π‘ Home automation systems
β οΈ Tips & Gotchas
β οΈ 3.3V only β use AMS1117 regulator if needed
β οΈ Power-hungry on transmit β use capacitor
β οΈ Avoid long jumper wires (can cause instability)
β οΈ Use separate 3.3V LDO if your Arduino’s regulator is weak
π Variants
Version | Features |
---|---|
NRF24L01 | Standard ~100m |
NRF24L01+PA+LNA | Long-range, with antenna booster π‘ |
SMD versions | Compact & SMD-friendly |