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

Best/quickest way to create mesh leaf node

In my mesh I would like to have some battery powered nodes which will only transmit data and never receive.

Is there a way to disable scanning entirely while using the nRF OpenMesh to get a quick leaf node implementation? If not I presume the best way to do this is to establish a regular BLE connection with a mesh node?

Parents
  • Hello.

    This is possible. You must assign a value handle to the device, and make sure that this device is the only one sending values on that handle. The device must then increment the handle version for each new value it sends out.

    Then you can only advertise values into the mesh, and not scan for new versions and values.

    You can also, if you want, connect to another node using normal BLE. Then you can write to its mesh service to communicate with the mesh.

Reply
  • Hello.

    This is possible. You must assign a value handle to the device, and make sure that this device is the only one sending values on that handle. The device must then increment the handle version for each new value it sends out.

    Then you can only advertise values into the mesh, and not scan for new versions and values.

    You can also, if you want, connect to another node using normal BLE. Then you can write to its mesh service to communicate with the mesh.

Children
Related