Design Goals:
-
Maximally compliant with the intended operation of the chip
-
Easy for beginners to use
-
Consumed with a public interface that's similiar to other Arduino standard libraries
-
Built against the standard SPI library.
-
Support popular platform
-
Modifications to the RF24 library in this fork is backward compatible. A single enhancement which may cause issue, is code which relies on the driver to power down the radio, as a side effect. The radio is no longer powered down after each transmit. Rather, the application must take responsibility for power management. Normally this is achieved by use of powerDown and powerUp. If you wish to maximize power efficiency, you must call powerDown after transmit (write, startWrite).
Please refer to links :
- [Blog on setting up both Arduino UNO & Raspberry Pi] (http://arduino-for-beginners.blogspot.com/2013/02/setup-nordic-nrf24l01-rf-modules-to.html)
- Documentation Main Page
- RF24 Class Documentation
- Source Code
- Downloads
- nRF24L01+ datasheet
Design Goals: This library is designed to be...
- More compliant with the manufacturer specified operation of the chip, while allowing advanced users
- to work outside the reccommended operation.
- Utilize the capabilities of the radio to their full potential via Arduino
- More reliable and feature rich
- Easy for beginners to use, with well documented examples and features
- Consumed with a public interface that's similiar to other Arduino standard libraries
- Built against the standard SPI library.
April 2014: Official Release: Still some work to do, but most benefits have been realized
327f0609cf7b52b70accccc175b5809dd5074704
- The library has been tweaked to allow full use of the FIFO buffers for maximum transfer speeds
- Changes to read() and available () functionality have increased reliability and response
- Extended timeout periods have been added to aid in noisy or otherwise unreliable environments
- Delays have been removed where possible to ensure maximum efficiency
- Full Due support with extended SPI functions
- ATTiny 24/44/84 25/45/85 now supported.
- More! See the links below and class documentation for more info.
Please refer to:
This chip uses the SPI bus, plus two chip control pins. Remember that pin 10 must still remain an output, or
the SPI hardware will go into 'slave' mode.
Supported Boards:
- Uno, Nano, etc (328 based boards)
- Mega Types (2560, 1280, etc)
- ARM (Arduino Due) via extended SPI methods
- ATTiny 24/44/84 25/45/85
- Raspberry Pi
- See the documentation for more info <<<<<<< HEAD =======
The table below shows how to connect the the pins of the NRF24L01(+) to different boards. CE and CSN are configurable.
PIN | NRF24L01 | Arduino UNO | ATtiny25/45/85 [0] | ATtiny44/84 [1] |
---|---|---|---|---|
1 | GND | GND | pin 4 | pin 14 |
2 | VCC | 3.3V | pin 8 | pin 1 |
3 | CE | digIO 7 | pin 2 | pin 12 |
4 | CSN | digIO 8 | pin 3 | pin 11 |
5 | SCK | digIO 13 | pin 7 | pin 9 |
6 | MOSI | digIO 11 | pin 6 | pin 7 |
7 | MISO | digIO 12 | pin 5 | pin 8 |
8 | IRQ | - | - | - |
[0] https://learn.sparkfun.com/tutorials/tiny-avr-programmer-hookup-guide/attiny85-use-hints [1] http://highlowtech.org/?p=1695
Library functions are mostly the same.
See the included examples for RPi specific usage
If SPI is not already enabled, load it on boot:
sudo raspi-config
A. Update the tool via the menu as required
B. Select Advanced and enable the SPI kernel module
C. Update other software and libraries:
sudo apt-get update
sudo apt-get upgrade
A. Make a directory to contain the RF24 and possibly RF24Network lib and enter it:
mkdir ~/rf24libs
cd ~/rf24libs
B. Clone the RF24 Repo
git clone https://github.com/tmrh20/RF24.git RF24
C. Change to the new RF24 directory
cd RF24
D. Build the library, and run an example file:
sudo make install
cd examples_RPi
make
sudo ./gettingstarted
A. Enter the same directory that contains the RF24 library folder
cd ~/rf24libs
B. Clone the RF24Network Repo
git clone https://github.com/tmrh20/RF24Network.git ntemp
C. Copy the RF24Network folder to the current directory, and delete the rest
mv ntemp/RPi/RF24Network ./
rm -r ntemp
cd RF24Network
D. Build the library
sudo make install
cd examples
make
sudo ./helloworld_rx OR sudo ./helloworld_tx
Using pin 15/GPIO 22 for CE, pin 24/GPIO8 (CE0) for CSN
Can use either RPi CE0 or CE1 pins for radio CSN. Choose any RPi output pin for radio CE pin.
Constructor:
RF24 radio(RPI_V2_GPIO_P1_15,BCM2835_SPI_CS0, BCM2835_SPI_SPEED_8MHZ);
or
RF24 radio(RPI_V2_GPIO_P1_15,BCM2835_SPI_CS1, BCM2835_SPI_SPEED_8MHZ);
RPi B+:
RF24 radio(RPI_BPLUS_GPIO_J8_15,RPI_BPLUS_GPIO_J8_24, BCM2835_SPI_SPEED_8MHZ);
or
RF24 radio(RPI_BPLUS_GPIO_J8_15,RPI_BPLUS_GPIO_J8_26, BCM2835_SPI_SPEED_8MHZ);
Pins:
PIN | NRF24L01 | RPI | RPi -P1 Connector |
---|---|---|---|
1 | GND | rpi-gnd | (25) |
2 | VCC | rpi-3v3 | (17) |
3 | CE | rpi-gpio22 | (15) |
4 | CSN | rpi-gpio8 | (24) |
5 | SCK | rpi-sckl | (23) |
6 | MOSI | rpi-mosi | (19) |
7 | MISO | rpi-miso | (21) |
8 | IRQ | - | - |
See http://www.airspayce.com/mikem/bcm2835/index.html for BCM2835 class documentation.
Note: The BCM library has been customized slightly to allow use of hardware CE pins not
in use for SPI, and to include a millis() function.
Based on the arduino lib from J. Coliz maniacbug@ymail.com.
the library was berryfied by Purinda Gunasekara purinda@gmail.com.
then forked from github stanleyseow/RF24 to https://github.com/jscrane/RF24-rpi
Network lib also based on https://github.com/farconada/RF24Network
Currently optimized and aligned with Arduino fork of libraries by TMRh20:
https://github.com/tmrh20/RF24/RPi and https://github.com/tmrh20/RF24Network/RPi
Documentation: http://tmrh20.github.io
a0c808751c4239d5c692588b6730f5fbda7c6954