Skip to content

Commit

Permalink
added some notes, made python files executable
Browse files Browse the repository at this point in the history
  • Loading branch information
robertoostenveld committed Nov 20, 2015
1 parent f10fe6d commit 77fbcac
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 2 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ This repository contains all code for http://www.eegsynth.org.

## Installation instructions for Raspbian



### reconfigure the keyboard
sudo dpkg-reconfigure console-data
sudo dpkg-reconfigure keyboard-configuration
Expand All @@ -24,3 +26,13 @@ sudo pip install --upgrade pip
sudo pip install mido
sudo port selfupdate
export DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH:/opt/local/lib

sudo apt-get install portmidi
sudo apt-get install libportmidi0

Note: To use the Launch Control XL with the Raspberry Pi you must
first switch it to low power mode. To do this hold down both the
User and Factory Template buttons and insert the USB cable. Release
the Template buttons and press "Record Arm". Finally press the right
arrow button.

3 changes: 2 additions & 1 deletion module/devirtualizer/devirtualizer.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/python
#!/usr/bin/env python

import time
import ConfigParser # this is version 2.x specific, on version 3.x it is called "configparser" and has a different API
import redis
Expand Down
2 changes: 2 additions & 0 deletions module/keyboard/keyboard.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python

import mido
import time
import ConfigParser # this is version 2.x specific, on version 3.x it is called "configparser" and has a different API
Expand Down
2 changes: 2 additions & 0 deletions module/launchcontrol/launchcontrol.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python

import mido
import time
import ConfigParser # this is version 2.x specific, on version 3.x it is called "configparser" and has a different API
Expand Down
3 changes: 2 additions & 1 deletion module/pulsegenerator/pulsegenerator.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/python
#!/usr/bin/env python

import time
import ConfigParser # this is version 2.x specific, on version 3.x it is called "configparser" and has a different API
import redis
Expand Down

0 comments on commit 77fbcac

Please sign in to comment.