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/NetworkStreamOut.pde
+14-8Lines changed: 14 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -527,17 +527,23 @@ class NetworkStreamOut extends Thread {
527
527
528
528
} elseif (this.protocol.equals("LSL")) {
529
529
530
-
// DELTA, THETA, ALPHA, BETA, GAMMA
530
+
// Send out band powers for each channel sequentially via push_sample
531
+
// Prepend channel number to each array
532
+
// push_chunk will send out all channels at once...but doesn't seem to gaurantee all X channels of data will be pulled at once, despite extensive testing
533
+
// Example sample: [Channel Number, DELTA, THETA, ALPHA, BETA, GAMMA]
0 commit comments