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/ControlPanel.pde
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1178,7 +1178,7 @@ class ControlPanel {
1178
1178
popOutWifiConfigButton.setString("<");
1179
1179
} else {
1180
1180
if (wifi_portName =="N/A") {
1181
-
output("Please select a WiFi Shield first. Can't see your WiFi Shield? Learn how at docs.openbci.com/Tutorials/03-Wifi_Getting_Started_Guide");
1181
+
output("Please select a WiFi Shield first. Can't see your WiFi Shield? Learn how at openbci.github.io/Documentation/");
1182
1182
} else {
1183
1183
output("Attempting to connect to WiFi Shield named "+ wifi_portName);
1184
1184
hub.examineWifi(wifi_portName);
@@ -1654,7 +1654,7 @@ public void initButtonPressed(){
1654
1654
}
1655
1655
} else {
1656
1656
//if system is already active ... stop session and flip button state back
1657
-
outputInfo("Learn how to use this application and more at docs.openbci.com");
1657
+
outputInfo("Learn how to use this application and more at openbci.github.io/Documentation/");
1658
1658
initSystemButton.setString("START SESSION");
1659
1659
cp5.get(Textfield.class, "fileNameCyton").setText(getDateString()); //creates new data file name so that you don't accidentally overwrite the old one
1660
1660
cp5.get(Textfield.class, "fileNameGanglion").setText(getDateString()); //creates new data file name so that you don't accidentally overwrite the old one
@@ -1691,7 +1691,7 @@ class NoHubBox {
1691
1691
padding = _padding;
1692
1692
1693
1693
noHubShowDoc =newButton (x + padding, y + padding*2+13, w - padding*2, 24, "OPENBCI GUI INSTALL GUIDE", fontInfo.buttonLabel_size);
Copy file name to clipboardExpand all lines: OpenBCI_GUI/InterfaceHub.pde
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -459,7 +459,7 @@ class Hub {
459
459
break;
460
460
caseRESP_ERROR_WIFI_NEEDS_UPDATE:
461
461
println("Error in processConnect: RESP_ERROR_WIFI_NEEDS_UPDATE");
462
-
killAndShowMsg("WiFi Shield Firmware is out of date. Learn to update: docs.openbci.com/Hardware/12-Wifi_Programming_Tutorial");
462
+
killAndShowMsg("WiFi Shield Firmware is out of date. Learn to update: https://openbci.github.io/Documentation/docs/05ThirdParty/03-WiFiShield/WiFiProgam");
463
463
break;
464
464
default:
465
465
println("Error in processConnect");
@@ -485,7 +485,7 @@ class Hub {
485
485
output("WiFi Shield is still connected to "+ wifi_portName);
486
486
break;
487
487
caseRESP_ERROR_UNABLE_TO_CONNECT:
488
-
output("No WiFi Shield found, visit docs.openbci.com/Tutorials/03-Wifi_Getting_Started_Guide to learn how to connect.");
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -111,7 +111,7 @@ OpenGL acceleration is required.
111
111
112
112
113
113
## Troubleshooting
114
-
The OpenBCI Hub comes installed in recent versions of the GUI. When running the GUI from Processing code, please follow these instructions for getting the **critical** piece of software called the OpenBCI HUB [Mac/Linux](http://docs.openbci.com/OpenBCI%20Software/01-OpenBCI_GUI#the-openbci-gui-running-the-openbci-gui-from-the-processing-ide-install-openbci-hub-on-maclinux)[Windows](http://docs.openbci.com/OpenBCI%20Software/01-OpenBCI_GUI#the-openbci-gui-install-openbci-hub-on-windows). Thanks and happy hacking!
114
+
The OpenBCI Hub comes installed in recent versions of the GUI. When running the GUI from Processing code, [please follow these instructions](https://openbci.github.io/Documentation/docs/06Software/01-OpenBCISoftware/GUIDocs#install-openbci-hub-on-mac-linux-windows) for getting the **critical** piece of software called the OpenBCI HUB for Mac/Linux/Windows. Thanks and happy hacking!
0 commit comments