Anıl Ufuk Batmaz / Flasher
Revision:
0:7a4785cc33b1
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/flasher.h	Sat Jun 09 11:37:38 2012 +0000
@@ -0,0 +1,15 @@
+#ifndef MBED_FLASHER_H
+#define MBED_FLASHER_H
+
+#include "mbed.h"
+
+class Flasher {
+public:
+    Flasher(PinName pin);
+    void flash(int n);
+  
+private:  
+    DigitalOut _pin;
+};
+
+#endif
\ No newline at end of file