From cf5b241fe2ff5561e3ca12c7f18b694f4f24d714 Mon Sep 17 00:00:00 2001 From: Aleksei Date: Wed, 17 Jun 2026 10:22:16 +0000 Subject: [PATCH] =?UTF-8?q?feat:=20debounce=202000=D0=BC=D1=81,=20=D0=B2?= =?UTF-8?q?=D0=B5=D1=80=D1=81=D0=B8=D1=8F=201.5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- barrier_controller/barrier_controller.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/barrier_controller/barrier_controller.ino b/barrier_controller/barrier_controller.ino index f7f1e35..a0703c8 100644 --- a/barrier_controller/barrier_controller.ino +++ b/barrier_controller/barrier_controller.ino @@ -19,7 +19,7 @@ #define ETH_CLK_MODE ETH_CLOCK_GPIO17_OUT #define AP_SSID "Barrier-Setup" -#define FW_VERSION "1.4" +#define FW_VERSION "1.5" #define AP_PASS "barrier123" Preferences prefs; @@ -40,7 +40,7 @@ String cfg_subnet = "255.255.255.0"; unsigned long lastPress1 = 0; unsigned long lastPress2 = 0; -const unsigned long DEBOUNCE = 1500; +const unsigned long DEBOUNCE = 2000; void WiFiEvent(WiFiEvent_t event) { switch (event) {