eric's fork test

Dependencies:   mbed

Fork of Pacemaker by 3k04 team

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers voor.h Source File

voor.h

00001 #pragma once
00002 #include "mbed.h"
00003 #include "pulse.h"
00004 
00005 class voor {
00006     public:
00007         voor();
00008         ~voor();
00009         voor(pulse*);
00010         void startPace();
00011         void setPacingMode(int);
00012     private:
00013         int y_pacingMode;
00014         pulse* voorPulse;
00015         
00016 };