├── .gitattributes ├── .gitignore ├── EEG_PONG └── EEG_PONG.pde ├── README.md ├── READ_EEG └── READ_EEG_3_2013.pde ├── READ_EEG_WITH_ARDUINO └── READ_EEG_WITH_ARDUINO.pde └── SEND_EEG_DATA └── SEND_EEG_DATA_3_2013.ino /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cah6/EEG/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cah6/EEG/HEAD/.gitignore -------------------------------------------------------------------------------- /EEG_PONG/EEG_PONG.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cah6/EEG/HEAD/EEG_PONG/EEG_PONG.pde -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cah6/EEG/HEAD/README.md -------------------------------------------------------------------------------- /READ_EEG/READ_EEG_3_2013.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cah6/EEG/HEAD/READ_EEG/READ_EEG_3_2013.pde -------------------------------------------------------------------------------- /READ_EEG_WITH_ARDUINO/READ_EEG_WITH_ARDUINO.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cah6/EEG/HEAD/READ_EEG_WITH_ARDUINO/READ_EEG_WITH_ARDUINO.pde -------------------------------------------------------------------------------- /SEND_EEG_DATA/SEND_EEG_DATA_3_2013.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cah6/EEG/HEAD/SEND_EEG_DATA/SEND_EEG_DATA_3_2013.ino --------------------------------------------------------------------------------