Serial Wombat Arduino Library
|
Class that runs on top of SerialWombatMatrixKeypad to treat a key as an individual button. More...
#include <SerialWombatMatrixKeypad.h>
Public Member Functions | |
SerialWombatMatrixButton (SerialWombatMatrixKeypad &kp, uint8_t keyIndex) | |
Instantiate a SerialWombatMatrixButton. | |
bool | digitalRead () |
Returns the state of the input. | |
uint16_t | readDurationInFalseState_mS () |
return the number of mS that the button has been in false state | |
uint16_t | readDurationInTrueState_mS () |
return the number of mS that the button has been in true state | |
bool | readTransitionsState () |
Queries the number of transistions that have occured on the button. | |
![]() | |
SerialWombatAbstractButton () | |
virtual bool | readTransitionsState (bool resetTransitionCounts=true)=0 |
Queries the number of transistions that have occured on the debounced input. | |
Additional Inherited Members | |
![]() | |
uint16_t | transitions = 0 |
Number of transitions returned by last call to readTransitionsState() | |
Class that runs on top of SerialWombatMatrixKeypad to treat a key as an individual button.
This class allows a single key from a SerialWombatMatrixKeypad to be treated as an individual SerialWombatAbstractButton that can be read as such or passed to SerialWombatButtonCounter .
Definition at line 392 of file SerialWombatMatrixKeypad.h.
|
inline |
Instantiate a SerialWombatMatrixButton.
kp | An initialized SerialWombatMatrixKeypad |
keyIndex | a number 0-15 indicating which key (index, not ascii value) is treated as a button |
Definition at line 401 of file SerialWombatMatrixKeypad.h.
|
inlinevirtual |
Returns the state of the input.
This function reads from the public data of the pin which indicates the state of the input
Implements SerialWombatAbstractButton.
Definition at line 415 of file SerialWombatMatrixKeypad.h.
|
inlinevirtual |
return the number of mS that the button has been in false state
Implements SerialWombatAbstractButton.
Definition at line 438 of file SerialWombatMatrixKeypad.h.
|
inlinevirtual |
return the number of mS that the button has been in true state
Implements SerialWombatAbstractButton.
Definition at line 464 of file SerialWombatMatrixKeypad.h.
|
inline |
Queries the number of transistions that have occured on the button.
This function queries the button for current state and transitions since last call. transition count is put in the global member transitions. The keypad driver in the Serial Wombat chip resets its count to zero after this call.
Definition at line 494 of file SerialWombatMatrixKeypad.h.