ESP32 Bit Pirate home
  • RF24
  • Intermediate
  • 5 min
  • Serial CLI

Recipe · Intermediate · RF24

How to send an RF24 payload

Use RF24 mode to send a short payload through an nRF24L01 module after configuration.

nRF24L01 radio module with 2.4 GHz signal.
A practical ESP32 Bit Pirate workflow based on the documented firmware commands.
Step 1

Commands

Run the workflow from the CLI after selecting the matching mode.

Result

What it means

The output confirms that the protocol path is working and gives you a baseline for deeper experiments.

Troubleshooting

  • Check wiring and shared ground.
  • Re-enter the mode setup if pins or speed changed.
  • Start with a known-good module before testing unknown hardware.

Next steps

  • Open receive mode on another ESP32 Bit Pirate.
  • Try a quiet channel found with sweep or scan.
  • Keep notes about the payload format you used.

RF24 payload send FAQ

What do I need before sending an RF24 payload?

Configure the nRF24L01 pins, choose a channel with setchannel, and have a compatible receiver listening with matching RF settings and payload expectations.

What must match between RF24 sender and receiver?

Both sides need compatible channel, address, payload length, data rate, CRC and power expectations. The send recipe only proves the transmitter side of that shared setup.

Can RF24 send Wi-Fi or BLE packets?

No. nRF24L01 can detect 2.4 GHz activity during scans, but it does not decode or transmit Wi-Fi or BLE protocol frames.

Go deeper