• Maximum operating speeds up to 2Mbps, GFSK modulation efficiency, Anti-interference ability, Particularly suitable for industrial control applications.
  • 125 Communications channels, Multi-point communication and frequency hopping to meet the communication needs.
  • Built-in hardware CRC error detection, Multipoint communication address control. Built-in 2.4Ghz antenna.
  • nRF24L01 is a single chip radio transceiver for the worldwide 2.4 - 2.5 GHz ISM band. Compatible with Arduino and Raspberry Pi.
  • Applications: wireless peripherals, remote control systems such as RC vehicles and consumer remote electronics, wireless voice transmission such as VoIP, wireless sensor networks, wireless networks, home and commercial automation.

.Just started my project with these little boards and found that they are exactly as described. Providing you get the code right they just work. Very happy with them and will definitely use again on other projects in the future. Thank you.

I was glad that all of the transceiver modules arrived in good condition (arrived in sealed Anti-Static bags). It provides stable and accurate 3.3v power to the radio transceiver from my 5v arduino pro mini with the integrated regulator, and allows me to quickly swap between the regular NRF24L01+ and NRF24L01+PA+LNA when needed. I would definitely recommend this product to anyone working on DIY arduino projects.

I wish this device came with a library. If using Arduino, need to include it in the Arduino/libraries/RF24-master/ path. Below is the sample code I used to communicate with this RF transceivers: // define the radio #include #include #include #define CE_PIN 7 #define CSN_PIN 8 const byte thisSlaveAddress[5] = {'R','x','A','A','A'}; RF24 radio(CE_PIN, CSN_PIN); This should make it pretty simple to talk to these devices. Please feel free to ask me if you have any other questions.