.. include:: /substitutions.rst .. _raspberry-pi: .. index:: single: Raspberry Pi Wireless Streaming ================== All the software is already set up on the Raspberry Pi 4's SD Card. (SD Card image coming soon.) All you have to do is log in and start streaming. Make sure your laptop where you will be running OpenBCI GUI is on the same wifi network as the Raspberry Pi. Connecting to the Raspberry Pi ------------------------------ #. ssh to the Raspberry Pi (password is ``raspberry``): .. code-block:: bash $ ssh pi@raspberry-pi.local #. Change to the ``hackeeg-client-python`` directory: .. code-block:: bash $ cd ~/src/hackeeg-client-python #. Activate the Python virtual environment: .. code-block:: bash $ pipenv shell (hackeeg-client-python) $ Streaming Data -------------- #. To stream data from internal test signals, printing 2000 samples to the terminal– you will see the HackEEG blue board LED flash briefly before the data starts printing: .. code-block:: bash $ hackeeg_stream --channel-test --sps 500 --samples 2000 #. To stream data from internal test signals continuously and send via Lab Streaming Layer (LSL): .. code-block:: bash $ hackeeg_stream --channel-test --sps 500 --continuous --lsl #. To stream data from internal test signals continuously and send via Lab Streaming Layer (LSL) without printing to the terminal: .. code-block:: bash $ hackeeg_stream --channel-test --sps 500 --continuous --lsl --quiet #. To stream data continuously from electrode input at 500 samples per second (SPS) at 24x gain and send via Lab Streaming Layer (LSL) without printing to the terminal: .. code-block:: bash $ hackeeg_stream --sps 500 --gain 24 --continuous --lsl --quiet OpenBCI ------- #. To display the stream's data, select ``Live (from Lab Streaming Layer)`` from the System Control Panel dialog. Leave the channel setting at 8 (the other two don't work on this branch). Click Start Session. #. You should see some status messages in the console as OpenBCI GUI finds the stream and connects to it. #. Click Start Data Stream