I have a freenove ESP32 Wrover camera running off a LIPO battery and solar cells. In the config , I have it set to enter deep sleep after sunset until 13:00. I have confirmed that it does enter deep sleep at sunset from monitoring the LOG…
The device never wakes up. It will instantly work on a hard reset, so I know it’s not a voltage issu
I’ve read all the esphome deep sleep info. Am I missing something obvious?
I double checked the indentation. It matches the example below in the ESPHOME documentation under Deep Sleep. Below is their example. Mine does compile. The last input in the log is the node entering deep sleep and it does occur at sunset. I thought tonight I might try to change the “until time” for one minute later.
# ESP32 can sleep until a specific time of day.
on_...:
then:
- deep_sleep.enter:
id: deep_sleep_1
until: "16:00:00"
time_id: sntp_id
I have entered the following config code to try and debug the problem. This code works for relatively short periods (minutes). Going to try it for a couple hours. This leads me to believe there is an upper time limit for what “until:” will function.