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);