Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: BridgeDriver FrontPanelButtons MCP23017 SDFileSystem TextLCD mbed
Diff: Devices/TimerDevice.hpp
- Revision:
- 11:bc9cd2869f95
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/Devices/TimerDevice.hpp Wed Oct 01 18:11:38 2014 +0000
@@ -0,0 +1,24 @@
+#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
\ No newline at end of file