You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I'm running a mix of Arduino and ESP32 native API code. It works. The touchpad wakes the ESP32 from deep sleep by using esp_sleep_enable_touchpad_wakeup(). And then setup() (Arduino) is executed. I need the mix because the wake must be on TOUCH_TRIGGER_ABOVE, which Arduino doesn't have, and I also need Arduino libraries.
Therefore, does the touch ISR (touch_pad_isr_register(), touch_pad_intr_enable()) have any use at all? Since, on wakeup, setup() is always executed anyway and I can find the source of the wake.
Thanks!
The text was updated successfully, but these errors were encountered:
Hi, I'm running a mix of Arduino and ESP32 native API code. It works. The touchpad wakes the ESP32 from deep sleep by using
esp_sleep_enable_touchpad_wakeup()
. And thensetup()
(Arduino) is executed. I need the mix because the wake must be onTOUCH_TRIGGER_ABOVE
, which Arduino doesn't have, and I also need Arduino libraries.Therefore, does the touch ISR (
touch_pad_isr_register()
,touch_pad_intr_enable()
) have any use at all? Since, on wakeup,setup()
is always executed anyway and I can find the source of the wake.Thanks!
The text was updated successfully, but these errors were encountered: