eric's fork test

Dependencies:   mbed-rtos 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 #include "rtos.h"
00005 
00006 class voor {
00007     public:
00008         voor();
00009         ~voor();
00010         voor(pulse*);
00011         void startPace();
00012         void setPacingMode(int);
00013         void voor_pace(void const *args);
00014     private:
00015         int y_pacingMode;
00016         pulse* voorPulse;
00017         
00018 };