I am using nRF52840 Dev kit (PCA10056), with nRF Mesh SDK 4.0 and nRF SDK 16.0.
I have such FOUR kits. I have been able to modify vendor model for a sensor to transfer Temperature and Humidity using the "simple on off" example provided.
Now I want to use the "RSSI Monitor" example. I have searched online for such examples, if any one is using it, to see how the functions are used. Found none.
I am not sure how many times should I call this function in server to collect data:
uint32_t rssi_server_add_rssi_data(uint16_t test_address, int8_t rssi);
How to collect the RSSI data from this server using client? I am using nRF Mesh app in Android (using as provisioner here) to send (in RSSI_client) vendor model request 0xC6, which returns me 0xC55900.
I want to get RSSI values from other 2 nodes to RSSI_server and then receive it to RSSI_client and print on debug side.
Can anybody help?