Skip to content

Commit

Permalink
increased timer until scene is activated
Browse files Browse the repository at this point in the history
  • Loading branch information
KlausMu committed Apr 5, 2024
1 parent f0374fd commit ff60667
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Platformio/src/guis/gui_sceneSelection.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ static void sceneSelection_event_cb(lv_event_t* e) {
scene_command_including_force = activate_scene_command;
Serial.printf("Scene with index %d and name %s was selected\r\n", user_data, scene_name.c_str());
}
lv_timer_t *my_timer = lv_timer_create(activate_scene_cb, 20, (void *)(uintptr_t) scene_command_including_force);
lv_timer_t *my_timer = lv_timer_create(activate_scene_cb, 50, (void *)(uintptr_t) scene_command_including_force);
lv_timer_set_repeat_count(my_timer, 1);

} else {
Expand Down

0 comments on commit ff60667

Please sign in to comment.