Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of Pacemaker by
chamberData.h
- Committer:
- trane3
- Date:
- 2016-11-16
- Revision:
- 16:aef2f75f216b
- Parent:
- 0:b2b3955cd77b
File content as of revision 16:aef2f75f216b:
#pragma once
#include "mbed.h"
#include "genData.h"
class chamberData : public genData {
public:
chamberData();
~chamberData();
chamberData(Serial*, char);
char getChamberType();
void chngPaceAmp(double);
double getPaceAmp();
void chngPaceWidth(double);
double getPaceWidth();
void chngRP(double);
double getRP();
void chngSensitivity(double);
double getSensitivity();
private:
Serial* pc;
char mychamber;
double p_PaceAmp;
double p_PaceWidth;
double p_RP;
double p_Sensitivity;
};
