Page 1 of 1

ESP32 Deep sleep power consumption

Posted: Tue Sep 17, 2019 5:23 pm
by epicac
Hi guys,

recently I bought a couple of ESP32 Dev boards:
esps.jpg
esps.jpg (144.72 KiB) Viewed 4287 times

The upper one has already power indication diod soldered off. But for some reason in deep sleep the power consumption is 9.7mA (resp. 11.2mA with the diod on).
I wanted to use a 3.7V 700mAh LiPo battery but it's drained in 3 days. Battery is connected using VIN, GND pins. The test code is just this:
  1. #define uS_TO_S_FACTOR 1000000
  2. #define TIME_TO_SLEEP  30
  3.  
  4. void setup() {
  5.   esp_sleep_enable_timer_wakeup(TIME_TO_SLEEP * uS_TO_S_FACTOR);
  6.   esp_deep_sleep_start();
  7.  
  8. }
  9.  
  10. void loop() {
  11. }
Do you guys have any idea?
Thanks

Re: ESP32 Deep sleep power consumption

Posted: Wed Sep 18, 2019 3:14 am
by ESP_Sprite
If any, replace the AMS1117 LDO, they're notoriously inefficient.

Re: ESP32 Deep sleep power consumption

Posted: Wed Sep 18, 2019 2:02 pm
by epicac
Thanks for the answer. I have a couple of HT7333s at home, so I'll try that!

Re: ESP32 Deep sleep power consumption

Posted: Thu Sep 19, 2019 3:57 am
by ESP_Sprite
You can try, but do note that those LDOs are limited to 250mA. The ESP32 needs a minimum of 500mA on WiFi initialization, otherwise it'll brown out. (If you want to test it anyway: a hacky solution would be to put two HT7333 chips in parallel.)

Re: ESP32 Deep sleep power consumption

Posted: Tue Oct 01, 2019 12:56 pm
by DavidL
Hello
I take advantage of this topic, to know LDO recommendation. for full use. ?