aa

Dependencies:   mbed

Fork of AnalogOut-HelloWorld by Mbed

mdeviceCtrl.h

Committer:
fewerhy
Date:
2016-10-10
Revision:
5:e6536d2d5aba

File content as of revision 5:e6536d2d5aba:

#ifndef DEVICECTRL_H
#define DEVICECTRL_H
#include <iostream>
#include "mdevice.h"
using namespace std;

class mdeviceCtrl
{
public:
    mdeviceCtrl();
    void run();
private:
    bool switchNeedle1();
    bool retractNeedle();
    bool inserNeedle();
    mdevice *myDevice;
    int needleStatus;
};

#endif