1

Revision:
0:1b79a7e2d119
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/odometriBase.h	Thu Oct 19 16:46:58 2017 +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