<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://devzone.nordicsemi.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Mesh low power current consumption</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/49706/mesh-low-power-current-consumption</link><description>Hi, 
 As discussed in this ticket we need a way to reduce the current consumption. 
 The LPN example doesn&amp;#39;t solve this for us. 
 Our application is based on the light switch server example. After the node is provisioned, we would want to have the node</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 16 Jul 2019 08:48:14 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/49706/mesh-low-power-current-consumption" /><item><title>RE: Mesh low power current consumption</title><link>https://devzone.nordicsemi.com/thread/198644?ContentTypeID=1</link><pubDate>Tue, 16 Jul 2019 08:48:14 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:1f5620fd-9b30-432c-81a5-2162bfea65ae</guid><dc:creator>Hung Bui</dc:creator><description>&lt;p&gt;Hi Gerry,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;You would need to disable the mesh stack and put the device to sleep. When you wake up, you need to initialize the mesh stack again.&lt;/p&gt;
&lt;p&gt;There is a bug in the stack that disabling it may take longer time that it should. You can follow this case:&amp;nbsp;&lt;a href="https://devzone.nordicsemi.com/f/nordic-q-a/43301/nrf_mesh_disable-function-changed-since-sdk-for-mesh-v3-1-0/180061#180061"&gt;https://devzone.nordicsemi.com/f/nordic-q-a/43301/nrf_mesh_disable-function-changed-since-sdk-for-mesh-v3-1-0/180061#180061&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Mesh low power current consumption</title><link>https://devzone.nordicsemi.com/thread/198639?ContentTypeID=1</link><pubDate>Tue, 16 Jul 2019 08:31:47 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:93674aef-4f77-4e79-8d83-88e6003d6b93</guid><dc:creator>Gerry</dc:creator><description>&lt;p&gt;Thanks for that. The &amp;quot;Low duty cycle node&amp;quot; described in this document, is exactly what we want to achive.&lt;/p&gt;
&lt;p&gt;We tried already, but in a mainloop like this:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;    for (;;)
    {
        (void)sd_app_evt_wait();
    }&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;we always loop, meaning, the program comes out of sd_app_evt_wait() multiple times per second. I would expect, the program to stay in this function, until an external- or RTC-interrupt occurs. We already tried with nrf_mesh_disable() and&amp;nbsp;scanner_radio_stop() but this didn&amp;#39;t help.&lt;/p&gt;
&lt;p&gt;Could you give us some lines of code, to see how this&amp;nbsp;&lt;span&gt;&amp;quot;&lt;/span&gt;&lt;span&gt;Low duty cycle node&amp;quot;&lt;/span&gt; would be achived in the light switch server example?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Mesh low power current consumption</title><link>https://devzone.nordicsemi.com/thread/198530?ContentTypeID=1</link><pubDate>Mon, 15 Jul 2019 14:55:07 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c7c6ae07-851c-4a6a-8c23-a706288d485a</guid><dc:creator>Hung Bui</dc:creator><description>&lt;p&gt;The poll timeout is configured in the LPN example with&amp;nbsp;POLL_TIMEOUT_MS. It&amp;#39;s set to 10s by default, you can try to increase this.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;There are actually other options to do low power with mesh. One of them is just to simply put the device to sleep mode and wake up when need to send something. You can sleep for up to 96 hours.&amp;nbsp;&lt;br /&gt;I attached here a slides we used in a conference in Bluetooth World 2018. Please have a look. This slides&amp;nbsp;are not for redistribution.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/support-attachments/beef5d1b77644c448dabff31668f3a47-1ae8e1ce32ec4bb5bd07fcd9b1e53224/LowpowerMesh.pdf"&gt;devzone.nordicsemi.com/.../LowpowerMesh.pdf&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Mesh low power current consumption</title><link>https://devzone.nordicsemi.com/thread/198462?ContentTypeID=1</link><pubDate>Mon, 15 Jul 2019 12:35:24 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8c416dd6-7d07-4cd8-b623-fd162c66d1c5</guid><dc:creator>Gerry</dc:creator><description>&lt;p&gt;Hi Hung,&lt;/p&gt;
&lt;p&gt;Our low power node needs to send data only. (for example once every 5 minutes)&lt;/p&gt;
&lt;p&gt;The average current of the LPN is 40uA now (without changing the example). Where can we change the poll timeout and what functionality will it affect?&lt;/p&gt;
&lt;p&gt;Since there seems to be no difference in average power consumption whether a friendnode is connected or not, we would be interested in having our light-switch-server based&amp;nbsp;application to consume as little current as possible (without having a frindnode). I can not see, where this is made in the LPN-example. Our&amp;nbsp;&lt;span&gt;light-switch-server based&amp;nbsp;application consumes 10mA at the moment.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Regards&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Gerry&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Mesh low power current consumption</title><link>https://devzone.nordicsemi.com/thread/198434?ContentTypeID=1</link><pubDate>Mon, 15 Jul 2019 11:50:11 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:06280928-38a6-448c-b158-ae0ffaadc3fd</guid><dc:creator>Hung Bui</dc:creator><description>&lt;p&gt;Hi Gerry,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;What is your current average current consumption ? Note that depends on the Poll timeout, how often do you wake up and send/receive message, you may have different power consumption levels.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Note that the sleep current of a LPN can get down to 3uA in our test here.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Does your node need to receive data from other nodes ? or it only needs to send data ?&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>