diff options
author | ConfuSomu | 2021-05-01 16:39:33 -0400 |
---|---|---|
committer | ConfuSomu | 2021-05-01 16:39:33 -0400 |
commit | c235ac0bee1594f4758ba0e6f77a4ddb2e5af662 (patch) | |
tree | 50aa35c1500e488c44f1c23a017c252a0ff73165 | |
parent | 39aedad48e3f4639cffecc6168fa51fd59a93db0 (diff) | |
download | pico-watch-c235ac0bee1594f4758ba0e6f77a4ddb2e5af662.tar pico-watch-c235ac0bee1594f4758ba0e6f77a4ddb2e5af662.tar.gz pico-watch-c235ac0bee1594f4758ba0e6f77a4ddb2e5af662.zip |
Decrease button sensitivity
The buttons were very sensitive when moving around in the menus. This
change seems to remedy this problem.
-rw-r--r-- | buttons.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buttons.hpp b/buttons.hpp index e5bf4e2..e3efe43 100644 --- a/buttons.hpp +++ b/buttons.hpp @@ -23,7 +23,7 @@ struct global_status { // See https://www.raspberrypi.org/forums/viewtopic.php?f=145&t=301522#p1812063 // Time is currently shared between all buttons. unsigned long button_last_pressed_time; - const int button_delay_time = 50; + const int button_delay_time = 125; }; extern global_status g_s; |