One method dispatcher for all data, is it possible?

Post Reply
muriloborges
Posts: 6
Joined: Tue Apr 28, 2020 11:39 pm

One method dispatcher for all data, is it possible?

Post by muriloborges »

Hello, My name is Murilo Borges I´m researching in my Doctor degree about EEG and Me anda My professor decided to by a Muse 2 on Jun 2019. Now we are trying to make a framework to start our research using Deep Learning and Muse.

Me are using Muse 2, Mind Monitor on IOS plataform and making our framework on python3. The first programa that connect Mind Monitor using pythonosc. We are using Dispatcher to run and collect data and everythink is running ok.

dispatcher.map("/muse/eeg", eeg_handler, "EEG")
dispatcher.map("/muse/acc", acc_handler, "EEG")
dispatcher.map("/muse/gyro", gyro_handler, "EEG")

We would like to know if it´s possible to use only one dispatcher.map command to take all data at the same time. somethink like this:

dispatcher.map("/muse", alldata_handler, "EEG")

We need all information in the same milesecond, to be shure that all data are paralel.

It´s very dificult to have a manual of Muse to let us know more informations

Thank´s for all help

regards
User avatar
James
Site Admin
Posts: 1089
Joined: Wed Jan 02, 2013 9:06 pm

Re: One method dispatcher for all data, is it possible?

Post by James »

Sorry no. The data is async and generated at different frequencies. Check the FAQ for details here: https://mind-monitor.com/FAQ.php#oscspec
Post Reply