Skip to content

upsidedownlabs/Chords-Python

Repository files navigation

Chords - Python

Chords Python script is designed to interface with an Arduino-based bioamplifier, read data from it, optionally log this data to CSV or stream it via the Lab Streaming Layer (LSL), and visualize it through a graphical user interface (GUI) with live plotting.

Note

Flash Arduino code to your hardware from Chords Arduino Firmware to use this python tool.

Features

  • Automatic Arduino Detection: Automatically detects connected Arduino devices via serial ports.
  • Data Reading: Read ModularEEG P2 format data packets from the Arduino's serial port.
  • CSV Logging: Optionally logs data to a CSV file.
  • LSL Streaming: Optionally streams data to an LSL outlet for integration with other software.
  • Verbose Output: Provides detailed statistics and error reporting, including sampling rate and drift.
  • GUI: Live plotting of six channels using a PyQt-based GUI.
  • Timer: Record data for a set time period in seconds.

Requirements

  • Python
  • pyserial library (for serial communication)
  • pylsl library (for LSL streaming)
  • argparse, time, csv, datetime (standard libraries)
  • pyqtgraph library (for GUI)
  • PyQt5 library
  • numpy library

Installation

  1. Ensure you have latest version of Python installed.

  2. Create Virtual Environment

    python -m venv venv    
    .\venv\Scripts\activate  
  3. Install the required Python libraries:

    pip install -r chords_requirements.txt

Usage

To use the script, run it from the command line with various options:

python chords.py [options]

Options

  • -p, --port : Specify the serial port to use (e.g., COM5, /dev/ttyUSB0).
  • -b, --baudrate : Set the baud rate for serial communication (default is 230400).
  • --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.
  • -t : Enable the timer to run program for a set time in seconds.

Data Logging

  • CSV Output: The script saves the processed data in a CSV file with a timestamped name.

    • The CSV file contains the following columns:
      • Counter: The sample counter from the Arduino.
      • Channel1 to Channel6: The data values from each channel.
  • Log Intervals: The script logs data counts every second and provides a summary every 10 minutes, including the sampling rate and drift in seconds per hour.

LSL Streaming

  • Stream Name: BioAmpDataStream
  • Stream Type: EXG
  • Channel Count: 6
  • Sampling Rate: UNO-R3 : 250 Hz , UNO-R4 : 500 Hz
  • Data Format: float32

Script Functions

auto_detect_arduino(baudrate, timeout=1): Detects an Arduino connected via serial port. Returns the port name if detected.

read_arduino_data(ser, csv_writer=None): Reads and processes data from the Arduino. Writes data to CSV and/or LSL stream if enabled.

start_timer(): Initializes timers for 1-second and 10-minute intervals.

log_one_second_data(verbose=False): Logs and resets data for the 1-second interval.

log_ten_minute_data(verbose=False): Logs data and statistics for the 10-minute interval.

parse_data(port,baudrate,lsl_flag=False,csv_flag=False,verbose=False): Parses data from Arduino and manages logging, streaming, and GUI updates.

cleanup(): Handles all the cleanup tasks.

main(): Handles command-line argument parsing and initiates data processing.

Applications

Important

Before using the below Applications make sure you are in application folder.

GUI

  • python gui.py: Enable the real-time data plotting GUI.

Script Functions

init_gui(): Initializes and displays the GUI with six real-time plots, one for each bio-signal channel.

update_plots(): Updates the plot data by pulling new samples from the LSL stream and shifting the existing buffer.

FORCE BALL GAME

  • python game.py: Enable a GUI to play game using EEG Signal.

Script Functions

bandpower(data, sf, band, window_sec=None, relative=False): Calculates the band power of EEG data in a specified frequency band using the Welch method.

eeg_data_thread(eeg_queue): Continuously retrieves EEG data from an LSL stream and computes power ratios for Player A and Player B.

reset_game(): Resets the game state and initializes the ball and player forces.

update_ball_position(force_player1, force_player2): Updates the ball's position based on the net force exerted by both players.

check_win_condition(): Determines if either player has won based on the ball's position.

HEART RATE

  • python heartbeat.ecg.py:Enable a GUI with real-time ECG and heart rate.

Script Functions

butter_filter(cutoff, fs, order=4, btype='low'): Designs a Butterworth filter to remove unwanted frequencies from the ECG signal.

apply_filter(data, b, a): Applies the designed Butterworth filter to the ECG data for noise reduction.

detect_heartbeats(ecg_data, sampling_rate): Detects heartbeats in the ECG signal using peak detection.

run(self): Collects ECG data from the LSL stream, applies filtering, and emits the filtered data for real-time plotting.

update_plot(self, ecg_data): Updates the plot with the latest ECG data and detects heartbeats to display on the GUI.

update_heart_rate(self): Calculates and updates the heart rate based on detected R-peaks in the ECG signal.

EMG ENVELOPE

  • python emgenvelope.py :Enable a GUI with real-time EMG & its Envelope.

Script Functions

update_plot : Updates the plot with latest Filtered EMG Data and its Envelope.

EOG

  • python eog.py :Enable a GUI with real-time EOG.

Script Functions

update_plot : Updates the plot with latest Filtered EOG Data.

Troubleshooting

  • Arduino Not Detected: Ensure the Arduino is properly connected and powered. Check the serial port and baud rate settings.
  • CSV File Not Created: Ensure you have write permissions in the directory where the script is run.
  • LSL Stream Issues: Verify that the pylsl library is installed and configured correctly.

Contributors

We are thankful to our awesome contributors, the list below is alphabetically sorted.

The audio file used in game.py is sourced from Pixabay

About

A python tool to record data from BioAmp hardware.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published