Last active
May 25, 2016 15:29
-
-
Save doorbash/7511963a2b8f02a5fa2c1b9e6dc56fb4 to your computer and use it in GitHub Desktop.
Install RF24 on Arch Linux (RaspberryPi)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pacman -S git | |
mkdir ~/rf24libs | |
cd ~/rf24libs | |
git clone https://github.com/tmrh20/RF24.git RF24 | |
cd RF24 | |
sudo make install | |
cd examples_linux | |
make | |
ln -s /root/rf24libs/RF24/librf24.so.1.1.6 /usr/lib/librf24.so.1 | |
./gettingstarted |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment