You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to receive EEG data and event triggers via LSL and decode the event-related EEG data in real-time.
The EEG data does not have stim channels, instead there is an LSL stream of triggers (string markers).
In this case, how can I get the epochs in response to the events?
RtEpochs() takes a stim_channel as an argument, but can I use the trigger stream instead?
Thanks in advance!
The text was updated successfully, but these errors were encountered:
@yosider, it doesn't currently support event triggers but I could help you add support for it if you would like to get it a go. we could sketch out how we would want this to work in this issue and then figure out how to implement it. It seems we would need to parse an incoming stream for set of strings. I guess it would also require the name of the stream for the triggers. anything else?
Thank you for your reply. Yes, I would like to do it.
I think the set of strings can be given as constants, as well as the name of the stream.
I think there are several other problems.
How to handle two streams at the same time
should we use two LSLClient or define a new LSLClient that can handle multiple streams?
How can we synchronize multiple streams
How to handle streams with irregular sampling frequency such as trigger streams
I am trying to receive EEG data and event triggers via LSL and decode the event-related EEG data in real-time.
The EEG data does not have stim channels, instead there is an LSL stream of triggers (string markers).
In this case, how can I get the epochs in response to the events?
RtEpochs() takes a stim_channel as an argument, but can I use the trigger stream instead?
Thanks in advance!
The text was updated successfully, but these errors were encountered: