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
When I put the Xiao sense in deep sleep I have 20ma of current, I only see this excessive current only if I activate the camera. If I do not initialize the camera and put the Xiao into deep sleep I see about 1ma. I also tried reinitializing the camera but I still see this 20ma of current. Is there away to get the Xiao sense to use less then 20ma of current when in deep sleep?
Camera consumes 19mA when it is active. esp32s3 consumes 1mA in deep sleep.
So you should
when you want to save power by deep sleep, put esp32s3 in deep sleep mode and de-initialize the camera.
When esp32s3 wakes up, initialize the camera too.
Correct me if I am wrong.
When I put the Xiao sense in deep sleep I have 20ma of current, I only see this excessive current only if I activate the camera. If I do not initialize the camera and put the Xiao into deep sleep I see about 1ma. I also tried reinitializing the camera but I still see this 20ma of current. Is there away to get the Xiao sense to use less then 20ma of current when in deep sleep?
Serial.println("getting ready to sleep");
esp_wifi_stop();
err=esp_camera_deinit();
Serial.print("Deinit=");Serial.println(err);
esp_wifi_stop();
esp_deep_sleep_start();
The text was updated successfully, but these errors were encountered: