Skip to content

Commit

Permalink
updated docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Dieudonné committed Jan 3, 2025
1 parent 434bc54 commit 1663374
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions docs/SupportedBoards.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1026,20 +1026,14 @@ Ant Neuro has many devices and all of them are supported by BrainFlow:
- :code:`ANT_NEURO_EE_225_BOARD`
- :code:`ANT_NEURO_EE_511_BOARD`

Initialization and EEG reading example:
Initialization example:

.. code-block:: python
params = BrainFlowInputParams()
board = BoardShim(BoardIds.ANT_NEURO_EE_410_BOARD, params) # 8 channel amplifier
board.prepare_session()
board.start_stream()
for i in range(3):
time.sleep(1)
data = board.get_board_data() # get all data and remove it from internal buffer
print(f'{data.shape[0]} channels x {data.shape[1]} samples')
board.stop_stream()
board.release_session()
`More elaborate example <https://github.com/brainflow-dev/brainflow/blob/master/python_package/examples/tests/eego_impedances_and_eeg.py>`_ (reading EEG and impedances)

Supported platforms:

Expand Down

0 comments on commit 1663374

Please sign in to comment.