Pedro Colla / Mbed 2 deprecated CTo_VyV_TPAlarma

Dependencies:   mbed

Revision:
0:f42f18c56a88
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Filtro.cpp	Sat Nov 16 00:48:19 2013 +0000
@@ -0,0 +1,17 @@
+#include "alarma.h"
+#include "mbed.h"
+
+float   smoother = 0;
+float   f1 = 0;
+float   f2 = 0;
+float   f3 = 0;
+
+float Filtro(void){
+    f1 = Valor;
+    wait(0.2);
+    f2 = Valor;
+    wait(0.2);
+    f3 = Valor;
+    smoother = (f1 + f2 + f3)/3;
+    return smoother;
+}
\ No newline at end of file