Welcome to Hackster!
Hackster is a community dedicated to learning hardware, from beginner to pro. Join us, it's free!
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 hour232
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 💡🕊️
58 projects • 224 followers
Electronic Engineering
Contact

Comments

Please log in or sign up to comment.