From 0033e6258534302f2db3a450eb3cc5cd055f59fe Mon Sep 17 00:00:00 2001 From: Avii Date: Tue, 15 Jul 2025 23:05:14 +0200 Subject: [PATCH] Removed logging --- src/button.hpp | 1 - src/keypad.hpp | 1 - 2 files changed, 2 deletions(-) diff --git a/src/button.hpp b/src/button.hpp index 75ee708..fe1a023 100644 --- a/src/button.hpp +++ b/src/button.hpp @@ -120,7 +120,6 @@ public: { if (enabled && touch_x > x && touch_x < x + width && touch_y > y && touch_y < y + height) { - Serial.printf("pressed as %d, %d: %s\n", touch_x, touch_y, this->label); on_pressed(keypad, value); } } diff --git a/src/keypad.hpp b/src/keypad.hpp index 1876a18..41bf5f8 100644 --- a/src/keypad.hpp +++ b/src/keypad.hpp @@ -51,7 +51,6 @@ public: void update(tp_finger_t touch) { - Serial.printf("touching: %d, %d\n", touch.x, touch.y); for (int i = 0; i < BUTTON_COUNT; i++) { buttons[i]->update(this, touch.x, touch.y);