Skip to content

Commit c3d717d

Browse files
committed
Update and organize data folder and remove old files
1 parent 610154c commit c3d717d

31 files changed

Lines changed: 6 additions & 6 deletions

OpenBCI_GUI/AuditoryNeurofeedback.pde

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ void asyncLoadAudioFiles() {
1818
for (int i = 0; i < _numSoundFiles; i++) {
1919
//Use large buffer size and cache files in memory
2020
try {
21-
auditoryNfbFilePlayers[i] = new FilePlayer( minim.loadFileStream("bp" + (i+1) + ".mp3", 2048, true) );
21+
auditoryNfbFilePlayers[i] = new FilePlayer( minim.loadFileStream("Auditory_Neurofeedback/bp" + (i+1) + ".mp3", 2048, true) );
2222
auditoryNfbGains[i] = new ddf.minim.ugens.Gain(-15.0f);
2323
auditoryNfbFilePlayers[i].patch(auditoryNfbGains[i]).patch(audioOutput);
2424
} catch (Exception e) {

OpenBCI_GUI/OpenBCI_GUI.pde

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ final color[] channelColors = {
279279
final int COLOR_SCHEME_DEFAULT = 1;
280280
final int COLOR_SCHEME_ALTERNATIVE_A = 2;
281281
// int COLOR_SCHEME_ALTERNATIVE_B = 3;
282-
int colorScheme = COLOR_SCHEME_DEFAULT;
282+
int colorScheme = COLOR_SCHEME_ALTERNATIVE_A;
283283

284284
WidgetManager wm;
285285
boolean wmVisible = true;

OpenBCI_GUI/W_EMGJoystick.pde

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,10 @@ class W_EMGJoystick extends Widget {
6666
private TextBox yPositiveInputDropdownLabel;
6767
private TextBox yNegativeInputDropdownLabel;
6868

69-
private PImage xNegativeInputLabelImage = loadImage("LEFT_100x100.png");
70-
private PImage xPositiveInputLabelImage = loadImage("RIGHT_100x100.png");
71-
private PImage yPositiveInputLabelImage = loadImage("UP_100x100.png");
72-
private PImage yNegativeInputLabelImage = loadImage("DOWN_100x100.png");
69+
private PImage xNegativeInputLabelImage = loadImage("EMG_Joystick/LEFT_100x100.png");
70+
private PImage xPositiveInputLabelImage = loadImage("EMG_Joystick/RIGHT_100x100.png");
71+
private PImage yPositiveInputLabelImage = loadImage("EMG_Joystick/UP_100x100.png");
72+
private PImage yNegativeInputLabelImage = loadImage("EMG_Joystick/DOWN_100x100.png");
7373

7474
W_EMGJoystick(PApplet _parent){
7575
super(_parent); //calls the parent CONSTRUCTOR method of Widget (DON'T REMOVE)

OpenBCI_GUI/data/bp1.mp3 renamed to OpenBCI_GUI/data/Auditory_Neurofeedback/bp1.mp3

File renamed without changes.

OpenBCI_GUI/data/bp2.mp3 renamed to OpenBCI_GUI/data/Auditory_Neurofeedback/bp2.mp3

File renamed without changes.

OpenBCI_GUI/data/bp3.mp3 renamed to OpenBCI_GUI/data/Auditory_Neurofeedback/bp3.mp3

File renamed without changes.

OpenBCI_GUI/data/bp4.mp3 renamed to OpenBCI_GUI/data/Auditory_Neurofeedback/bp4.mp3

File renamed without changes.

OpenBCI_GUI/data/bp5.mp3 renamed to OpenBCI_GUI/data/Auditory_Neurofeedback/bp5.mp3

File renamed without changes.
547 Bytes
Loading
File renamed without changes.

0 commit comments

Comments
 (0)