Rushil Saraswat
Published © CC BY-ND

ECG Monitor

A wearable device that can conduct ECG on the go and show it on mobile and is available at cheap cost.

IntermediateFull instructions provided40,125
ECG Monitor

Things used in this project

Hardware components

Arduino UNO
Arduino UNO
×1
SparkFun Single Lead Heart Rate Monitor - AD8232
SparkFun Single Lead Heart Rate Monitor - AD8232
×1
HC-05 Bluetooth Module
HC-05 Bluetooth Module
×1
SparkFun Solder-able Breadboard - Mini
SparkFun Solder-able Breadboard - Mini
×1
Male/Female Jumper Wires
Male/Female Jumper Wires
×15

Hand tools and fabrication machines

Tape, Electrical
Tape, Electrical
Hot glue gun (generic)
Hot glue gun (generic)

Story

Read more

Custom parts and enclosures

THE MOBILE APPLICATION

PLEASE TRANSFER THIS .APK APPLICATION TO YOUR MOBILE AND INSTALL IT

The 3D Model

This is the .obj file of the project and it shows all the components and how they will be placed including the vest, the skeleton, the heart and all of the electronic components

Schematics

The schematic

Code

The code

C/C++
void setup() {
  
  Serial.begin(9600);
  pinMode(5, INPUT); 
  pinMode(6, INPUT); 

}

void loop() {
  
  if((digitalRead(10) == 1)||(digitalRead(11) == 1)){
    Serial.println('!');
  }
  else{
   
      Serial.println(analogRead(A0));
  }

  delay(1);
}

Credits

Rushil Saraswat

Rushil Saraswat

0 projects • 18 followers

Comments