├── .gitignore ├── LICENSE ├── README.md ├── arduino ├── __init__.py ├── arduino_controls.py └── hexbug │ └── hexbug.ino ├── bci ├── __init__.py ├── mind_control.py ├── record_brainwaves.py └── sound.py └── sounds ├── __init__.py ├── play_sounds.py └── write_wav_file.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionleborgne/mind-controlled-robot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionleborgne/mind-controlled-robot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionleborgne/mind-controlled-robot/HEAD/README.md -------------------------------------------------------------------------------- /arduino/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'marion' 2 | -------------------------------------------------------------------------------- /arduino/arduino_controls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionleborgne/mind-controlled-robot/HEAD/arduino/arduino_controls.py -------------------------------------------------------------------------------- /arduino/hexbug/hexbug.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionleborgne/mind-controlled-robot/HEAD/arduino/hexbug/hexbug.ino -------------------------------------------------------------------------------- /bci/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'marion' 2 | -------------------------------------------------------------------------------- /bci/mind_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionleborgne/mind-controlled-robot/HEAD/bci/mind_control.py -------------------------------------------------------------------------------- /bci/record_brainwaves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionleborgne/mind-controlled-robot/HEAD/bci/record_brainwaves.py -------------------------------------------------------------------------------- /bci/sound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionleborgne/mind-controlled-robot/HEAD/bci/sound.py -------------------------------------------------------------------------------- /sounds/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'marion' 2 | -------------------------------------------------------------------------------- /sounds/play_sounds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionleborgne/mind-controlled-robot/HEAD/sounds/play_sounds.py -------------------------------------------------------------------------------- /sounds/write_wav_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionleborgne/mind-controlled-robot/HEAD/sounds/write_wav_file.py --------------------------------------------------------------------------------