Open
Description
CircuitPython version
Adafruit CircuitPython 9.1.1 on 2024-07-23; Waveshare ESP32-S3-Zero with ESP32S3
Adafruit CircuitPython 9.1.3 on 2024-08-30; Waveshare ESP32-S3-Zero with ESP32S3
Adafruit CircuitPython 9.1.3 on 2024-08-30; ESP32-S3-DevKitM-1-N8 with ESP32S3
Code/REPL
import alarm, board, time
from digitalio import DigitalInOut
led = DigitalInOut(board.IO1)
led.switch_to_output()
led.value = 1
time.sleep(1)
led.value = 0
time_alarm = alarm.time.TimeAlarm(monotonic_time=time.monotonic() + 10)
alarm.exit_and_deep_sleep_until_alarms(time_alarm, preserve_dios=[led])
Behavior
The led blinks once and then remains dark until the chip is reset.
Excpected behaviour: Led blinks once every 10 seconds.
Description
This happens in both fake deep sleep as well as in real deep sleep.
If preserve_dios=[led]
is omitted, the led blinks brightly and glows dimly during deep sleep and becomes bright again after deep sleep (which is correct behaviour as far as I know).
Additional information
No response