From d1edb1e32ad9af4ce857e48dd8f75f1b3e2ed827 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Thu, 12 Jun 2025 18:34:00 -0500 Subject: [PATCH] fix --- esphome/components/esp32_touch/esp32_touch_v2.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/esphome/components/esp32_touch/esp32_touch_v2.cpp b/esphome/components/esp32_touch/esp32_touch_v2.cpp index 9e7c219ca4..39e5d38ea0 100644 --- a/esphome/components/esp32_touch/esp32_touch_v2.cpp +++ b/esphome/components/esp32_touch/esp32_touch_v2.cpp @@ -12,7 +12,7 @@ static const char *const TAG = "esp32_touch"; void ESP32TouchComponent::setup() { // Create queue for touch events first - if (!this->create_touch_queue()) { + if (!this->create_touch_queue_()) { return; } @@ -302,7 +302,7 @@ void ESP32TouchComponent::on_shutdown() { this->cleanup_touch_queue_(); // Configure wakeup pads if any are set - this->configure_wakeup_pads(); + this->configure_wakeup_pads_(); } void IRAM_ATTR ESP32TouchComponent::touch_isr_handler(void *arg) {