-
Notifications
You must be signed in to change notification settings - Fork 0
/
Button.h
42 lines (36 loc) · 832 Bytes
/
Button.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/**
* Button.cpp
* Kleine Klasse zum Entprellen der Tasten.
*
* @mc Arduino/RBBB
* @autor Christian Aschoff / caschoff _AT_ mac _DOT_ com
* @version 1.5
* @created 18.2.2011
* @updated 12.2.2013
*
* Versionshistorie:
* V 1.1: - Kompatibilitaet zu Arduino-IDE 1.0 hergestellt.
* V 1.2: - Optimierung hinsichtlich Speicherbedarf.
* V 1.3: - Verbessertes Debugging.
* V 1.4: - Doppel-Tasten-Abfrage ermoeglicht.
* V 1.5: - Ueberlauf in millis() beruecksichtigt.
*/
#ifndef BUTTON_H
#define BUTTON_H
#if defined(ARDUINO) && ARDUINO >= 100
#include "Arduino.h"
#else
#include "WProgram.h"
#endif
class Button {
public:
Button(byte pin);
Button(byte pin1, byte pin2);
boolean pressed();
private:
byte _pin1;
byte _pin2;
boolean _doubleMode;
unsigned long _lastPressTime;
};
#endif