This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

How to turn on/off Bluetooth mesh network nodes?

Hello

I want to create Bluetooth mesh network and I need that each of network nodes turn on/off selected time (including provisioner).
Can I use only nrf_mesh_enable/nrf_mesh_disable functions, when device has already provisioned and connected a network?

Thanks.

Parents Reply Children
  • Nakui,

    If you are using MeshSDK2.0, I guess you don't need to use the nrf_mesh_process(). I used this f-unction is

    because I was working on the meshSDK1.01 and I combined the BLE, provisioner, and provisionee into one that

    once a server is provisioned, I need to disable the mesh otherwise the other server can not be provisioned. After

    all servers are provisioned I will re-enable the mesh using nrf_mesh_enable() and while(!nrf_mesh_process());

    to all the server provisioned.

Related