├── LICENSE ├── README ├── dist └── mindstream.jar ├── lib ├── json.jar └── log4j-1.2.14.jar ├── mindstream.bat ├── mindstream.sh ├── properties.xml ├── src ├── com │ └── ericblue │ │ └── mindstream │ │ ├── client │ │ └── ThinkGearSocketClient.java │ │ ├── preferences │ │ └── PreferenceManager.java │ │ ├── systemtray │ │ ├── MindStreamSystemTray.java │ │ └── images │ │ │ └── logo.jpg │ │ └── window │ │ ├── DebugWindow.java │ │ └── PreferencesWindow.java └── log4j.properties └── test ├── eegdata.txt ├── eegdata_mobile.txt ├── get_eeg_data.sh ├── mindstream_sample.csv ├── print_eeg_stream.sh ├── show_json_output.pl ├── test_socket_server.pl └── test_socket_server.sh /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericblue/MindStream/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericblue/MindStream/HEAD/README -------------------------------------------------------------------------------- /dist/mindstream.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericblue/MindStream/HEAD/dist/mindstream.jar -------------------------------------------------------------------------------- /lib/json.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericblue/MindStream/HEAD/lib/json.jar -------------------------------------------------------------------------------- /lib/log4j-1.2.14.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericblue/MindStream/HEAD/lib/log4j-1.2.14.jar -------------------------------------------------------------------------------- /mindstream.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericblue/MindStream/HEAD/mindstream.bat -------------------------------------------------------------------------------- /mindstream.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericblue/MindStream/HEAD/mindstream.sh -------------------------------------------------------------------------------- /properties.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericblue/MindStream/HEAD/properties.xml -------------------------------------------------------------------------------- /src/com/ericblue/mindstream/client/ThinkGearSocketClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericblue/MindStream/HEAD/src/com/ericblue/mindstream/client/ThinkGearSocketClient.java -------------------------------------------------------------------------------- /src/com/ericblue/mindstream/preferences/PreferenceManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericblue/MindStream/HEAD/src/com/ericblue/mindstream/preferences/PreferenceManager.java -------------------------------------------------------------------------------- /src/com/ericblue/mindstream/systemtray/MindStreamSystemTray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericblue/MindStream/HEAD/src/com/ericblue/mindstream/systemtray/MindStreamSystemTray.java -------------------------------------------------------------------------------- /src/com/ericblue/mindstream/systemtray/images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericblue/MindStream/HEAD/src/com/ericblue/mindstream/systemtray/images/logo.jpg -------------------------------------------------------------------------------- /src/com/ericblue/mindstream/window/DebugWindow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericblue/MindStream/HEAD/src/com/ericblue/mindstream/window/DebugWindow.java -------------------------------------------------------------------------------- /src/com/ericblue/mindstream/window/PreferencesWindow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericblue/MindStream/HEAD/src/com/ericblue/mindstream/window/PreferencesWindow.java -------------------------------------------------------------------------------- /src/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericblue/MindStream/HEAD/src/log4j.properties -------------------------------------------------------------------------------- /test/eegdata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericblue/MindStream/HEAD/test/eegdata.txt -------------------------------------------------------------------------------- /test/eegdata_mobile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericblue/MindStream/HEAD/test/eegdata_mobile.txt -------------------------------------------------------------------------------- /test/get_eeg_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericblue/MindStream/HEAD/test/get_eeg_data.sh -------------------------------------------------------------------------------- /test/mindstream_sample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericblue/MindStream/HEAD/test/mindstream_sample.csv -------------------------------------------------------------------------------- /test/print_eeg_stream.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | 4 | cat $1 | perl -e '$|=1;while(){sleep 1;print $_}' 5 | -------------------------------------------------------------------------------- /test/show_json_output.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericblue/MindStream/HEAD/test/show_json_output.pl -------------------------------------------------------------------------------- /test/test_socket_server.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericblue/MindStream/HEAD/test/test_socket_server.pl -------------------------------------------------------------------------------- /test/test_socket_server.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | ncat -l 13854 -e 'print_eeg_stream.sh eegdata_mobile.txt' 4 | --------------------------------------------------------------------------------