example code using statis library for temperature measurement with LM35 and LM335

Dependencies:   mbed statis

Revision:
0:5ce1bc75ff24
Child:
1:5821fa15d6ca
diff -r 000000000000 -r 5ce1bc75ff24 tickerEvent.h
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tickerEvent.h	Mon Nov 19 20:02:24 2012 +0000
@@ -0,0 +1,14 @@
+// tickerEvent.h
+#include "mbed.h"
+ 
+class tickerEvent {
+  private:
+    Ticker ticker;    
+    DigitalOut _pin;
+
+  public:
+    tickerEvent(PinName pin, float delay);
+    ~tickerEvent(void);
+    
+    void toDo(void);
+};
\ No newline at end of file