eric's fork test

Dependencies:   mbed

Fork of Pacemaker by 3k04 team

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers hardware.h Source File

hardware.h

00001 #pragma once
00002 #include "mbed.h"
00003 
00004 class hardware{
00005     public:
00006         hardware();
00007         ~hardware();
00008         Serial* getSerial();
00009         PwmOut* getChamber(char);
00010     
00011     private:
00012         PwmOut atrium;
00013         PwmOut ventricle;
00014         Serial pc;
00015 };