Chords-Python#
Overview#
Chords-Python is an open-source bag of tools for recording biopotential signals like ECG, EMG, EEG, or EOG, along with visualization using BioAmp hardware. It’s ideal for educational purposes as it promotes DIY Neuroscience and makes biopotential signal exploration more accessible for students and researchers.
Features#
Feature |
Description |
---|---|
Automatic Arduino Detection |
Automatically scans and detects connected Arduino devices, streamlining setup by eliminating manual port configuration. Ensures quick, user-friendly selection of the correct device. |
Data Reading |
Reads data packets from the Arduino in real-time, efficiently processing them to ensure no data loss and accurate signal representation for analysis or visualization. |
CSV Logging |
Optionally logs incoming data to a CSV file with columns for Counter and up to 6-Channel data, enabling easy storage for analysis or sharing. |
LSL Streaming |
Streams data via Lab Streaming Layer (LSL), a protocol for time-synchronized data sharing. Enables real-time analysis, visualization, or integration with platforms like BrainVision LSL Viewer. |
Verbose Output |
Provides detailed output, including real-time statistics and error reporting. Tracks sampling rate, signal drift, and other key metrics to ensure smooth data acquisition. |
Inverted Signal |
Allows users to invert the signal in software to correct electrode placement issues without needing physical adjustments, ensuring seamless experimentation. |
Timer |
Enables time-based recording, automatically stopping after a user-defined duration in seconds. Ideal for experiments requiring specific data intervals, simplifying automated data collection. |
Software Requirements#
Arduino IDE – Required to upload the Chords Arduino firmware to your development board.
Python – Ensure you have the most recent version installed.
VS Code or any other code editor (Alternatively, you can use the Command Prompt).
Hardware Requirements#
To use Chords-Python, you need:
A development board (Compatible Boards)
A USB cable (type depends on the board)
BioAmp Hardware and its accessories
Setting up the hardware#
Make all the connections according to the hardware you are using , including sensor connections with the development board, body connections with the sensor, and connections from the development board to your laptop.
Uploading the code#
Once you are all set, it is time to upload the code to your development board. Go to Chords Arduino Firmware GitHub repo, scroll down to the supported boards table, find your board name, and click on the Arduino sketch corresponding to that row. Copy the sketch and paste it into Arduino IDE. Go to tools, select your board, and the correct COM port. Now, hit the upload button.
Opening Chords-Python#
Follow these steps to set up and install Chords-Python:
Ensure you have latest version of Python installed.
Download the GitHub repository:
You can download the Chords-Python repository from GitHub by visiting the following link: Chords-Python.
Or, You can clone the repository using Git by running the following command:
git clone https://github.com/upsidedownlabs/Chords-Python.git
Create a Virtual Environment:
A virtual environment allows you to manage dependencies for your project in isolation.
Open a terminal or command prompt.
Navigate to the directory where you have cloned the repository.
Run the following command to create a virtual environment:
python -m venv venv
- To activate the virtual environment:
On Windows:
.\venv\Scripts\activate
On macOS/Linux:
source venv/bin/activate
Install the Required Python Libraries:
Once the virtual environment is activated, you need to install the required libraries for the project.
In the terminal or command prompt, run the following command to install the dependencies needed to run the python script listed in the chords_requirements.txt file:
pip install -r chords_requirements.txt
This will install all the necessary Python libraries and dependencies for Chords-Python.
Once these steps are completed, you will be ready to run the Chords-Python Script.
To run the Script, run the following command :
python chords.py [options]
Tip
Replace [options] with any specific flags you want to use.
Options available are:
Option |
Description |
---|---|
-p, –port |
Specify the serial port to use (e.g., COM5, /dev/ttyUSB0). (By default, it automatically detects the port.) |
-b, –baudrate |
Set the baud rate for serial communication. (By default, the script first attempts to use 230400, and if that fails, it automatically falls back to 115200.) |
–csv |
Enable CSV logging. Data will be saved to a timestamped file. |
–lsl |
Enable LSL streaming. Sends data to an LSL outlet. |
-v, –verbose |
Enable verbose output with detailed statistics and error reporting. |
–inverted |
Invert the signal before streaming LSL and logging. |
-t |
Enable the timer to run the program for a set time in seconds. |
Example: If you run the following command:
python chords.py --lsl -v --csv -t 60
Then, This command executes the Python script chords.py, initiates the LSL stream, enables verbose output, activates CSV logging, and script runs for 60 seconds.
Applications#
There are many applications available that stream the LSL and can be run for various purposes. Open another terminal and run any application. Ensure the LSL stream is running first.
Note
Before running any application, install all the dependencies required for running the application. Run the following command in a new terminal:
pip install -r app_requirements.txt
After installing the dependencies, you can run any of the following applications by executing the corresponding command in a new terminal.
List of available applications:
1. ECG with Heart Rate#
Overview#
The ECG with Heart Rate is a real-time application designed to visualize and analyze Electrocardiogram (ECG) data using the Lab Streaming Layer (LSL) protocol. Built with Python and PyQt5, this application provides a graphical interface for monitoring ECG signals, detecting R-peaks (heartbeats), and calculating the heart rate in real time. It applies signal processing techniques and utilizes the neurokit2 library to estimate R-peak detection and heart rate.
Features#
Features |
Description |
---|---|
|
|
|
|
|
|
|
|
|
|
Running the Application#
To run the ECG with Heart Rate application, execute the following command in a terminal:
python heartbeat_ecg.py
A GUI window will appear, displaying the real-time ECG signal along with the calculated heart rate.

