eric's fork test

Dependencies:   mbed

Fork of Pacemaker by 3k04 team

hardware.h

Committer:
trane3
Date:
2016-11-15
Revision:
8:75c1dd8b0d61
Parent:
2:fbba2687ddfe

File content as of revision 8:75c1dd8b0d61:

#pragma once
#include "mbed.h"

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