![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This concrete class implements a button driver where a single button is polled and its raw button state is de-bounced. More...
This concrete class implements a button driver where a single button is polled and its raw button state is de-bounced.
The Application is responsible for the providing the sampling intervals by calling the interface's sample() method.
The application is RESPONSIBLE for ensuring that the 'button handle' is properly initialized before attempting to use the button driver instance.
The class is NOT thread safe. The application is RESPONSIBLE for ensuring thread-safe usage.
#include <PolledDebounced.h>
Public Member Functions | |
PolledDebounced (Driver_Button_Hal_T buttonHandle, unsigned numConsecutiveCounts=2) noexcept | |
Constructor. | |
void | start () noexcept |
This method is used to start/initialize the driver. | |
bool | isPressed () noexcept |
This method returns the de-bounced pressed button state. | |
void | sample () noexcept |
The application is required to call this method on fixed periodic intervals. | |
Driver_Button_Hal_T | getHandle () |
Returns the driver's button handle. | |
Protected Attributes | |
Driver_Button_Hal_T | m_buttonHdl |
Handle to the button. | |
unsigned | m_requiredCount |
Required number of consecutive counts. | |
unsigned | m_counts |
Consecutive counts. | |
bool | m_previousRawPressed |
Previous raw state. | |
bool | m_pressed |
De-bounced state. | |
|
inlinenoexcept |
Constructor.
The physical button being is sampled is specified by 'buttonHandle'. The 'numConsecutiveCounts' specifies the number of consecutive sample periods - without the raw button state changing - to declare a new de-bounced state.
|
inline |
Returns the driver's button handle.
|
inlinenoexcept |
This method returns the de-bounced pressed button state.
|
noexcept |
The application is required to call this method on fixed periodic intervals.
The raw button state is sampled during this call.
|
inlinenoexcept |
This method is used to start/initialize the driver.
The method can also be used to restart the driver.
|
protected |
Handle to the button.
|
protected |
Consecutive counts.
|
protected |
De-bounced state.
|
protected |
Previous raw state.
|
protected |
Required number of consecutive counts.