Methods to determine whether Button is currently pressed #67

Merged
jamesmyatt merged 3 commits from better_button into master 2020-09-03 16:28:59 +03:00
+18 -6
View File
@@ -267,22 +267,34 @@ protected:
stateForPressed = state;
}
/*!
@brief Get the electrical state (HIGH/LOW) that corresponds to a physical press.
*/
inline bool getPressedState() {
return stateForPressed;
};
/*!
@brief Returns true if the button is currently physically pressed.
*/
inline bool isPressed() {
return read() == getPressedState();
};
/*!
@brief Returns true if the button was physically pressed
*/
bool pressed() {
return changed() && (read() == stateForPressed);
inline bool pressed() {
return changed() && isPressed();
};
/*!
@brief Returns true if the button was physically released
*/
bool released() {
return changed() && (read() != stateForPressed);
inline bool released() {
return changed() && !isPressed();
};
};
#endif