LCD home button causes repeated homing (PR#175)

Fix: increased debounce delay.
master
fmalpartida 9 years ago committed by Richard Wackerbarth
parent b825567e0f
commit 0f149ea0c6

@ -6978,7 +6978,7 @@ void manage_inactivity(bool ignore_stepper_queue/*=false*/) {
// Check to see if we have to home, use poor man's debouncer
// ---------------------------------------------------------
static int homeDebounceCount = 0; // poor man's debouncing count
const int HOME_DEBOUNCE_DELAY = 750;
const int HOME_DEBOUNCE_DELAY = 2500;
if (!READ(HOME_PIN)) {
if (!homeDebounceCount) {
enqueuecommands_P(PSTR("G28"));

Loading…
Cancel
Save