Debounce_Library

Dependents:   EJ3_Cafetera EJ1

Revision:
2:d1e2599de47c
Parent:
0:16d62113f1d5
--- a/antirrebote.h	Thu May 03 23:32:45 2018 +0000
+++ b/antirrebote.h	Tue Jun 12 17:08:53 2018 +0000
@@ -2,7 +2,6 @@
 #define _ANTIRREBOTE_H_
 #include "mbed.h"
 
-enum{NO_APRETADO,ENCENDIDO=0, APRETADO, APAGADO = 1};
 typedef int pinEstado_t;
 
 
@@ -14,14 +13,12 @@
         ~AntReb();
 
         pinEstado_t antiRebote();
-        
         void setPin(DigitalIn pin);
+        void DebTime();
 
     private:
-
-        
-        char e_PULS;
-        char P_PULS;
+        char state, Pulsador, deb_time, hab;
+        pinEstado_t out;
     
 };