I have used this simple code to turn on my esp201:
http://img.banggood.com/images/2014/xie ... 863201603C
#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