Pacemaker code Implementation for SFWRENG 3K04

Dependencies:   mbed Queue mbed-rtos FXOS8700Q

Fork of Pacemaker by Eric dollar

SWFRENG 3K04 Project to design, develop, and document a functional pacemaker.

The project uses the Freescale K64F Microcontroller and C++ mbed library.

hardware.h

Committer:
FiveDollar
Date:
2016-11-14
Revision:
2:fbba2687ddfe
Parent:
0:b2b3955cd77b
Child:
16:08d5e5a3ee74

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;
};