-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathbutton.cpp
More file actions
82 lines (71 loc) · 2.1 KB
/
button.cpp
File metadata and controls
82 lines (71 loc) · 2.1 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/*
* Copyright (C) 2019-2021 OpenBikeSensor Contributors
* Contact: https://openbikesensor.org
*
* This file is part of the OpenBikeSensor firmware.
*
* The OpenBikeSensor firmware is free software: you can
* redistribute it and/or modify it under the terms of the GNU
* Lesser General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option)
* any later version.
*
* OpenBikeSensor firmware is distributed in the hope that
* it will be useful, but WITHOUT ANY WARRANTY; without even the
* implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU Lesser General Public License for more
* details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with the OpenBikeSensor firmware. If not,
* see <http://www.gnu.org/licenses/>.
*/
#include "button.h"
#include "esp32-hal-gpio.h"
#include "variant.h"
Button::Button(int pin) : mPin(pin) {
pinMode(pin, INPUT);
mLastStateChangeMillis = mLastRawReadMillis = millis();
mLastState = mLastRawState = read();
}
void Button::handle() {
handle(millis());
}
void Button::handle(unsigned long millis) {
const int state = read();
if (state != mLastRawState) {
mLastRawReadMillis = millis;
mLastRawState = state;
}
if (state != mLastState && millis - mLastRawReadMillis > DEBOUNCE_DELAY_MS) {
mLastState = state;
mPreviousStateDurationMillis = millis - mLastStateChangeMillis;
mLastStateChangeMillis = millis;
if (state == LOW) {
// can distinguish long / short here if needed
mReleaseEvents++;
}
}
}
bool Button::gotPressed() {
if (mReleaseEvents > 0) {
mReleaseEvents = 0;
return true;
} else {
return false;
}
}
int Button::read() const {
// not debounced
return digitalRead(mPin);
}
int Button::getState() const {
// debounced, needs handle to be called
return mLastState;
}
unsigned long Button::getCurrentStateMillis() const {
return millis() - mLastStateChangeMillis;
}
unsigned long Button::getPreviousStateMillis() const {
return mPreviousStateDurationMillis;
}