Reduce power consumption with MCU running
Posted: Mon Feb 22, 2016 7:09 pm
Hello,
I have used this simple code to turn on my esp201:
http://img.banggood.com/images/2014/xie ... 863201603C
with the WIFI module off. after disconnecting the red power led I am at 14.5mA.
The documantation states that the ESP has an ultra-low power MCU.
My question is, if the Wifi module is off, what caueses that high consumption and is there a way to reduce it?
Can it come from the firmware EEPROM?
Edit:
If i'm not mistaken the eeprom type is 25Q40.
Attached is the dc characteristics.
Which of the consumptions in the table is relevant normal operation? (What frequency does the eps use to read the eeprom)
Thank you,
Roman
I have used this simple code to turn on my esp201:
http://img.banggood.com/images/2014/xie ... 863201603C
Code: Select all
#include <ESP8266WiFi.h>
void setup()
{
WiFi.mode(WIFI_OFF);
WiFi.forceSleepBegin();
delay(10);
}
void loop()
{
}
with the WIFI module off. after disconnecting the red power led I am at 14.5mA.
The documantation states that the ESP has an ultra-low power MCU.
My question is, if the Wifi module is off, what caueses that high consumption and is there a way to reduce it?
Can it come from the firmware EEPROM?
Edit:
If i'm not mistaken the eeprom type is 25Q40.
Attached is the dc characteristics.
Which of the consumptions in the table is relevant normal operation? (What frequency does the eps use to read the eeprom)
Thank you,
Roman