In the mesh network how can be make the node in low power mode.i was not able top find a proper example for this.
In the mesh network how can be make the node in low power mode.i was not able top find a proper example for this.
Hi,
I'm afraid there's no direct example for this, but for the Mesh, because the devices must continuously keep their radio in listening mode, this causes higher power consumption. The friendship feature in Bluetooth Mesh (also mentioned there) allows low-power devices to establish a relationship with a regular mesh device. Please take a look at this ticket.
Things you should know about Bluetooth mesh
Regards,
Priyanka
Hi Priyanka,
how many low power nodes can be connected to the friend node. If it doesnt have any direct example what is the possible way to implement that feature in mesh network. Could you please help me out on this
Hi,
As mentioned in this ticket, the number of Low Power Nodes that's connected to a friend node is restricted mainly by the amount of traffic in the network. The Friend node needs to hold messages for the nodes it is a parent for, which limits the number of LPNs it can handle.
cyriactoms said:what is the possible way to implement that feature in mesh network.
Please refer the tickets that I had attached in the previous comment. You can also refer the Technical Documentation regarding the Low Power Nodes for detailed information.
-Priyanka
Is it possible to enable low power node in nrf52840dk if so how to enable and what are the steps that need to be followed i have refered the bluetooth light switch sample but i am not claer about the explanation inside it. if possible kindly give me the steps to enable the lpn
Hi,
Yes, it is possible to enable LPN in the nRF52840 DK. In the Bluetooth Mesh Light Switch sample, you can see that it provides a configuration overlay overlay-lpn.conf which is optimized for the nRF52840 DK. This configuration overlay enables the LPN feature and alters certain configuration options to further lower the power consumption.
when you build the sample, just set the EXTRA_CONF_FILE to overlay-lpn.conf. You can see it explained here: https://docs.nordicsemi.com/bundle/ncs-latest/page/nrf/samples/bluetooth/mesh/light_switch/README.html#configuration:~:text=To%20make%20the,you%20are%20building%3A
After building and flashing the firmware, you can enable or disable the Low Power operation using the mesh lpn set <Val(off, on)> command. Once enabled, the device will turn off its radio and start polling for friend nodes.
You can perform a poll to the friend node to receive any pending messages using the mesh lpn poll command. This is only available when LPN is enabled.