Pacemaker code Implementation for SFWRENG 3K04

Dependencies:   FXOS8700Q Queue mbed-rtos mbed

Fork of Pacemaker by Eric dollar

voor.h

Committer:
trane3
Date:
2016-11-16
Revision:
18:aef2f75f216b
Parent:
8:75c1dd8b0d61

File content as of revision 18:aef2f75f216b:

#pragma once
#include "mbed.h"
#include "pulse.h"
#include "rtos.h"

class voor {
    public:
        voor();
        ~voor();
        voor(pulse*);
        void startPace();
        void setPacingMode(int);
        void voor_pace(void const *args);
    private:
        int y_pacingMode;
        pulse* voorPulse;
        
};