Rf24 on rpi: Difference between revisions
Jump to navigation
Jump to search
Line 4: | Line 4: | ||
The RPIRF24 is an adaptor to connect nRF24L01 module to a raspberrypi. | The RPIRF24 is an adaptor to connect nRF24L01 module to a raspberrypi. | ||
Connection is made via the SPI port of the raspberrypi. | |||
==Setup for Raspbian== | ==Setup for Raspbian== |
Latest revision as of 14:54, 9 July 2017

Overview
The RPIRF24 is an adaptor to connect nRF24L01 module to a raspberrypi.
Connection is made via the SPI port of the raspberrypi.
Setup for Raspbian
Open raspi-config then enable spi in the menu.
Then the following commands should be run:
sudo adduser pi spi mkdir rf24libs cd rf24libs git clone https://github.com/TMRh20/RF24 git clone https://github.com/TMRh20/RF24Network git clone https://github.com/TMRh20/RF24Mesh cd RF24 ./configure sudo make install cd ../RF24Network sudo make install cd ../RF24Mesh sudo make install cd ./examples_RPi/ make