Skip to content

Commit 091bd5e

Browse files
authored
Merge pull request #1189 from OpenBCI/gui-v6-update-brainflow-and-helpers
Update GUI v6 Libraries
2 parents b370b87 + 8b12ebe commit 091bd5e

51 files changed

Lines changed: 13 additions & 3 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGELOG.md

Lines changed: 6 additions & 0 deletions

OpenBCI_GUI/BoardBrainflow.pde

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,12 @@ abstract class BoardBrainFlow extends Board {
4040
e.printStackTrace();
4141
}
4242
boardShim.prepare_session();
43+
/*
44+
//This does not seem to work with Windows and Processing.
45+
//For now, we will add a streamer using argument for start_stream(). -RW 9/18/2023
4346
if (brainflowStreamer != "")
4447
boardShim.add_streamer(brainflowStreamer);
48+
*/
4549
return true;
4650

4751
} catch (Exception e) {
@@ -80,7 +84,7 @@ abstract class BoardBrainFlow extends Board {
8084
}
8185

8286
try {
83-
boardShim.start_stream (450000);
87+
boardShim.start_stream (450000, brainflowStreamer);
8488
streaming = true;
8589
}
8690
catch (BrainFlowError e) {

OpenBCI_GUI/OpenBCI_GUI.pde

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ import java.util.concurrent.atomic.AtomicBoolean;
6262
// Global Variables & Instances
6363
//------------------------------------------------------------------------
6464
//Used to check GUI version in TopNav.pde and displayed on the splash screen on startup
65-
String localGUIVersionString = "v6.0.0-alpha.2";
66-
String localGUIVersionDate = "August 2023";
65+
String localGUIVersionString = "v6.0.0";
66+
String localGUIVersionDate = "September 2023";
6767
String guiLatestVersionGithubAPI = "https://api.github.com/repos/OpenBCI/OpenBCI_GUI/releases/latest";
6868
String guiLatestReleaseLocation = "https://github.com/OpenBCI/OpenBCI_GUI/releases/latest";
6969
Boolean guiIsUpToDate;
-1.64 MB
Binary file not shown.
-1.4 MB
Binary file not shown.
-344 KB
Binary file not shown.
-788 KB
Binary file not shown.
-148 KB
Binary file not shown.
-356 KB
Binary file not shown.
-162 KB
Binary file not shown.

0 commit comments

Comments
 (0)