Peter Gamma (Physiologist & Director) Meditation Research Institute Switzerland (MRIS)

Does this code example for logging data from the Muse 2 with BrainFlow work?

Last Updated on April 18, 2024 by pg@petergamma.org

# Code example for logging data from the Muse 2import time

from brainflow.board_shim import BoardShim, BrainFlowInputParams
from brainflow.data_filter import DataFilter, FilterTypes, AggOperationsdef main():
BoardShim.enable_dev_board_logger()params = BrainFlowInputParams()
params.serial_port = "COM port for BLED112 Dongle"
params.timeout = "timeout for device discovery or connection"board = BoardShim(22, params)
board.prepare_session()board.start_stream() # use this for default options
time.sleep(10)data = board.get_board_data()  # get all data and remove it from internal bufferboard.stop_stream()
board.release_session()print(data)if __name__ == "__main__":
main()
source:
https://anushmutyala.medium.com/muse-101-how-to-start-developing-with-the-muse-2-right-now-a1b87119be5c

Leave a comment

Your email address will not be published. Required fields are marked *