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:

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:

  1. Ensure you have latest version of Python installed.

  2. 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
    
  3. 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
      
  4. 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.

  5. 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:

Available Options#

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

  1. Real-Time ECG Visualization

  • Displays real-time ECG signals in a dynamic plot using pyqtgraph.

  • Supports adjustable y-axis scaling based on the sampling rate (e.g. 250 Hz or 500 Hz).

  1. R-Peak Detection

  • Utilizes the neurokit2 library to detect R-peaks in the ECG signal.

  • Highlights detected R-peaks as red dots on the plot for easy visualization.

  1. Heart Rate Calculation

  • Computes heart rate (in BPM) using the time intervals between consecutive R-peaks.

  • Implements a moving average filter to smooth heart rate values and reduce noise.

  1. Interactive GUI

  • Built with PyQt5, providing a user-friendly interface with a real-time ECG plot and heart rate display.

  • Allows double-click to reset the plot’s zoom level to default settings.

  1. Signal Filtering

  • Applies a low-pass Butterworth filter to remove high-frequency noise from the ECG signal.

  • Helps in enhancing signal clarity, which can assist in identifying R-peaks.

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.

Heart Rate with ECG

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

  1. Real-Time EMG Signal Visualization

  • Connects to an LSL stream to acquire real-time EMG data.

  • Displays the EMG signal after applying a high-pass filter (70 Hz cutoff) to remove low-frequency noise.

  1. EMG Envelope Extraction

  • Computes the Root Mean Square (RMS) envelope of the filtered EMG signal using a moving window.

  • Applies convolution with a uniform window and pads the result to align with the original signal length.

  1. Interactive and Responsive GUI

  • Built using PyQt5 for a modern and intuitive user interface.

  • Features two synchronized plots: one for the filtered EMG signal and one for the EMG envelope.

  • Disables zoom and pan for a clean, fixed-axis visualization.

  1. Customizable Signal Processing

  • Implements a high-pass Butterworth filter to remove baseline drift and noise.

  • Adjusts the RMS window size dynamically based on the sampling rate (e.g., 25 samples for 250 Hz, 50 samples for 500 Hz).

  1. Dynamic Plot Updates

  • Updates the plots in real-time using a fixed-size circular buffer for efficient data handling.

  • Refreshes the display every 15 milliseconds for smooth and responsive visualization.

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.

EMG with Envelope

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

  1. Real-Time EEG Signal Visualization

  • Displays raw EEG signals in a real-time scrolling plot.

  • Utilizes a moving window of 500 samples for continuous visualization.

  1. Fast Fourier Transform (FFT)

  • Computes the FFT of the EEG signal to analyze its frequency components.

  • Visualizes the FFT results in a separate plot, focusing on the 0-50 Hz range.

  1. Signal Processing

  • Applies a notch filter to remove 50 Hz powerline interference.

  • Uses a bandpass filter (0.5-48 Hz) to isolate relevant EEG frequencies.

  • Implements a Hanning window for FFT computation to reduce spectral leakage.

  1. Brainwave Power Analysis

  • Calculates the power of five brainwave frequency bands:
    • Delta (0.5-4 Hz)

    • Theta (4-8 Hz)

    • Alpha (8-13 Hz)

    • Beta (13-30 Hz)

    • Gamma (30-45 Hz)

  • Displays the power of each band in a bar chart for easy comparison.

  1. User-Friendly GUI

  • Provides a clean and intuitive interface with two main sections:
    • Top Section: Real-time EEG signal plot.

    • Bottom Section: FFT plot and brainwave power bar chart.

  • Allows users to monitor EEG data and its frequency components simultaneously.

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.

EEG with FFT

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

  1. Real-Time EEG Signal Visualization

  • Connects to an LSL stream to acquire real-time EEG data.

  • Computes the power spectral density (PSD) of Alpha (8-13 Hz) and Beta (13-30 Hz) frequency bands using Welch’s method.

  • Calculates the relative power ratio (Beta/Alpha) to determine player force.

  1. Interactive Gameplay

  • Two players compete to move a ball to the opponent’s side using their brain activity.

  • The ball’s movement is determined by the net force derived from the players’ EEG signals.

  1. Dynamic Thresholding

  • Uses a moving average of the last 10 data points to smooth the force calculations.

  • Applies a threshold to prevent small fluctuations from affecting the ball’s movement.

  1. User-Friendly GUI

  • Features a full-screen graphical interface with a central ball and two player paddles.

  • Displays real-time updates of the ball’s position and forces applied by each player.

  • Includes buttons for starting, pausing, resuming, and exiting the game.

  1. Win Condition and Feedback

  • Declares a winner when the ball reaches either side of the screen.

  • Plays a sound effect to celebrate the winner.

  • Automatically pauses the game upon a win and allows for a restart.

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.

