Feed WDT between doing ESP32 touchpad measurements (#2720)

This commit is contained in:
Oxan van Leeuwen 2021-11-14 21:45:25 +01:00 committed by Jesse Hills
parent ab506b09fe
commit f4a140e126
No known key found for this signature in database
GPG key ID: BEAAE804EFD8E83A

View file

@ -1,6 +1,7 @@
#ifdef USE_ESP32 #ifdef USE_ESP32
#include "esp32_touch.h" #include "esp32_touch.h"
#include "esphome/core/application.h"
#include "esphome/core/log.h" #include "esphome/core/log.h"
#include "esphome/core/hal.h" #include "esphome/core/hal.h"
@ -125,6 +126,8 @@ void ESP32TouchComponent::loop() {
if (should_print) { if (should_print) {
ESP_LOGD(TAG, "Touch Pad '%s' (T%u): %u", child->get_name().c_str(), child->get_touch_pad(), value); ESP_LOGD(TAG, "Touch Pad '%s' (T%u): %u", child->get_name().c_str(), child->get_touch_pad(), value);
} }
App.feed_wdt();
} }
if (should_print) { if (should_print) {