From 23e491b424649eae979716a8f8f6cc7e370b67bf Mon Sep 17 00:00:00 2001 From: Anna Wiggins Date: Wed, 22 Dec 2021 22:08:26 +0000 Subject: [PATCH] Change default delay to 50 ms --- Joystick.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Joystick.h b/Joystick.h index 7819258..0d19c95 100644 --- a/Joystick.h +++ b/Joystick.h @@ -29,7 +29,7 @@ bool operator !=(JoyReport a, JoyReport b); class Joystick { public: - Joystick(uint8_t release_delay = 250, bool debug=false); + Joystick(uint8_t release_delay = 50, bool debug = false); void Init(); void Update();