2. EMG with Envelope#
Overview#
The EMG with Envelope is a Python-based application designed to visualize and analyze Electromyography (EMG) signals in real-time. It connects to an EMG data stream using the Lab Streaming Layer (LSL) protocol, processes the signal to extract the EMG envelope, and displays both the filtered EMG signal and its envelope in a user-friendly graphical interface. Built with PyQt5 and pyqtgraph, the application provides a responsive and interactive visualization tool for students, researchers, or developers working with EMG data.
Features#
Features |
Description |
---|---|
|
|
|
|
|
|
|
|
|
|
Running the Application#
To run the EMG with Envelope, execute the following command in a terminal:
python emgenvelope.py
A GUI window will appear, displaying the real-time EMG signal along with the calculated EMG Envelope.

3. EOG with Blinks#
Overview#
The EOG with Blinks is a Python-based application designed to visualize and detect eye blinks in real-time using Electrooculography (EOG) signals. Built with the PyQt5 framework and PyQtGraph for plotting, the application connects to an LSL (Lab Streaming Layer) stream to acquire EOG data, processes the signal using a low-pass filter, and detects blinks based on dynamic thresholds. The application provides a dual-plot interface to display the filtered EOG signal and detected blinks, making it a useful tool for real-time monitoring and analysis of EOG data.
Features#
Features |
Description |
---|---|
|
|
|
|
|
|
|
|
Running the Application#
To run the EOG with Blink Detection, execute the following command in a terminal:
python eog.py
A GUI window will appear, displaying the real-time EOG signal along with the Blinks marked as Red dot.

4. EEG with FFT#
Overview#
The EEG with FFT and Brainwave Power is a Python-based application designed to visualize and analyze Electroencephalography (EEG) signals in real-time. It connects to an EEG data stream using the Lab Streaming Layer (LSL) protocol, processes the signal to remove noise, and performs Fast Fourier Transform (FFT) to compute the power of different brainwave frequency bands (Delta, Theta, Alpha, Beta, and Gamma). The application provides a graphical user interface (GUI) built with PyQt5 and pyqtgraph for real-time visualization of raw EEG signals, FFT results, and brainwave power distribution.
Features#
Features |
Description |
---|---|
|
|
|
|
|
|
|
|
|
|
Running the Application#
To run the EEG with FFT, execute the following command in a terminal:
python ffteeg.py
A GUI window will appear, displaying the real-time EEG signal along with the calculated FFT and Brainwave power distribution.

5. EEG Tug of War Game#
Overview#
The EEG Tug of War Game is a Python-based application that leverages Electroencephalography (EEG) signals to create an interactive two-player game. Players control the movement of a ball on the screen by modulating their brain activity, specifically the Alpha and Beta frequency bands. The game uses the Lab Streaming Layer (LSL) protocol to acquire real-time EEG data, processes the signals to calculate relative power in the Alpha and Beta bands, and translates these into forces that move the ball. The first player aims to push the ball onto the opponent’s side to score and win the game. The application is built using the pygame library for the graphical interface and integrates with pylsl for EEG data acquisition.
Features#
Features |
Description |
---|---|
|
|
|
|
|
|
|
|
|
|
Running the Application#
To run the EEG Tug of War, execute the following command in a terminal:
python game.py
The game window will open, featuring buttons for START/RESTART, PLAY/PAUSE, and EXIT. These buttons offer intuitive control, allowing players to easily start, pause, resume, or exit the game as needed.

