How to Reduce Power Consumption on Arduino ESP8266 WiFi Modules

4.9K332

Intro: How to Reduce Power Consumption on Arduino ESP8266 WiFi Modules

In this Instructable we look at how to reduce the power consumption of your Arduino ESP8266 WiFi module for battery powered applications.

Follow this link to subscribe to my YouTube channel: https://www.youtube.com/channel/UCNd_fNspAczm8UoE2...

You can access the code from the video at my blog: http://forcetronic.blogspot.com/2016/09/reducing-...

2 Comments

Great video though! I've been looking at how to reduce transmit power on the ESP!

According to this discussion (https://github.com/esp8266/Arduino/issues/1488), you cannot actually use an external interrupt to wake the ESP from deep sleep. The GPIO 16 is used to wake the ESP by sending a RESET pulse at whatever time interval the internal RTC is set to. I was really looking for a way to wake the ESP using an external interrupt, but the problem is proving more complex than simply having a ESP pin watch for it...