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,427
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
42 projects • 61 followers
Working as Director of Innovation Centre at Manav Rachna, India. I am into development for the last 12 years.
Contact
Vivek Saini
1 project • 2 followers
Data Scientist
Contact
Parul Taneja
1 project • 0 followers
Contact
Texas Instruments University Program
91 projects • 120 followers
TI helps students discover what's possible to engineer their future.
Contact
Energia
34 projects • 26 followers
Founder of @energiaproject
Contact

Comments

Please log in or sign up to comment.