low power node without friendship

Hi Support team,

nrf5 sdk for mesh 5.0,  nrf5 sdk 17.0.2, s132, SES;

We are trying to understand the LPN feature based on the LPN example because in our scenario there are a few node in the mesh network which will work under low power mode.   These low power nodes (such as switches) don't need to receive messages, so we really want to implement the solution without the friendship, without the friend nodes.

The low power node just works like this: the gpio interrupt wakes up the node and sends a message, and then go to sleep.  We have considered the iv update: in the life of the low power node, the sequence number cann't be wrapped since the number of the sent messages is not large enough. 

Is it possible to implement the solution like that mentioned above? And where should we change from the lpn example? 

If it cannot be implemented based on the LPN example, is there a nother approach making the node work under the low power mode (like the above description)? 

Thanks in advance!

Parents
  • Hi

    I'm afraid the LPN node is only possible with friend nodes, as an LPN uses the friend node to be able to participate in the mesh network. You can have multiple LPNs befriending one Friend node though, if that helps. But how this works is that the LPN node wakes up periodically and polls the friend node for any new messages. The friend node then delivers any updates to the LPN. Here is more information on the LPNs in a Mesh network.

    Best regards,

    Simon

Reply
  • Hi

    I'm afraid the LPN node is only possible with friend nodes, as an LPN uses the friend node to be able to participate in the mesh network. You can have multiple LPNs befriending one Friend node though, if that helps. But how this works is that the LPN node wakes up periodically and polls the friend node for any new messages. The friend node then delivers any updates to the LPN. Here is more information on the LPNs in a Mesh network.

    Best regards,

    Simon

Children
  • Hi

    In fact, in the real scenario, it is quite possible that all the friend nodes have been out of the mesh network for a little long time (greater than the poll timeout), however, according to the introduction about the Low Power node feature on this page , the LPN node will go to the high power option mode once the friendship terminates. For a battery based device, it absolutely cannot put up with this kind of situation.

    We just want to implement a private local mesh network, not interact with other standard mesh network or nodes. How to make a battery based device take part in the mesh network? Is there a feasible approach for this kind of implementation? 

Related