eric's fork test

Dependencies:   mbed-rtos mbed

Fork of Pacemaker by 3k04 team

hardware.h

Committer:
FiveDollar
Date:
2016-11-14
Revision:
2:fbba2687ddfe
Parent:
0:b2b3955cd77b

File content as of revision 2:fbba2687ddfe:

#pragma once
#include "mbed.h"

class hardware{
    public:
        hardware();
        ~hardware();
        Serial* getSerial();
        PwmOut* getChamber(char);
    
    private:
        PwmOut atrium;
        PwmOut ventricle;
        Serial pc;
};