Pacemaker code Implementation for SFWRENG 3K04
Dependencies: FXOS8700Q Queue mbed-rtos mbed
Fork of Pacemaker by
chamberData.h
- Committer:
- FiveDollar
- Date:
- 2016-11-29
- Revision:
- 30:0cb4890910cd
- Parent:
- 27:f8deff828a00
File content as of revision 30:0cb4890910cd:
#pragma once #include "mbed.h" #include "genData.h" class chamberData : public genData { public: chamberData(); ~chamberData(); chamberData(char); char getChamberType(); int chngPaceAmp(double); double getPaceAmp(); int chngPaceWidth(double); double getPaceWidth(); int chngRP(double); double getRP(); int chngSensitivity(double); double getSensitivity(); private: char mychamber; double p_PaceAmp; double p_PaceWidth; double p_RP; double p_Sensitivity; };