Final project 4180 Spring 2017 Heart Rate detection interfaced with bluetooth and MATLAB for signal processing. By: Prashanth Collapancheri and Venu Ganti

Dependencies:   PulseSensor mbed

Files at this revision

API Documentation at this revision

Comitter:
vganti6
Date:
Mon May 01 02:49:08 2017 +0000
Commit message:
Final project 4180 Prashanth Collapancheri Venu Ganti;

Changed in this revision

PulseSensor.lib Show annotated file Show diff for this revision Revisions of this file
main.cpp Show annotated file Show diff for this revision Revisions of this file
mbed.bld Show annotated file Show diff for this revision Revisions of this file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/PulseSensor.lib	Mon May 01 02:49:08 2017 +0000
@@ -0,0 +1,1 @@
+http://developer.mbed.org/users/donalm/code/PulseSensor/#e80a245c4d0d
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Mon May 01 02:49:08 2017 +0000
@@ -0,0 +1,22 @@
+#include "mbed.h"
+ 
+AnalogIn pulseIn(p20);
+Serial pc(USBTX,USBRX);
+Serial bluemod(p9,p10);
+float pulses = 0.0;
+
+int main() {
+    char buffer[128];
+ 
+    while(1) {
+     pulses = pulseIn.read();  
+       printf("%0.4f\n", pulses);
+        if(pc.readable()){
+            if(bluemod.writeable()){
+              bluemod.printf("%c",pc.getc());
+            }  
+        }
+    wait_ms(5);
+    }
+}
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Mon May 01 02:49:08 2017 +0000
@@ -0,0 +1,1 @@
+https://mbed.org/users/mbed_official/code/mbed/builds/97feb9bacc10
\ No newline at end of file