Skip to content

Commit

Permalink
Fix missing HOLD on shutterbutton (#22108)
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanbode authored Sep 8, 2024
1 parent 4717d19 commit 744e50a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasmota/tasmota_xdrv_driver/xdrv_27_esp32_shutter.ino
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 744e50a

Please sign in to comment.