ESP32S3 touch low-power wake-up issue #14351
Unanswered
chengoxuan
asked this question in
Core Development
Replies: 1 comment
-
I'm using a modified ESP32_GENERIC_S3 config for 16 MiB Flash and 8MiB SPIRAM_OCT compiled against ESP-IDF 5.1. I thought I have used a |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
import machine
from machine import TouchPad, Pin
import esp32
t = TouchPad(Pin(4))#Other pins have also been selected
t.config(500) # ESP32S3 is slightly larger and set at 25000
esp32.wake_on_touch(True)
machine.lightsleep() # put the MCU to sleep until a touchpad is touched
###################################################################################################
The function of turning on touch to enter low-power and touch wake-up is normal on the ESPWROOM32 board, but it is not normal on ESP32S3
How can I use the touch wake-up function of ESP32S3 normally?
Beta Was this translation helpful? Give feedback.
All reactions