Skip to content

Commit ccaeff3

Browse files
committed
Update OSC address for FFT data output
1 parent f0965a4 commit ccaeff3

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
@@ -1470,7 +1470,7 @@ class Stream extends Thread {
14701470
if (this.protocol.equals("OSC")) {
14711471
for (int i = 0; i < numExgChannels; i++) {
14721472
msg.clearArguments();
1473-
msg.setAddrPattern(baseOscAddress + "/fft/" + i);
1473+
msg.setAddrPattern(baseOscAddress + "/fft/ch" + i);
14741474
for (int j = 0; j < 125; j++) {
14751475
msg.add(fftBuff[i].getBand(j));
14761476
}

0 commit comments

Comments
 (0)