Skip to content

Commit 05fc836

Browse files
committed
fixed readme conflict
2 parents f124823 + 9429dfc commit 05fc836

File tree

2 files changed

+16
-4
lines changed

2 files changed

+16
-4
lines changed

README.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,20 @@ Some scripts to access the data streamed by the **Neurosky Mindwave Mobile** Hea
22

33
Requirements:
44
* [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+
```
510

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:
719

820
```python
921
from mindwavemobile.MindwaveDataPointReader import MindwaveDataPointReader
@@ -13,4 +25,4 @@ mindwaveDataPointReader.start()
1325
# read one data point, data point types are specified in MindwaveDataPoints.py'
1426
dataPoint = mindwaveDataPointReader.readNextDataPoint()
1527
print dataPoint
16-
```
28+
```

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
setup(name='mindwavemobile',
44
version='0.1',
5-
description='The funniest joke in the world',
5+
description='Small Library to access neurosky mindwave mobile functionality from python',
66
url='https://github.com/robintibor/python-mindwave-mobile',
77
author='Robin Tibor Schirrmeister',
88
author_email='[email protected]',
99
packages=['mindwavemobile'],
1010
install_requires=[
1111
'pybluez',
1212
],
13-
zip_safe=False)
13+
zip_safe=False)

0 commit comments

Comments
 (0)