Relay Configuration and implementation in BLE mesh network

I am trying to implement the following: I have a mesh node built using the Sensor Server  example for publishing temperature data. I want one relay node to transmit the temperature data to another node, which is not within the radio range of the first node. This second node is built using the Sensor Client model. My question is: how do I implement the relay feature, which code should I use for that, and what changes need to be made?

Parents Reply Children
  • Hi, 
    You need to connect to a mesh node before you can control that. 
    Have you made sure CONFIG_BT_MESH_RELAY=y in the prj.conf  ?

  • I already connected to a mesh node and CONFIG_BT_MESH_RELAY=y is in the code 

  • Hi Jeena, 
    Please make sure it's still connected. When it's connected you should see the button say "Disconnect" not "Connect". Also you would need to load the role (read the configuration server) by pulling the screen downward (touch and pull down) 
    The screen should look like this: 

  • Relay enabled successfully.
    I have one Sensor Server node that publishes data to a group address, and one Relay node flashed with Sensor Client code. The Relay node is enabled as a relay in the application and is configured to publish and subscribe to the same group address. The last node is a Client node, also flashed with Sensor Client code and subscribed to the same group address used by both the Server and Relay nodes. However, the messages are not received by the Client node. The Relay node is placed between the nodes, but the messages are still not reaching the Client.
    what changes need to be done for proper working.

  • Hi Jeena, I'll take over this case for a bit as Hung is OOO currently.

    First of all, that sounds like it 'should' be working, though the thing with Mesh or any "flooding network" is that it might require some tweaking to get working perfectly. If for instance the Sensor Client is just within reach of the relaying node, and not the other, and the SC node is not scanning with the radio that exact moment it needs to, then it will miss this message. With Mesh you could counter this by eg. increasing the publish retransmission count, or get more nodes within the range of the one you need to reach, or send a message that you want the receiving node to acknowledge, so that you know that it has been recieved. With a small test with 3 nodes, it looks like this is so simple that it should immediately work, though the simplicity of the set-up could ironically be the issue. You for instance would typically like a Mesh node to be within the range of a few others, not just one, to counteract this.

    Though with that out of the way, I agree that what you have tried here should work the majority of the time. Does it always fail? Could you try increasing publish retransmission count? Make sure the TTL is high enough, the way TTL works can be a bit confusing (0 and 1 means the same etc.).

    Regards,

    Elfving

Related