muse eeg headset data

I am using a muse eeg headset. I am trying to save the osc data. I figured out how to save as a string /127.0.0.1,1289.6646,1204.1256,1269.9248,926.12396, . how can I convert it back to osc message.

this converts osc to string

private void printMessage(OscMessage message) { StringBuilder sb = new StringBuilder(); sb.append(message.address()).append(","); for (Object o : message.arguments()) { sb.append(o).append(","); } println(sb); } I also saved the osc message /127.0.0.1:52538 | /muse/2/eeg ffff but what I do not know is the data included in the message.

Sign In or Register to comment.