-
Notifications
You must be signed in to change notification settings - Fork 0
/
debouncer.cpp
136 lines (117 loc) · 3.8 KB
/
debouncer.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
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
/*
debouncer.cpp
Debounces an input using hysteresis.
Detects rising edges, falling edges and both edges.
Enable the repeat count by defining DEBOUNCER_REPEAT_COUNT as true.
MIT License
Copyright (c) 2021 Timothy Mathias
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
#ifdef __AVR__
#include <util/atomic.h>
#endif
#ifndef ATOMIC_BLOCK
#define ATOMIC_BLOCK(x)
#endif
#include "debouncer.h"
bool Debouncer::Output() const
{
ATOMIC_BLOCK(ATOMIC_RESTORESTATE)
{
return output_state;
}
}
bool Debouncer::Edge() const
{
ATOMIC_BLOCK(ATOMIC_RESTORESTATE)
{
return edge;
}
}
bool Debouncer::Rise() const
{
ATOMIC_BLOCK(ATOMIC_RESTORESTATE)
{
return rise;
}
}
bool Debouncer::Fall() const
{
ATOMIC_BLOCK(ATOMIC_RESTORESTATE)
{
return fall;
}
}
#if DEBOUNCER_REPEAT_COUNT
unsigned long Debouncer::RepeatCount() const
{
ATOMIC_BLOCK(ATOMIC_RESTORESTATE)
{
return repeat_count;
}
}
#endif
// To be called from a polling loop where interrupts may or may not be enabled.
void Debouncer::Update()
{
// Temporarily disable interrupts to ensure an accurate time stamp for the sample, and that status flags are updated synchronously.
ATOMIC_BLOCK(ATOMIC_RESTORESTATE)
{
const bool input_state = digitalRead(INPUT_PIN); // No interrupts will occur between here...
const unsigned long current_ms = millis(); // ...and here, ensuring an accurate time stamp for the sample...
Update_(input_state, current_ms); // ...and here, ensuring flags are updated synchronously.
}
}
// For use as an Interrupt Service Routine where interrupts are disabled upon calling.
void Debouncer::UpdateISR()
{
const bool input_state = digitalRead(INPUT_PIN);
const unsigned long current_ms = millis();
Update_(input_state, current_ms);
}
void Debouncer::Update_(const bool input_state, const unsigned long& current_ms)
{
// Hysteresis:
// If there is no change, reset the debounce timer.
// Else, compare the time difference with the debounce delay.
if (input_state == output_state)
{
#if DEBOUNCER_REPEAT_COUNT
if ((current_ms - previous_repeat_ms) >= REPEAT_DELAY_ms)
{
repeat_count++;
previous_repeat_ms += REPEAT_DELAY_ms;
}
#endif
previous_ms = current_ms;
}
else if ((current_ms - previous_ms) >= DEBOUNCE_DELAY_ms)
{
// Successfully debounced, so reset the debounce timer and update the outputs.
#if DEBOUNCER_REPEAT_COUNT
repeat_count = 0;
previous_repeat_ms =
#endif
previous_ms = current_ms;
rise = input_state && !output_state;
fall = !input_state && output_state;
edge = rise || fall;
output_state = input_state;
return;
}
edge = rise = fall = false;
}