Removed logging

This commit is contained in:
2025-07-15 23:05:14 +02:00
parent 66ee0040ba
commit 0033e62585
2 changed files with 0 additions and 2 deletions

View File

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

View File

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