ESP8266 Developer Zone The Official ESP8266 Forum 2016-07-07T01:23:22+08:00 https://bbs.espressif.com:443/feed.php?f=65&t=2377 2016-07-07T01:23:22+08:00 2016-07-07T01:23:22+08:00 https://bbs.espressif.com:443/viewtopic.php?t=2377&p=7804#p7804 <![CDATA[Re: Current output is not correct for Light Sleep]]>
-Rupak

Statistics: Posted by rupak426 — Thu Jul 07, 2016 1:23 am


]]>
2016-07-05T09:23:10+08:00 2016-07-05T09:23:10+08:00 https://bbs.espressif.com:443/viewtopic.php?t=2377&p=7723#p7723 <![CDATA[Re: Current output is not correct for Light Sleep]]>
You should try the SDK v.1.5.3 with patch v.1.5.3.3 applied. A similar issue of high current in light sleep mode was resolved in that patch.

Statistics: Posted by Guest — Tue Jul 05, 2016 9:23 am


]]>
2016-07-04T15:09:08+08:00 2016-07-04T15:09:08+08:00 https://bbs.espressif.com:443/viewtopic.php?t=2377&p=7707#p7707 <![CDATA[Re: Current output is not correct for Light Sleep]]>
I am using ESP8266-01, which consists of 2 GPIO. GPIO 0 is connected to GND while GPIO 2 is floating when chip enter LIGHT sleep mode. I am not using voltage regulator as I am supplying 3.3V from battery.

thanks,
Rupak

Statistics: Posted by rupak426 — Mon Jul 04, 2016 3:09 pm


]]>
2016-07-04T13:04:30+08:00 2016-07-04T13:04:30+08:00 https://bbs.espressif.com:443/viewtopic.php?t=2377&p=7705#p7705 <![CDATA[Re: Current output is not correct for Light Sleep]]>
What are your GPIO states in sleep mode? As a rule of thumb, you should switch all outputs to high state if they are pulled high or low, if they are pulled low.
Sleep mode power consumption will depend on a lot of factors, including quiescent current of the voltage regulator you are using. Do note that the flash memory also consumes power.
Depending on where in the circuit you are probing for current consumption, the answer can vary.

Statistics: Posted by Guest — Mon Jul 04, 2016 1:04 pm


]]>
2016-07-02T01:54:06+08:00 2016-07-02T01:54:06+08:00 https://bbs.espressif.com:443/viewtopic.php?t=2377&p=7664#p7664 <![CDATA[Current output is not correct for Light Sleep]]>
I am trying to use light sleep with the help of below code:

Serial.println("Wifi_off_timerfunc called to disable wifi");
wifi_station_disconnect();
wifi_set_opmode(NULL_MODE);
wifi_fpm_set_sleep_type(LIGHT_SLEEP_T);
Serial.println("set the sleep as LIGHT SLEEP");
wifi_fpm_open();
wifi_fpm_set_wakeup_cb(fpm_wakup_cb_func1); // Set wakeup callback
wifi_fpm_do_sleep(60*1000000);

In the normal mode, I measured the current and its showing 70~80mA.
But when I am measuring the current output after "LIGHT SLEEP",the measured current is 15~18 mA.
As per document "9B-ESP8266-Low_Power_Solutions__EN.pdf", current for Light sleep should be between 0.4~1.8 mA.
I am using SDK version as ESP8266_NONOS_SDK_V1.5.4_16_05_20.
can you let me know if I am missing something while invoking the "LIGHT sleep".

thanks,
Rupak

Statistics: Posted by rupak426 — Sat Jul 02, 2016 1:54 am


]]>