For detailed instructions, check out the EEG Tug of War Game Instructable.
6. EEG Beetle Game#
Overview#
The EEG Beetle Game is a Python-based application that uses Electroencephalography (EEG) signals to control a beetle’s movement in a 2D game environment. The game leverages the Lab Streaming Layer (LSL) protocol to acquire real-time EEG data, processes the signal to detect the user’s focus level, and translates it into upward or downward movement of the beetle. The application is built using the pygame library for the game interface and integrates signal processing techniques to analyze EEG data in real-time.
Features#
Features |
Description |
---|---|
|
|
|
|
|
|
|
|
|
|
|
|
Running the Application#
To run the EEG Beetle Game, execute the following command in a terminal:
python beetle.py
A GUI window will appear, showing all calibration messages, followed by the game starting, and finally displaying the game with the beetle.

7. GUI#
Overview#
The GUI application is a Python-based tool designed to visualize real-time data streams from an Arduino device using the Lab Streaming Layer (LSL) protocol. The application connects to an LSL stream, retrieves multi-channel data, and plots it in real-time using the pyqtgraph library.
Features#
Features |
Description |
---|---|
|
|
|
|
|
|
Running the Application#
To run the GUI Visualization, execute the following command in a terminal:
python gui.py
A GUI window will appear that shows the data in real-time.

8. EOG Keystroke Emulator#
Overview#
The EOG Keystroke Emulator is a Python-based application designed to detect eye blinks using Electrooculography (EOG) signals and translate them into keystrokes. The application leverages the Lab Streaming Layer (LSL) protocol to acquire real-time EOG data, processes the signal to detect blinks, and simulates a spacebar press whenever a blink is detected. The application is built using the tkinter library for the graphical user interface (GUI) and integrates with pyautogui for keystroke emulation.
Features#
Features |
Description |
---|---|
|
|
|
|
|
|
|
|
Running the Application#
To run the EOG Keystroke Emulator, execute the following command in a terminal:
python keystroke.py
A small window appears in the corner, displaying a Connect button. Once connected, a Start button becomes visible. Pressing the Start button initiates blink detection, and each detected blink triggers a spacebar key press.

9. CSV Plotter#
Overview#
The CSV Plotter is a Python-based application designed to visualize data from CSV files. Built using the tkinter library for the graphical user interface (GUI) and plotly for data visualization, this tool allows users to load CSV files, select specific data channels, and generate interactive line plots.
Features#
Features |
Description |
---|---|
|
|
|
|
|
|
|
|
Running the Application#
To run the CSV Plotter, execute the following command in a terminal:
python csvplotter.py
A small pop-up will appear, providing options to load the file, select the channel, and plot the data.

Web Interface#
Overview#
The Chords-Python Web Interface provides a user-friendly way to control and manage the LSL stream, and other applications from a single web Interface. It is built using Flask and enables real-time interaction with data acquisition processes.
Benefit of Using the Web Interface
All applications can be run simultaneously by just starting the LSL stream once, reducing manual effort.
Simplifies the process of managing multiple applications without needing separate terminal windows.
Note
To save the data in CSV files, first run the LSL Stream in a terminal, then launch any applications in a separate terminal (as explained above). Ignore the web interface option in this case.
Features#
Features |
Description |
---|---|
|
|
|
|
|
|
|
|
Running the Web Interface#
1. Ensure dependencies are installed#
Install all required dependencies:
pip install chords_requirements.txt
pip install app_requirements.txt
2. Start the Web Interface#
Run the Flask server using the following command:
python app.py
3. Access the Interface#
Open the Web Interface by clicking on the link generated in the terminal.

4. Start LSL and Other Applications#
Click Start LSL to begin streaming.The Button turns green showing that the LSL Stream is running.
Launch additional applications as needed.

5. Stop All Processes#
Press Ctrl + C in the terminal to safely stop all running applications.