-
Notifications
You must be signed in to change notification settings - Fork 125
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problems in data streaming using Brainflow using muse2 #199
Comments
Can you repeat and show screen outputs for device = |
I get a key-error when I run with muse2_bfn as the device. Am I doing something wrong? |
Yes something not right if you're using the above script and getting a key error. We need to get back to step 1. Please try:
|
Do you mean it works with muse2 when bluemuse is running? Try one more time: close conda terminal, close bluemuse, open new conda terminal, run _bfn signal check. (Brainflow can get confused if there's been other recent communication with the device by currently running programs) |
Next steps on this:
|
Issue opened in Brainflow Unable to prepare the streaming session after finding Muse2 using direct calls to Brainflow. Code: from brainflow.board_shim import BoardShim, BoardIds, BrainFlowInputParams
params = BrainFlowInputParams()
board_id = BoardIds.MUSE_2_BOARD
board = BoardShim(board_id, params)
board.enable_dev_board_logger()
board.prepare_session() |
Original problem with respect to data streaming has been solved by using BlueMuse backend. The problem was that my file had an open call to streaming which was fixed by adding the following, if __name__ == '__main__':
# Do the Experiment However, setting up a streaming session using Brainflow is still unresolved and listed above. |
Summary:
|
Discussed in #198
Originally posted by Parvfect July 26, 2022
I am trying to run the N170 experiment, and it seemed to be working perfectly before and I have some good data from then. I am not sure what I changed, but the instruction screen seems to come up twice, the second time after running the main experiment for a few seconds. About two images get displayed when the same screen comes up for the second time. The code used is the following
And the runtime error is the following,
I am not very clear why this is happening and would really apprectiate some help. I was testing the ExperimentSubClass2 branch when this happened and switched to Master and got the same issue.
The text was updated successfully, but these errors were encountered: