<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[M5paper power consumption in light sleep]]></title><description><![CDATA[<p dir="auto">Hi all,<br />
I need help to optimize my code to save power consumption of m5paper.<br />
Basically I'm doing this in the setup():</p>
<pre><code>gpio_hold_en((gpio_num_t)M5EPD_MAIN_PWR_PIN);
</code></pre>
<p dir="auto">If I'm not setting this, m5paper will not wake up from sleep.</p>
<p dir="auto">In main loop()</p>
<pre><code>  esp_sleep_enable_timer_wakeup(60 * USEC_TO_SECONDS);
  esp_light_sleep_start();
</code></pre>
<p dir="auto">Everything is working quite nice, so going to sleep and also wake up again after one minute.</p>
<p dir="auto">But power consumptions is not going down during sleep. Battery is empty after some hours already.</p>
<p dir="auto">Anybody any hint how to save battery in light sleep mode?</p>
]]></description><link>https://community.m5stack.com/topic/3831/m5paper-power-consumption-in-light-sleep</link><generator>RSS for Node</generator><lastBuildDate>Sat, 14 Mar 2026 08:33:11 GMT</lastBuildDate><atom:link href="https://community.m5stack.com/topic/3831.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 16 Dec 2021 16:15:49 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to M5paper power consumption in light sleep on Sun, 14 Apr 2024 15:56:29 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/5877">@volker</a> 6 days on deep.sleep. How about light.sleep? I just bought mine, any advice? I only want to display a picture via internet..</p>
]]></description><link>https://community.m5stack.com/post/24796</link><guid isPermaLink="true">https://community.m5stack.com/post/24796</guid><dc:creator><![CDATA[actuar]]></dc:creator><pubDate>Sun, 14 Apr 2024 15:56:29 GMT</pubDate></item><item><title><![CDATA[Reply to M5paper power consumption in light sleep on Mon, 27 Dec 2021 15:17:00 GMT]]></title><description><![CDATA[<p dir="auto">My device is now running for about 6 days with one battery charge.<br />
But I'm using deep sleep mode now.<br />
If I use disableEPDPower() before getting into light sleep mode, I need to re-init the display after wake up. So the advantage of light sleep is lost and display need to be fully updated.</p>
<p dir="auto">I choose this device with e-paper display to build a low power application, but at the end it was not the best decision to use M5paper.</p>
]]></description><link>https://community.m5stack.com/post/15966</link><guid isPermaLink="true">https://community.m5stack.com/post/15966</guid><dc:creator><![CDATA[volker]]></dc:creator><pubDate>Mon, 27 Dec 2021 15:17:00 GMT</pubDate></item><item><title><![CDATA[Reply to M5paper power consumption in light sleep on Fri, 24 Dec 2021 22:12:15 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/5877">@volker</a> EPD and GT911 should save you 130-160mA power draw. The IT8951 itself alone would be pulling most of that, the GT911 <em>should</em> be below 20mA even when actively used. It's a bummer M5 decided to use that crappy PMIC instead of the AXP192, which would've had the pins required to control those elements separately (also bummer that the e-ink display uses a separate, power-hungry controller...).</p>
]]></description><link>https://community.m5stack.com/post/15947</link><guid isPermaLink="true">https://community.m5stack.com/post/15947</guid><dc:creator><![CDATA[fonix232]]></dc:creator><pubDate>Fri, 24 Dec 2021 22:12:15 GMT</pubDate></item><item><title><![CDATA[Reply to M5paper power consumption in light sleep on Mon, 20 Dec 2021 12:40:59 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/4037">@felmue</a> Thanks a lot<br />
I just plugged off the GT911 cable, I don't need touch for my project.  disableEPDPower() and disconnecting GT911 save a lot of battery.</p>
]]></description><link>https://community.m5stack.com/post/15893</link><guid isPermaLink="true">https://community.m5stack.com/post/15893</guid><dc:creator><![CDATA[volker]]></dc:creator><pubDate>Mon, 20 Dec 2021 12:40:59 GMT</pubDate></item><item><title><![CDATA[Reply to M5paper power consumption in light sleep on Fri, 17 Dec 2021 09:07:19 GMT]]></title><description><![CDATA[<p dir="auto">Hello <a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/5877">@volker</a></p>
<p dir="auto">I am not using my M5Paper in a serious project so no, I have not encountered such behavior (yet).</p>
<p dir="auto">That said, my best guess would be that at some point the remaining battery charge is just enough to run the RTC but when it's time to wake up the full system there is not enough juice in the battery left, probably resulting in a boot loop.</p>
<p dir="auto">Thanks<br />
Felix</p>
]]></description><link>https://community.m5stack.com/post/15845</link><guid isPermaLink="true">https://community.m5stack.com/post/15845</guid><dc:creator><![CDATA[felmue]]></dc:creator><pubDate>Fri, 17 Dec 2021 09:07:19 GMT</pubDate></item><item><title><![CDATA[Reply to M5paper power consumption in light sleep on Thu, 16 Dec 2021 21:08:24 GMT]]></title><description><![CDATA[<p dir="auto">Hello <a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/4037">@felmue</a>,<br />
thanks for the quick replay.<br />
Yes I included</p>
<pre><code>  M5.disableEPDPower();
  M5.disableEXTPower();
</code></pre>
<p dir="auto">I made it also working with M5.shutdown(), but from time to time m5 is somehow hanging until battery power is empty. Don't know if this happens during shutdown or startup. Did you observe something similar?</p>
]]></description><link>https://community.m5stack.com/post/15839</link><guid isPermaLink="true">https://community.m5stack.com/post/15839</guid><dc:creator><![CDATA[volker]]></dc:creator><pubDate>Thu, 16 Dec 2021 21:08:24 GMT</pubDate></item><item><title><![CDATA[Reply to M5paper power consumption in light sleep on Thu, 16 Dec 2021 18:26:53 GMT]]></title><description><![CDATA[<p dir="auto">Hello <a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/5877">@volker</a></p>
<p dir="auto">you can try to turn off the E-Paper driver IC using <code>M5.disableEPDPower()</code> this should save you some energy.</p>
<p dir="auto">But if you really want to save energy you'll need to turn off the system and then wake it up from the RTC.</p>
<p dir="auto">A while ago I've made some measurements regarding power saving. You'll find find them <a href="https://www.gwendesign.ch/kb/m5stack/m5paper/#light-sleep-deep-sleep-and-shutdown-current" target="_blank" rel="noopener noreferrer nofollow ugc">here</a>.</p>
<p dir="auto">Thanks<br />
Felix</p>
]]></description><link>https://community.m5stack.com/post/15837</link><guid isPermaLink="true">https://community.m5stack.com/post/15837</guid><dc:creator><![CDATA[felmue]]></dc:creator><pubDate>Thu, 16 Dec 2021 18:26:53 GMT</pubDate></item></channel></rss>