Board Instructions
In Python and C# you can access the following instructions through MindroveConfigMode class.
Switching between IMP_MODE and EEG_MODE comes to effect a couple hundred milliseconds after the command is given.
Config Table
Instruction |
Meaning |
---|---|
EEG_MODE |
Configure device to external measurement |
IMP_MODE |
Configure device to send impedance values |
BEEP |
Send BEEP signal for synchronization / trigger |
BOOP |
Send BOOP signal for synchronization / trigger |
TEST_MODE |
Configure device to send test signals |
Python Example
import mindrove
from mindrove.board_shim import BoardShim, MindRoveInputParams
from mindrove.data_filter import DataFilter, FilterTypes, AggOperations
params = MindRoveInputParams()
board_shim = BoardShim(BoardIds.MINDROVE_WIFI_BOARD, params)
board_shim.prepare_session()
board_shim.start_stream()
board_shim.config_board(MindroveConfigMode.BEEP) // send synchronization signal / trigger
board_shim.config_board(MindroveConfigMode.IMP_MODE) // switch to impedance mode
board_shim.config_board(MindroveConfigMode.EEG_MODE) // switch to eeg mode