Metadata-Version: 2.1
Name: neuropy3
Version: 1.0.0
Summary: Python3 library to read data from Neurosky Mindwave Mobile 2 in linux.
Home-page: https://gitlab.gast.it.uc3m.es/schica/neuropy3
Author: Sergio Chica
Author-email: sergio.chica@uc3m.es
License: GPLv3+
Keywords: eeg,neurosky,mindwave,neurosky mindwave mobile 2
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >= 3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# Description
Python3 library to read data from Neurosky Mindwave Mobile 2 in linux using
bluetooth.

**Contents:**
  - [Requirements](#requirements)
  - [Pre-execution](#pre-execution)
  - [Execution](#execution)
    - [Command line interface](#command-line-interface)
    - [Graphical user interface](#graphical-user-interface)
    - [Importing library](#importing-library)
  - [Acknowledgements](#acknowledgements)
  - [License](#license)

# Requirements
- libbluetooth-dev

# Pre-execution
You can install dependencies using setup.py
```bash
$ python -m pip install .
```
or install manually via pip
```bash
$ python -m pip install -r requirements.txt
```

# Execution
## Command line interface
```bash
$ python -m neuropy3
$ python -m neuropy3 --address XX:YY:ZZ:AA:BB:CC
$ python -m neuropy3 --help
```
> Address argument helps speed up connection process, otherwise a neuropy3
> will run a scan of nearby bluetooth devices (which takes a lot).

## Graphical user interface
```bash
$ python -m neuropy3 --gui
$ python -m neuropy3 --address XX:YY:ZZ:AA:BB:CC --gui
```
<details>
    <summary>Screenshots</summary>
    <div align="center">
        <img alt="gui" src="images/gui.png" width="75%"/>
    </div>
    <div align="center">
        <img alt="raw" src="images/raw.png" width="75%"/>
    </div>
</details>

## Importing library
```python
>>> from neuropy3.neuropy3 import MindWave
>>> mw = MindWave(address='XX:YY:ZZ:AA:BB:CC', autostart=False, verbose=3)
>>> # mw = MindWave(autostart=False, verbose=3)  # Autoscan for MindWave Mobile
>>> mw.update_callback('eeg', lambda x: print(x))
>>> mw.update_callback('meditation', lambda x: print(x))
>>> mw.update_callback('attention', lambda x: print(x))
>>> mw.start()
```

# Acknowledgements
**This work has been supported by National R&D Project TEC2017-84197-C4-1-R and by the
Comunidad de Madrid project CYNAMON P2018/TCS-4566 and co-financed by European Structural
Funds (ESF and FEDER)**

- Based on [lihas/NeuroPy](https://github.com/lihas/NeuroPy) library.
- Communication protocol from [neurosky](http://developer.neurosky.com/docs/doku.php?id=thinkgear_communications_protocol).

# License
    neuropy3  Copyright (C) 2022 Sergio Chica Manjarrez @ pervasive.it.uc3m.es.
    Universidad Carlos III de Madrid.
    This program comes with ABSOLUTELY NO WARRANTY; for details check below.
    This is free software, and you are welcome to redistribute it
    under certain conditions; check below for details.

[LICENSE](LICENSE)
