Compare commits

..

1 Commits

Author SHA1 Message Date
fluffy 266143d5fc Implement debounce 2021-05-10 01:18:54 -07:00
1 changed files with 1 additions and 2 deletions

View File

@ -13,7 +13,7 @@
//! Debounce time in milliseconds
constexpr int debounceTime = 50;
//!
//! Input button
struct Input {
int pin; //!< Input pin
int keyCode; //!< Mapped key
@ -68,7 +68,6 @@ void loop()
bool val = !digitalRead(i.pin);
if (val != i.pressed && (i.lastChange + debounceTime) < now) {
if (val) {
// TODO debounce
Keyboard.press(i.keyCode);
} else {
Keyboard.release(i.keyCode);