Pacemaker code Implementation for SFWRENG 3K04

Dependencies:   mbed Queue mbed-rtos FXOS8700Q

Fork of Pacemaker by Eric dollar

SWFRENG 3K04 Project to design, develop, and document a functional pacemaker.

The project uses the Freescale K64F Microcontroller and C++ mbed library.

Revision:
0:b2b3955cd77b
Child:
2:fbba2687ddfe
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pulse.h	Sun Oct 30 16:04:52 2016 +0000
@@ -0,0 +1,25 @@
+#pragma once
+#include "mbed.h"
+#include "hardware.h"
+#include "chamberData.h"
+
+class pulse{
+public:
+    pulse();
+    pulse(chamberData*, hardware*);
+    ~pulse();
+    void startPulse();
+    
+private:
+    double myPaceWidth; //mSec, width of ventricular pace
+    double myPaceAmp; //mV, amplitude of ventricular pace
+    double myRP; //mSec, duration of refractory period
+    float p_hysteresisInterval;
+    float p_lowrateInterval;
+    bool p_hysteresis;
+    Serial* pc;
+    AnalogOut* aOut;
+    chamberData* myChamber;
+    hardware* myIOpins;
+        
+};
\ No newline at end of file