You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+14-2Lines changed: 14 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -2,8 +2,20 @@ Some scripts to access the data streamed by the **Neurosky Mindwave Mobile** Hea
2
2
3
3
Requirements:
4
4
*[PyBluez](http://code.google.com/p/pybluez/), see their [documentation](http://code.google.com/p/pybluez/wiki/Documentation) for installation instructions :)
5
+
For Ubuntu, installation might work like this:
6
+
```
7
+
sudo apt-get install libbluetooth-dev
8
+
pip install pybluez
9
+
```
5
10
6
-
Usage in python:
11
+
12
+
If you want to install the library as a module, do:
13
+
```
14
+
python setup.py install
15
+
```
16
+
from the root folder of the repository.
17
+
18
+
Afterwards, you can use it within python like this:
7
19
8
20
```python
9
21
from mindwavemobile.MindwaveDataPointReader import MindwaveDataPointReader
@@ -13,4 +25,4 @@ mindwaveDataPointReader.start()
13
25
# read one data point, data point types are specified in MindwaveDataPoints.py'
0 commit comments