periodic_adv_conn & BLE MESH

HI

I am using the nRF54L15. Is it possible to integrate BLE Mesh functionality into the periodic_adv_conn example? This would allow the device to both receive data reported from a periodic_sync_connnode and route data with other periodic_adv_connnodes for data relaying and uploading.

Thanks!

Parents
  • Hi CRM, 
    I don't see a problem having mesh and PaWR running at the same time. We do have example doing normal BLE and mesh (ble_peripheral_lbs_coex). I think you should be able to base on that sample add change normal BLE to PaWR. 
    The question here is what you want to do with the mesh network ? Do you need both PaWR and Mesh ? 
    If you already have Mesh network, you can broadcast message into the network similar way how PaWR advertiser doing it. 
    And vice versa, if they are all in the same range of the advertiser, you can transmit data via PaWR without the need or a mesh network.  

Reply
  • Hi CRM, 
    I don't see a problem having mesh and PaWR running at the same time. We do have example doing normal BLE and mesh (ble_peripheral_lbs_coex). I think you should be able to base on that sample add change normal BLE to PaWR. 
    The question here is what you want to do with the mesh network ? Do you need both PaWR and Mesh ? 
    If you already have Mesh network, you can broadcast message into the network similar way how PaWR advertiser doing it. 
    And vice versa, if they are all in the same range of the advertiser, you can transmit data via PaWR without the need or a mesh network.  

Children
  • I have a large number of tags distributed across different areas. Each tag sends one piece of data every hour, and each piece of data is approximately 60 bytes at the application layer.

    I want to use PAwR combined with MESH nodes as routers, where PAwR receives and manages the data from the tags, and then forwards this data to a more distant PC end through MESH networking. Therefore, I need nodes that operate in this mode. For this kind of model, which is more suitable: PAwR + Bluetooth Mesh or PAwR + Zigbee?

  • Hi Crm, 

    You will have to calculate the amount of data that you plan to transmit from the PAwR advertiser(s) to PC. 
    Mesh is not designed to transmit large amount of data.  
    Can you describe the mesh network you plan to establish  ? How many PAwR advertiser nodes in the network ? What's the distance between nodes , PAwR, and the PC ?Are they all in range of each other ?
    Do you plan to do any data processing on the PAwR advertiser before sending to PC ? 
    If you don't and the plan is simply sending the same data from the PAwR advertiser to PC via mesh isn't it unnecessary ? Is it possible to just send the data straight from the nodes to PC ? 

    If your mesh network doesnt change dynamically (for example a node may move from one location to another) then Zigbee could be a better option as it can provide higher throughput. 

  • I want to build a network where the PAwR scanners are freely mobile, but the PAwR advertisers are in fixed positions. However, some advertisers might be located far from the PC (server). Therefore, I intend to enable the advertisers to form their own network.

    After collecting data from the scanners, if an advertiser is far from the PC, it can route the uploaded data through other advertisers.

    These advertisers do not need to process the data; they only need to cache the data and then report it. After installation, the network topology will not change. Each network will require approximately 5 to 10 PAwR advertisers.There will be approximately 2,000 PAwR scanners, which report data every hour or every two hours.,

    Therefore, I would like to know whether BLE Mesh or Zigbee is more suitable.

  • Hi Crm, 
    You will need to do some tests especially on the throughput. What's the expected throughput from a PAwR advertiser to PC ? 
    Using Zigbee has an advantage of higher throughput but the draw back is that you will need to have 2 stacks , BLE + Zigbee on the device. 
    Having just BLE + BLE Mesh would make it more simplified. 

    How is those 5- 10 PAwR advertiser located ? Are they all in the range of each other  or not? How far away from each other ? Could you describe more ? 
    In addition, do you send data from the PAwR to the scanner ? Or only receive data from the scanner to PAwR. I'm asking because we need to check if PAwR needed or simply advertising from the scanner to PAwR advertiser node is OK  ? 

  • You will need to do some tests especially on the throughput. What's the expected throughput from a PAwR advertiser to PC ? 
    1. From the PAWR broadcaster to the PC-side central node, when the PAWR scanner reports data every hour, there will be relatively concentrated data transmission. Normally, data transmission is sporadic or in small amounts. When the broadcaster receives data, it first caches it and then uploads it to the PC-side central node approximately every 500ms. The data payload is about 60 bytes. Each time the PC-side node receives the data, it replies with a payload of 10-15 bytes to the PAWR broadcaster.

      Using Zigbee has an advantage of higher throughput but the draw back is that you will need to have 2 stacks , BLE + Zigbee on the device. 
      Having just BLE + BLE Mesh would make it more simplified. 

      If I want to test BLE + Zigbee, how can I integrate both protocol stacks together? What example should I use?

      How is those 5- 10 PAwR advertiser located ? Are they all in the range of each other  or not? How far away from each other ? Could you describe more ? 

      The distribution of PAWR broadcasters is not fixed, with distances of about 50-100 meters between them. The signals from the farthest few might not be covered by the PC-side node, requiring intermediate routing. It's also possible that the broadcasters are surrounding the PC-side node, and their signals can cover each other while also being covered by the PC-side node.

      In addition, do you send data from the PAwR to the scanner ? Or only receive data from the scanner to PAwR. I'm asking because we need to check if PAwR needed or simply advertising from the scanner to PAwR advertiser node is OK  ? 

      I'm also very concerned about this issue. I currently need the PAWR broadcaster to reply with a notification to the PAWR scanner after receiving the reported data, confirming that the data has been received. I'm looking for implementation methods for this, but haven't found good ideas yet.

Related