Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add MFRC522 and RDM6300 devices to device list #235

Merged
merged 5 commits into from
Oct 3, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions docs/INSTALL-stretch.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,6 @@ The following lines will install all the required packages:
~~~
sudo apt-get update
sudo apt-get install apt-transport-https samba samba-common-bin python-dev python-pip gcc linux-headers-4.9 lighttpd php7.0-common php7.0-cgi php7.0 php7.0-fpm at mpd mpc mpg123 git ffmpeg python-mutagen
sudo pip install "evdev == 0.7.0"
sudo pip install youtube_dl
~~~

### Using git to pull the code from github
Expand All @@ -170,6 +168,14 @@ cd /home/pi/
git clone https://github.com/MiczFlor/RPi-Jukebox-RFID.git
~~~~

### Install python requirements

~~~~
cd /home/pi/RPi-Jukebox-RFID/
pip install -r requirements.txt
~~~~


Now you have the code repo of the Phoniebox in the directory `/home/pi/RPi-Jukebox-RFID`.

## Configure your system
Expand Down
4 changes: 3 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@
#### ESSENTIAL LIBRARIES FOR MAIN FUNCTIONALITY ####

# Neural net and related libraries.
evdev == 0.7.0
evdev==0.7.0
git+git://github.com/lthiery/SPI-Py.git#egg=spi-py
youtube-dl
serial

# Type checking for python
# typing
Expand Down
Loading