Search found 3 matches

by jeffpeck
Tue Feb 16, 2021 12:58 am
Forum: Mind Monitor
Topic: OSC streaming not working as expected
Replies: 3
Views: 1174

Re: OSC streaming not working as expected

Oh, gotit. It originally was listening for endpoint "/Muse/eeg", whereas it should be "/muse/eeg". I actually copy/pasted that from somewhere, I think on this forum, so watch out for that. Is there a guide anywhere that explains what the different endpoints are and what their out...
by jeffpeck
Tue Feb 16, 2021 12:56 am
Forum: Mind Monitor
Topic: OSC streaming not working as expected
Replies: 3
Views: 1174

Re: OSC streaming not working as expected

Hrm, it seems to be working now. Here is the slightly updated code in case anyone finds this. from pythonosc import dispatcher, osc_server def eeg_handler(unused_addr, args, ch1, ch2, ch3, ch4, ch5): print("EEG per channel: ", ch1, ch2, ch3, ch4, ch5) if __name__ == "__main__": d...
by jeffpeck
Mon Feb 15, 2021 10:36 pm
Forum: Mind Monitor
Topic: OSC streaming not working as expected
Replies: 3
Views: 1174

OSC streaming not working as expected

I have OSC Stream Target IP set to "192.168.0.157", which is the IP address of my Mac Mini on the local network. I am doing this: from pythonosc import dispatcher from pythonosc import osc_server def eeg_handler(unused_addr, args, ch1, ch2, ch3, ch4): print("EEG per channel: ", c...