brainflow-dev / brainflow

BrainFlow is a library intended to obtain, parse and analyze EEG, EMG, ECG and other kinds of data from biosensors
https://brainflow.org/
MIT License
1.3k stars 330 forks source link

Fix EEG names for Muse 2, Muse S, Muse 2016 #744

Closed cheongpark closed 1 month ago

cheongpark commented 1 month ago

Description of Changes

I noticed that the eeg_names for the Muse 2 I am using were incorrect. Upon checking, it seems that the names have changed.

Original: TP9, Fp1, Fp2, TP10 Updated: TP9, AF7, AF8, TP10

Reference

https://github.com/brainflow-dev/brainflow/blob/master/src/board_controller/muse/inc/muse_constants.h

#define MUSE_GATT_ATTR_TP9 "273e0003-4c4d-454d-96be-f03bac821358"
#define MUSE_GATT_ATTR_AF7 "273e0004-4c4d-454d-96be-f03bac821358"
#define MUSE_GATT_ATTR_AF8 "273e0005-4c4d-454d-96be-f03bac821358"
#define MUSE_GATT_ATTR_TP10 "273e0006-4c4d-454d-96be-f03bac821358"

image