Aula šŸ’”šŸ•Šļø
Published Ā© MIT

Bio-Signal Plotting: Hexabitz EXG & Arduino Integration

Use an Arduino with the Hexabitz Single-Lead EXG Monitor Module (H2BR0) to plot analog signals on a plotter for visualizing biosignals.

BeginnerFull instructions provided1 hour269
Bio-Signal Plotting: Hexabitz EXG & Arduino Integration

Things used in this project

Story

Read more

Schematics

The Schematic

Code

Arduino Code

C/C++
int y;

int x = 0;

void setup() {
  // initialize the serial communication
  Serial.begin(921600);

}

void loop() {
  y = analogRead(A0);  // Analog output of ExG
  Serial.println(y);  // Send the analog value to the serial plotter

  if (x == 300) {
    x = 0;
    Serial.println("C");
  }
  x++;
  delay(30);
}

Credits

Aula šŸ’”šŸ•Šļø
60 projects • 226 followers
Electronic Engineering
Contact

Comments

Please log in or sign up to comment.