Mitchell Hatfield / Mbed 2 deprecated Component_Test_Interface

Dependencies:   BridgeDriver FrontPanelButtons MCP23017 SDFileSystem TextLCD mbed

Devices/TimerDevice.hpp

Committer:
mehatfie
Date:
2014-10-01
Revision:
11:bc9cd2869f95

File content as of revision 11:bc9cd2869f95:

#ifndef TIMERDEVICE_HPP
#define TIMERDEVICE_HPP

#include "Initialization.hpp"

class TimerDevice: public Device{
    
    private:
        Timer Timer;
        
    public:
        TimerDevice(LineData);
        int interpret(LineData&);
        int off();
        int getChannel();
        int pause();
        int resume();
        //void enableBrake();
        //int forceBrake();
        //int forceFloat();
        //float drive();
};

#endif