From c61dae09ca91bf5c5bec99d9773d0f55e268d019 Mon Sep 17 00:00:00 2001 From: Thomas Farstrike Date: Wed, 23 Apr 2025 14:00:25 +0200 Subject: [PATCH] Less debug --- boot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/boot.py b/boot.py index d8ccc8e9..9b35b6c9 100644 --- a/boot.py +++ b/boot.py @@ -94,11 +94,11 @@ def handle_gesture(pin): y = TFT_VER_RES - x #x = TFT_HOR_RES - temp x = temp - print(f"Corrected GestureID={gesture_id},FingerNum={finger_num},X={x},Y={y}") + #print(f"Corrected GestureID={gesture_id},FingerNum={finger_num},X={x},Y={y}") if gesture_id == 0x00 and start_y is None: # Press (touch start) # Store the starting Y-coordinate start_y = y - print(f"Touch started at Y={start_y}") + #print(f"Touch started at Y={start_y}") elif gesture_id == 0x04: # Swipe up # print("Swipe Up Detected") close_drawer()