You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: OpenBCI_GUI/ADS1299SettingsController.pde
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -102,7 +102,7 @@ class ADS1299SettingsController {
102
102
if (isVisible) {
103
103
//Control button space above channels
104
104
pushStyle();
105
-
//stroke(31,69,110, 50);
105
+
//stroke(OPENBCI_BLUE_ALPHA50);
106
106
stroke(OBJECT_BORDER_GREY);
107
107
fill(GREY_100);
108
108
rect(x, y - columnLabelH, w, columnLabelH);
@@ -300,7 +300,7 @@ class ADS1299SettingsController {
300
300
if (!atLeastOneChannelHasChanged) {
301
301
output("No new settings to send to board.");
302
302
} elseif (noErrors) {
303
-
output("Hardware Settings sent to board!");
303
+
outputSuccess("Hardware Settings sent to board!");
304
304
} else {
305
305
PopupMessage msg =newPopupMessage("Error", "Failed to send one or more Hardware Settings to board. Check hardware and battery level. Cyton users, check that your dongle is connected with blue light shining.");
output("No Transfer Protocol selected. Please select your Transfer Protocol and retry system initiation.");
3092
+
outputWarn("No Transfer Protocol selected. Please select your Transfer Protocol and retry system initiation.");
3093
3093
return;
3094
3094
} elseif (eegDataSource ==DATASOURCE_CYTON&& selectedProtocol ==BoardProtocol.SERIAL&& openBCI_portName =="N/A") { //if data source == normal && if no serial port selected OR no SD setting selected
3095
-
output("No Serial/COM port selected. Please select your Serial/COM port and retry system initiation.");
3095
+
outputWarn("No Serial/COM port selected. Attempting to AUTO-CONNECT to Cyton.");
output("No playback file selected. Please select a playback file and retry system initiation."); // tell user that they need to select a file before the system can be started
3102
+
outputWarn("No playback file selected. Please select a playback file and retry system initiation."); // tell user that they need to select a file before the system can be started
output("No Wifi Shield selected. Please select your Wifi Shield and retry system initiation.");
3108
+
outputWarn("No Wifi Shield selected. Please select your Wifi Shield and retry system initiation.");
3108
3109
return;
3109
3110
} elseif (eegDataSource ==-1) {//if no data source selected
3110
-
output("No DATA SOURCE selected. Please select a DATA SOURCE and retry system initiation.");//tell user they must select a data source before initiating system
3111
+
outputWarn("No DATA SOURCE selected. Please select a DATA SOURCE and retry system initiation.");//tell user they must select a data source before initiating system
0 commit comments