EEG Tug of War

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

  1. Real-Time EEG Signal Visualization

  • Connects to an LSL stream to acquire real-time EEG data.

  • Implements a notch filter to remove 50 Hz power line interference and a bandpass filter to isolate relevant EEG frequency bands (0.5–48 Hz).

  1. Focus Level Calculation

  • Computes the user’s focus level by analyzing the power spectral density of the EEG signal.

  • Focus level is calculated using the ratio of high-frequency (beta and gamma) to low-frequency (delta, theta, and alpha) power bands.

  1. Calibration System

  • Includes a calibration phase to establish a baseline focus level for the user.

  • Dynamically sets a focus threshold based on the user’s EEG data during calibration.

  1. Beetle Movement Control

  • Moves the beetle upward when the user’s focus level exceeds the threshold.

  • Moves the beetle downward when the focus level is below the threshold.

  • Implements smooth animation and boundary constraints to ensure the beetle stays within the game window.

  1. Interactive Game Interface

  • Features a 2D game environment with a beetle sprite that responds to the user’s focus level.

  • Displays real-time feedback on the beetle’s position and focus level.

  1. Dynamic Animation

  • Uses a sequence of beetle sprites to create smooth animations.

  • Adjusts animation speed based on the game’s frame rate.

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.

EEG Beetle Game

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

  1. LSL Stream Integration

  • Automatically searches for and connects to available LSL streams.

  • Supports dynamic detection of the number of channels in the stream.

  • Displays connection status and channel count in the GUI.

  1. Real-Time Data Visualization

  • Plots real-time data for each channel in separate graphs.

  • Updates plots at a high frequency for smooth visualization.

  1. Customizable GUI

  • Built using PyQt and pyqtgraph for a responsive and interactive interface.

  • Features a clean layout with individual plots for each channel.

  • Includes a status bar to display LSL connection details.

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.

GUI

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

  1. Real-Time EOG Signal Processing

  • Connects to an LSL stream to acquire real-time EOG data.

  • Implements a low-pass filter to smooth the EOG signal for accurate blink detection.

  1. Blink Detection

  • Detects blinks by identifying peaks in the filtered EOG signal.

  • Uses a dynamic threshold based on the mean and standard deviation of the signal to distinguish blinks from noise.

  • Incorporates a refractory period to prevent multiple detections from a single blink.

  1. Keystroke Emulation

  • Simulates a spacebar press (pyautogui.press(‘space’)) whenever a blink is detected.

  • Provides visual feedback by updating the GUI button color upon blink detection.

  1. User-Friendly GUI

  • Features a compact, movable popup window with a clean and intuitive interface.

  • Includes buttons for connecting to the LSL stream, starting/stopping blink detection, and quitting the application.

  • Displays an eye icon to represent the blink detection status.

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.

Keystroke

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

  1. Load CSV Files

  • Users can load CSV files containing data with a Counter column and multiple channels (e.g., Channel1, Channel2, etc.).

  • The application automatically detects the header row and skips any metadata above it.

  1. Channel Selection

  • A dropdown menu dynamically populates with available channels (e.g., Channel1, Channel2, etc.) from the loaded CSV file.

  • Users can select a specific channel to plot.

  1. Interactive Data Visualization

  • Utilizes plotly to generate interactive line plots for the selected channel.

  • Plots include advanced features such as:
    • Zoom: Zoom in to inspect specific data ranges.

    • Pan: Move across the plot to explore different sections.

    • Autoscale: Automatically adjust the plot scale to fit the data.

    • Download Plot as PNG: Save the generated plot as a high-quality PNG image.

    • Hover-to-View Data Points: Hover over the plot to view precise data values.

  1. User-Friendly Interface

  • Simple and intuitive GUI with buttons for loading files and plotting data.

  • Displays the name of the loaded CSV file for easy reference.

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.

CSV Plotter

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

  1. Start LSL Stream

  • Allows users to start the Lab Streaming Layer (LSL) process to stream biosignals.

  • Displays real-time LSL status and provides error handling.

  1. Launch Additional Applications

  • Users can start and monitor external applications dynamically.

  • Ensures that applications are not started multiple times.

  1. Real-time Application Status

  • The web interface continuously checks and displays the status of running processes.

  1. Graceful Shutdown

  • Provides an option to stop all running processes and exit the server safely by pressing Ctrl + C in the terminal.

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.

Web Interface

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.

Web Interface

5. Stop All Processes#

  • Press Ctrl + C in the terminal to safely stop all running applications.