Page 1 of 1

How many volts can feed esp32s

Posted: Fri Aug 10, 2018 9:05 pm
by maxo96
esp32_pinout_TnuL7mYXMS.jpg
esp32_pinout_TnuL7mYXMS.jpg (214.77 KiB) Viewed 11716 times
How many volts can I feed esp32s with an external source through vin

Re: How many volts can feed esp32s

Posted: Sat Aug 11, 2018 5:12 am
by kolban
If we look at the top left of the schematic diagram found here:

https://dl.espressif.com/dl/schematics/ ... 80607a.pdf

It would appear that we can supply an external source of 5V. This appears to enter a voltage regulator that drops the output to 3.3V.

Re: How many volts can feed esp32s

Posted: Sat Aug 11, 2018 6:34 am
by maxo96
when connect 5v to vin oled that connected to esp32 (oled take power directly from power sorce ) oled cant start and didn't exit void setup and didn't go void loop

Re: How many volts can feed esp32s

Posted: Mon Aug 13, 2018 2:14 am
by ESP_Sprite
What generates the 5V you use and how do you connect it to the board? The ESP32 has somewhat high requirements for a power source (>=500mA) and not all power sources can deliver that.

Re: How many volts can feed esp32s

Posted: Tue Sep 11, 2018 6:02 pm
by btuzin
3 AA batteries can deliver 5.4 volts to start. Looking for longest possible battery life. My question is do we connect to 5v or 3.3v pin?

Re: How many volts can feed esp32s

Posted: Wed Sep 12, 2018 1:42 am
by ESP_Sprite
I'd say none of the above. 5.4V most certainly is too much for the ESP32 that is directly connected to the 3.3V line of the ESP32. From what I remember, boards like these usually use the AMS1117-3.3, which has a dropout voltage of 1.1V, so it needs 4.4V at minimum to regulate its output voltage. If the batteries are even slightly depleted, the board can conk out (although it may work, it's really dependent on the behaviour of the LDO on the board). If the user decides to install NiMhs, with only 3.6V the system is pretty likely to collapse.

You can try feeding it into the 5V line, but you may be better off feeding the battery voltage through a buck-converter or LDO meant to have a low dropout (the HT7833 is my personal favourite at this moment, for instance) into the 3.3V line. Maybe even use a 3.0V regulator so it has a little more headroom to work with.