Control Surface
1.0.0
MIDI Control Surface library for Arduino
|
A class for buttons that increment and decrement some counter or setting. More...
#include <IncrementDecrementButtons.hpp>
Public Types | |
enum | State { Nothing = 0, Increment, Decrement, Reset } |
An enumeration of the different actions to be performed by the counter. More... | |
Public Member Functions | |
IncrementDecrementButtons (const Button &incrementButton, const Button &decrementButton) | |
Create a IncrementDecrementButtons object. More... | |
void | begin () |
State | update () |
Update and return the state of the increment/decrement button. More... | |
State | getState () const |
Return the state of the increment/decrement button without updating it. More... | |
Protected Member Functions | |
State | updateImplementation () |
Private Types | |
enum | { Initial, LongPress, AfterReset } |
Private Attributes | |
Button | incrementButton |
Button | decrementButton |
enum IncrementDecrementButtons:: { ... } | longPressState = Initial |
unsigned long | longPressRepeat |
State | state = Nothing |
A class for buttons that increment and decrement some counter or setting.
It behaves the same way as a computer keyboard: when you press the increment (decrement) button, it increments (decrements) the counter once. If you keep on pressing it for longer than a certain threshold, it keeps on incrementing (decrementing) at a faster rate, until you release it.
If both the increment and the decrement button are pressed at once, it resets the counter.
Definition at line 22 of file IncrementDecrementButtons.hpp.
An enumeration of the different actions to be performed by the counter.
Definition at line 49 of file IncrementDecrementButtons.hpp.
|
private |
Enumerator | |
---|---|
Initial | |
LongPress | |
AfterReset |
Definition at line 84 of file IncrementDecrementButtons.hpp.
|
inline |
Create a IncrementDecrementButtons object.
incrementButton | The button to increment the counter. The button is copied. |
decrementButton | The button to decrement the counter. The button is copied. |
Definition at line 34 of file IncrementDecrementButtons.hpp.
|
inline |
Definition at line 39 of file IncrementDecrementButtons.hpp.
|
inline |
Update and return the state of the increment/decrement button.
Definition at line 59 of file IncrementDecrementButtons.hpp.
|
inline |
Return the state of the increment/decrement button without updating it.
Returns the same value as the last update call.
Definition at line 67 of file IncrementDecrementButtons.hpp.
|
protected |
Definition at line 6 of file IncrementDecrementButtons.cpp.
|
private |
Definition at line 81 of file IncrementDecrementButtons.hpp.
|
private |
Definition at line 82 of file IncrementDecrementButtons.hpp.
enum { ... } IncrementDecrementButtons::longPressState |
|
private |
Definition at line 89 of file IncrementDecrementButtons.hpp.
Definition at line 90 of file IncrementDecrementButtons.hpp.