1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-15 17:52:19 +01:00
This commit is contained in:
J. Nick Koston
2025-06-12 18:34:00 -05:00
parent d1e6b8dd10
commit d1edb1e32a

View File

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