how to send the character (150 bytes) from client to server for latest version 3.1
i am finding difficulty
please help me out
how to send the character (150 bytes) from client to server for latest version 3.1
i am finding difficulty
please help me out
I would suggest you got through the Light switch example. Have a look at the generic_onoff_client_set() to see how to send a reliable message. It uses the access_model_reliable_publish() API. You just need to send a package that are bigger than 11 bytes, it will split into smaller packages and be sent as segmented messages.
Hi,
The maximum possible segmented payload is 380 bytes. It is set in this define NRF_MESH_SEG_PAYLOAD_SIZE_MAX. I'm not sure what the required time, the easiest way would be to just test it. It will probably take over 1 second between each transmission. Note that the mesh aren't really optimized for sending large amount of data.