This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

nRF24L01+ mesh network

I am trying to implement a mesh protocol using the nRF24L01+ transceiver.

After reading the product specification, I have concluded that the Enhanced ShockBurst cannot be used to implement a mesh, as the node has to have a fixed role viz. PTX or a PRX. Am I right?

Will I be able to implement a mesh network by disabling the Enchanced ShockBurst and using it in the ShockBurst compatibiltiy mode?

Parents Reply
  • I followed the guide of github.com/NordicSemiconducto... to try the mesh with NRF51822.But there seem no discribtion about which softdevice we should use.I loaded the s110_nrf51822_7.3.0_softdevice.hex and rbc_mesh_led_example.hex to the nrf51822. I add code to let the led blink as 1s on 1s off.

    while (true)
    {
        sd_app_evt_wait();
    			led_config(1, 0);
    			led_config(2, 0);
    			nrf_delay_ms(1000);
    			led_config(1, 1);
    			led_config(2, 1);
    			nrf_delay_ms(1000);
    } 
    

    And the led will blink but I can't find the Mesh GATT service using the "lightblue" APPs.

Children
No Data
Related