Commit 6bf37cdf authored by TMRh20's avatar TMRh20

Add new RPi installer info to readme

New RPi install script available at
http://tmrh20.github.io/RF24Installer/RPi/install.sh
parent cd596482
...@@ -80,8 +80,23 @@ C. Update other software and libraries: ...@@ -80,8 +80,23 @@ C. Update other software and libraries:
sudo apt-get upgrade sudo apt-get upgrade
# RPi - RF24 Quick-Start #New: RPi RF24 Library Installer for all RF24 libraries
A. Download the install.sh file from http://tmrh20.github.io/RF24Installer/RPi/install.sh
wget http://tmrh20.github.io/RF24Installer/RPi/install.sh
B. Make it executable:
chmod +x install.sh
C. Run it and choose your options:
sudo ./install.sh
# RPi - RF24 Quick-Start
A. Make a directory to contain the RF24 and possibly RF24Network lib and enter it: A. Make a directory to contain the RF24 and possibly RF24Network lib and enter it:
mkdir ~/rf24libs mkdir ~/rf24libs
...@@ -111,18 +126,16 @@ A. Enter the same directory that contains the RF24 library folder ...@@ -111,18 +126,16 @@ A. Enter the same directory that contains the RF24 library folder
B. Clone the RF24Network Repo B. Clone the RF24Network Repo
git clone https://github.com/tmrh20/RF24Network.git ntemp git clone https://github.com/tmrh20/RF24Network.git RF24Network
C. Copy the RF24Network folder to the current directory, and delete the rest C. Copy the RF24Network folder to the current directory, and delete the rest
mv ntemp/RPi/RF24Network ./
rm -r ntemp
cd RF24Network cd RF24Network
D. Build the library D. Build the library
sudo make install sudo make install
cd examples cd examples_RPi
make make
sudo ./helloworld_rx OR sudo ./helloworld_tx sudo ./helloworld_rx OR sudo ./helloworld_tx
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment