![](/media/cache/img/default_profile.jpg.50x50_q85.jpg)
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:
- 27:f8deff828a00
- Parent:
- 20:bfd23a6845bb
File content as of revision 27:f8deff828a00:
#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; };