Component Test's Software to work with "Universal Controller Box" - Software is an interpreter or "compiler" for programs to be done with a .txt file and read off of the SD Card

Dependencies:   BridgeDriver FrontPanelButtons MCP23017 SDFileSystem TextLCD mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers TimerDevice.hpp Source File

TimerDevice.hpp

00001 #ifndef TIMERDEVICE_HPP
00002 #define TIMERDEVICE_HPP
00003 
00004 #include "Initialization.hpp"
00005 
00006 class TimerDevice: public Device{
00007     
00008     private:
00009         Timer Timer;
00010         
00011     public:
00012         TimerDevice(LineData);
00013         int interpret(LineData&);
00014         int off();
00015         int getChannel();
00016         int pause();
00017         int resume();
00018         //void enableBrake();
00019         //int forceBrake();
00020         //int forceFloat();
00021         //float drive();
00022 };
00023 
00024 #endif