Revision:
0:2c736f318a3d
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Flasher.h	Sat Dec 04 02:49:37 2010 +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