GM6000 Digital Heater Controller Branch: main
SDX-1330
PolledDebounced.h
Go to the documentation of this file.
1#ifndef Driver_Button_PolledDebounced_h_
2#define Driver_Button_PolledDebounced_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15#include "Driver/Button/Hal.h"
16
17
18///
19namespace Driver {
20///
21namespace Button {
22
23/** This concrete class implements a button driver where a single button
24 is polled and its raw button state is de-bounced. The Application
25 is responsible for the providing the sampling intervals by calling
26 the interface's sample() method.
27
28 The application is RESPONSIBLE for ensuring that the 'button handle'
29 is properly initialized before attempting to use the button driver
30 instance.
31
32 The class is NOT thread safe. The application is RESPONSIBLE for ensuring
33 thread-safe usage.
34 */
36{
37public:
38 /** Constructor. The physical button being is sampled is specified by
39 'buttonHandle'. The 'numConsecutiveCounts' specifies the number of
40 consecutive sample periods - without the raw button state changing -
41 to declare a new de-bounced state.
42 */
44 unsigned numConsecutiveCounts = 2 ) noexcept
45 : m_buttonHdl( buttonHandle )
46 , m_requiredCount( numConsecutiveCounts )
47 , m_counts( 0 )
48 , m_previousRawPressed( false )
49 , m_pressed( false )
50 {
51 }
52
53public:
54 /** This method is used to start/initialize the driver. The method can
55 also be used to restart the driver.
56 */
57 inline void start() noexcept { m_counts = 0; m_pressed = false; m_previousRawPressed = false; }
58
59
60public:
61 /** This method returns the de-bounced pressed button state.
62 */
63 inline bool isPressed() noexcept { return m_pressed; }
64
65 /** The application is required to call this method on fixed periodic
66 intervals. The raw button state is sampled during this call.
67 */
68 void sample() noexcept;
69
70public:
71 /// Returns the driver's button handle
73
74
75protected:
76 /// Handle to the button
78
79 /// Required number of consecutive counts
81
82 /// Consecutive counts
83 unsigned m_counts;
84
85 /// Previous raw state
87
88 /// De-bounced state
90};
91
92} // End namespace(s)
93}
94
95/*--------------------------------------------------------------------------*/
96#endif // end header latch
This file defines a hardware abstraction layer (HAL) for accessing a digital Input that is being used...
#define Driver_Button_Hal_T
This data type defines the platform specific 'handle' to a pin.
Definition Hal.h:35
This concrete class implements a button driver where a single button is polled and its raw button sta...
Definition PolledDebounced.h:36
unsigned m_requiredCount
Required number of consecutive counts.
Definition PolledDebounced.h:80
bool isPressed() noexcept
This method returns the de-bounced pressed button state.
Definition PolledDebounced.h:63
Driver_Button_Hal_T m_buttonHdl
Handle to the button.
Definition PolledDebounced.h:77
unsigned m_counts
Consecutive counts.
Definition PolledDebounced.h:83
void start() noexcept
This method is used to start/initialize the driver.
Definition PolledDebounced.h:57
bool m_previousRawPressed
Previous raw state.
Definition PolledDebounced.h:86
Driver_Button_Hal_T getHandle()
Returns the driver's button handle.
Definition PolledDebounced.h:72
PolledDebounced(Driver_Button_Hal_T buttonHandle, unsigned numConsecutiveCounts=2) noexcept
Constructor.
Definition PolledDebounced.h:43
bool m_pressed
De-bounced state.
Definition PolledDebounced.h:89
void sample() noexcept
The application is required to call this method on fixed periodic intervals.
namespace