Skip to content

Commit c4bb8eb

Browse files
committed
Fix incorrect channel count for Avg Band Power LSL stream
1 parent 8939c6b commit c4bb8eb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

OpenBCI_GUI/W_Networking.pde

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1070,7 +1070,7 @@ class W_Networking extends Widget {
10701070
} else if (dataType.equals("EMG")) {
10711071
return currentBoard.getNumEXGChannels();
10721072
} else if (dataType.equals("AvgBandPower")) {
1073-
return 1;
1073+
return 5;
10741074
} else if (dataType.equals("BandPower")) {
10751075
return 5;
10761076
} else if (dataType.equals("Pulse")) {

0 commit comments

Comments
 (0)