From 744e50acf743bc1c19293cb3096200fd4b67e5a8 Mon Sep 17 00:00:00 2001 From: stefanbode Date: Sun, 8 Sep 2024 16:50:37 +0200 Subject: [PATCH] Fix missing HOLD on shutterbutton (#22108) #21986 --- tasmota/tasmota_xdrv_driver/xdrv_27_esp32_shutter.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasmota/tasmota_xdrv_driver/xdrv_27_esp32_shutter.ino b/tasmota/tasmota_xdrv_driver/xdrv_27_esp32_shutter.ino index ed9dbf9a1..227ddeaad 100644 --- a/tasmota/tasmota_xdrv_driver/xdrv_27_esp32_shutter.ino +++ b/tasmota/tasmota_xdrv_driver/xdrv_27_esp32_shutter.ino @@ -246,7 +246,7 @@ bool ShutterButtonHandlerMulti(void) Button.last_state[button_index], Button.press_counter[button_index], Button.window_timer[button_index], Shutter[shutter_index].button_simu_pressed); // multipress event handle back to main procedure - if (Button.press_counter[button_index]>3) return false; + if (Button.press_counter[button_index]>4) return false; if (!Shutter[shutter_index].button_simu_pressed) { uint8_t pos_press_index = Button.press_counter[button_index]-1;