Cardiomate

A smart gadget for real time ECG monitoring. Data collected from the patient can be used to predict heart diseases.

IntermediateFull instructions provided2 days1,408
Cardiomate

Things used in this project

Hardware components

MSP-EXP430G2 MSP430 LaunchPad
Texas Instruments MSP-EXP430G2 MSP430 LaunchPad
×1
HC-05 Bluetooth Module
HC-05 Bluetooth Module
×1
ecg electrodes
×1
SparkFun Single Lead Heart Rate Monitor - AD8232
SparkFun Single Lead Heart Rate Monitor - AD8232
×1

Software apps and online services

Energia
Texas Instruments Energia
MIT App Inventor
MIT App Inventor

Hand tools and fabrication machines

3D Printer (generic)
3D Printer (generic)

Story

Read more

Code

ecg monitoring code

Arduino
Code for real time monitoring of ECG using TI MSP430 launchpad
void setup() {
  // initialize the serial communication:
  Serial.begin(9600);
  pinMode(9, INPUT); // Setup for leads off detection LO +
  pinMode(10, INPUT); // Setup for leads off detection LO -

}

void loop() {
  
  if((digitalRead(9) == 1)||(digitalRead(10) == 1)){
    Serial.println('!');
  }
  else{
    // send the value of analog input 0:
      Serial.println(analogRead(A0));
  }
  //Wait for a bit to keep serial data from saturating
  delay(1);
}

Credits

Dr. Umesh Dutta

Dr. Umesh Dutta

38 projects • 53 followers
Working as Director of Innovation Centre at Manav Rachna, India. I am into development for the last 12 years.
Vivek Saini

Vivek Saini

1 project • 2 followers
Data Scientist
Parul Taneja

Parul Taneja

1 project • 0 followers
Texas Instruments University Program

Texas Instruments University Program

91 projects • 119 followers
TI helps students discover what's possible to engineer their future.
Energia

Energia

34 projects • 26 followers
Founder of @energiaproject

Comments