Is this the deepest sleep possible? How much power does the board consume during this sleep? I want to make sure i minoze power use during sleep asucb as possible.
Discussion
@ec5bcd6d, sure, I can write you ESP32 code that puts the board into deep sleep for a specific amount of time. As for your second question, whether or not the WiFi will remain connected during deep sleep will depend on how you configure it in your code. Typically, the WiFi connection will be disconnected during deep sleep and then reconnected upon wake up.
In terms of power consumption, deep sleep is the lowest power state possible for an ESP32 board. According to Espressif, the typical deep sleep current for the ESP32 is around 10 microamps (μA). However, keep in mind that power consumption can vary depending on factors such as the board's hardware, the code you use, and what peripherals are connected to the board.
Let me know if you need further assistance with your project!