├── .gitignore ├── LICENSE ├── README.md ├── Screenshot1.png ├── Screenshot2.png ├── cover.jpg ├── mindwave.py ├── mindwave.pyc ├── plot2.py ├── plot_rawdata.py └── test_mindwave.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsltech/neuroskymindwavecapture/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsltech/neuroskymindwavecapture/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsltech/neuroskymindwavecapture/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsltech/neuroskymindwavecapture/HEAD/Screenshot1.png -------------------------------------------------------------------------------- /Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsltech/neuroskymindwavecapture/HEAD/Screenshot2.png -------------------------------------------------------------------------------- /cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsltech/neuroskymindwavecapture/HEAD/cover.jpg -------------------------------------------------------------------------------- /mindwave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsltech/neuroskymindwavecapture/HEAD/mindwave.py -------------------------------------------------------------------------------- /mindwave.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsltech/neuroskymindwavecapture/HEAD/mindwave.pyc -------------------------------------------------------------------------------- /plot2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsltech/neuroskymindwavecapture/HEAD/plot2.py -------------------------------------------------------------------------------- /plot_rawdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsltech/neuroskymindwavecapture/HEAD/plot_rawdata.py -------------------------------------------------------------------------------- /test_mindwave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsltech/neuroskymindwavecapture/HEAD/test_mindwave.py --------------------------------------------------------------------------------