-
Notifications
You must be signed in to change notification settings - Fork 7
/
Button.h
42 lines (37 loc) · 1.04 KB
/
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
42
/**
* Button
* Kleine Klasse zum Entprellen der Tasten.
*
* @mc Arduino/RBBB
* @autor Christian Aschoff / caschoff _AT_ mac _DOT_ com
* @version 1.7
* @created 18.2.2011
* @updated 16.2.2015
*
* 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.
* V 1.6: - Schalten gegen LOW ermoeglicht.
* V 1.7: - Unterstuetzung fuer die alte Arduino-IDE (bis 1.0.6) entfernt.
*/
#ifndef BUTTON_H
#define BUTTON_H
#include "Arduino.h"
class Button {
public:
Button(byte pin, byte pressedAgainst, uint16_t debounceTime = 300);
Button(byte pin1, byte pin2, byte pressedAgainst, uint16_t debounceTime = 300);
boolean pressed();
boolean pressedRaw();
private:
byte _pin1;
byte _pin2;
boolean _doubleMode;
byte _pressedAgainst;
unsigned long _lastPressTime;
uint16_t _debounceTime;
};
#endif