forked from bracci/Qlockthree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AnalogButton.cpp
46 lines (39 loc) · 1.01 KB
/
AnalogButton.cpp
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
43
44
45
46
/**
AnalogButton
Kleine Klasse zum Entprellen der Tasten auf rein anlogen Ports.
@mc Arduino/RBBB
@autor Christian Aschoff / caschoff _AT_ mac _DOT_ com
@version 1.0a
@created 16.2.2015
*/
#include "AnalogButton.h"
#include "Configuration.h"
#include "Debug.h"
/**
Initialisierung mit dem Pin, an dem der Taster haengt.
@param pin: der Pin, an dem der Taster haengt
inverse: Schaltverhalten umdrehen? (HIGH/LOW)
*/
AnalogButton::AnalogButton(byte pin, boolean inverse) {
_pin = pin;
_lastPressTime = 0;
_inverse = inverse;
}
/**
Wurde der Taster gedrueckt?
*/
boolean AnalogButton::pressed() {
boolean _retVal = false;
if (!_inverse) {
if ((analogRead(_pin) >= 512) && (millis() - _lastPressTime > BUTTON_TRESHOLD)) {
_lastPressTime = millis();
_retVal = true;
}
} else {
if ((analogRead(_pin) < 512) && (millis() - _lastPressTime > BUTTON_TRESHOLD)) {
_lastPressTime = millis();
_retVal = true;
}
}
return _retVal;
}